/* style.css */

/* --- Dopamine Palette & Variables --- */
:root {
    --pop-pink: #FF0080;
    --electric-blue: #00B8D4;
    --sun-yellow: #FFD600;
    --lime-green: #00E676;
    --cream-bg: #FFF9F0;
    --text-dark: #2D2D2D;
    --border-radius: 25px;
    --border-thick: 4px solid var(--text-dark);
    --shadow-hard: 6px 6px 0px rgba(0,0,0,0.2);
    --font-heading: 'Verdana', sans-serif;
    --font-body: 'Arial', sans-serif;
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--cream-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Playful Dot Pattern Background */
    background-image: radial-gradient(var(--electric-blue) 15%, transparent 16%),
                      radial-gradient(var(--pop-pink) 15%, transparent 16%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: var(--border-thick);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3rem; 
    color: var(--pop-pink); 
    text-shadow: 3px 3px 0 var(--sun-yellow);
}

h2 { font-size: 2rem; color: var(--electric-blue); }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    background-color: #fff;
    margin: 40px auto;
    padding: 40px;
    border: var(--border-thick);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hard);
    width: 90%;
    max-width: 1200px;
}

/* --- Header & Nav --- */
header {
    background-color: var(--sun-yellow);
    border-bottom: var(--border-thick);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pop-pink);
    text-shadow: 2px 2px 0 #fff;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: bold;
    background-color: #fff;
    padding: 10px 20px;
    border: 2px solid var(--text-dark);
    border-radius: 50px;
    transition: 0.2s;
    box-shadow: 3px 3px 0 var(--text-dark);
}

.nav-links a:hover, .nav-links a.active {
    background-color: var(--electric-blue);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--text-dark);
}

.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 40px 0;
}

.hero-img {
    transform: rotate(-2deg);
    border-color: var(--pop-pink);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background-color: var(--pop-pink);
    color: #fff;
    padding: 15px 40px;
    border: var(--border-thick);
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-hard);
    transition: 0.2s;
}

.btn:hover {
    background-color: var(--lime-green);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* --- Grid System --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border: var(--border-thick);
    border-radius: var(--border-radius);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 var(--electric-blue);
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    border: 3px solid var(--text-dark);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--cream-bg);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--pop-pink);
    background-color: #fff;
}

/* --- Footer --- */
footer {
    margin-top: auto;
    background-color: var(--text-dark);
    color: #fff;
    padding: 40px 0;
    border-top: 10px solid var(--lime-green);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col h4 {
    color: var(--sun-yellow);
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--electric-blue);
}

.footer-col a:hover {
    color: var(--pop-pink);
    text-decoration: underline;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--sun-yellow);
        padding: 20px;
        border-bottom: var(--border-thick);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    h1 { font-size: 2rem; }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-row {
        justify-content: center;
    }
}