:root {
  /* Your Exact Brand Colors */
  --color-espresso: #4A3429;
  --color-tea: #C5C19B;
  --color-fern: #575D43;
  --color-moss: #767964;
  --color-taupe: #DBD2C3;
  --color-cream: #F2EFE6;
  --color-cinnamon: #AE8569;

  /* Typography System */
  --font-heading: 'Gotu', sans-serif;
  --font-subtitle: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: var(--color-cream);
    color: var(--color-espresso);
    line-height: 1.6;
}

/* --- DESKTOP NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--color-cream);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-espresso);
}

.nav-links a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--color-espresso);
    font-family: var(--font-subtitle);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-login {
    text-decoration: none;
    font-family: var(--font-subtitle);
    font-weight: 700;
    color: var(--color-espresso);
    border: 2px solid var(--color-tea);
    padding: 10px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: var(--color-tea);
}

/* --- DESKTOP HERO SECTION --- */
.hero-section {
    padding: 120px 20px;
    text-align: center;
    background-color: var(--color-taupe);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-espresso);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--font-subtitle);
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-cinnamon);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-espresso);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-espresso);
    border: 2px solid var(--color-moss);
}

.btn-secondary:hover {
    background-color: var(--color-moss);
    color: #fff;
}


/* =========================================
   MOBILE RESPONSIVE RULES (MEDIA QUERIES)
   ========================================= */

@media (max-width: 768px) {

    /* Center and stack the navigation bar */
    .navbar {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        margin: 0;
    }

    /* Shrink the massive text and padding so it fits screens */
    .hero-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2.2rem; /* Shrunk from 3.5rem */
    }

    /* Stack the buttons on top of each other */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Make buttons take up the full width of the phone screen for easy tapping */
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}