/*
Theme Name: GottaPee
Theme URI: https://gottapee.example.com
Author: Gemma Browne
Author URI: https://gottapee.example.com
Description: A lightweight WordPress theme for GottaPee with clean, accessible colors.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gottapee
*/

:root {
    --primary-color: #65d2ae;
    --secondary-color: #eeeeee;
    --accent-color: #393e46;
}

/* Custom font for headings */
@font-face {
    font-family: 'TheMysteriousAffair';
    src: url('fonts/TheMysteriousAffair.woff2') format('woff2'),
         url('fonts/TheMysteriousAffair.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
}

footer {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
}

main {
    padding: 2rem;
}

/* Headings using the custom font */
h1 {
    font-family: 'TheMysteriousAffair', sans-serif;
    color: var(--accent-color);
}

h2, h3, h4, h5, h6 {
    color: var(--accent-color);
}

button, input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    opacity: 0.8;
}
