: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; /* We will use font-weight: 700 for Bold */
  --font-body: 'Montserrat', sans-serif; /* We will use font-weight: 400 for Regular */
  --font-accent: 'Cormorant Garamond', serif; /* We will use font-style: italic */
}

* {
    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;
}

/* Navigation Bar Styling */
.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);
}

/* Hero Section Styling */
.hero-section {
    padding: 120px 20px;
    text-align: center;
    background-color: var(--color-taupe); /* Gives a soft contrast against the cream navbar */
}

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

.hero-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-fern);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

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

.btn-primary {
    background-color: var(--color-cinnamon);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--font-subtitle);
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-espresso);
    border: 2px solid var(--color-moss);
    padding: 13px 35px;
    text-decoration: none;
    font-family: var(--font-subtitle);
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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