/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #FF6B6B;
    /* Playful Red/Pink */
    --secondary-color: #4ECDC4;
    /* Playful Teal */
    --accent-color: #FFE66D;
    /* Playful Yellow */
    --text-color: #2c3e50;
    --bg-color: #ffffff;
    --nav-bg: #FFE66D;
    /* Yellow Header */
    --footer-bg: #4ECDC4;
    /* Teal Footer */
    --border-color: #d2d2d7;
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1024px;
    --spacing-unit: 1.5rem;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    height: 120px;
    /* Significantly increased height */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    /* Significantly increased logo size */
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.2s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.4);
    color: #000;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Main Content */
main {
    flex: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--spacing-unit);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.4rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(255, 107, 107, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    padding: 3rem var(--spacing-unit);
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-weight: 500;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        /* Matches navbar height + padding */
        left: 0;
        width: 100%;
        background-color: var(--nav-bg);
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }
}