/* --- 1. Variables & Reset --- */
:root {
    --bg-parchment:     #F5F1E6;
    --text-charcoal:    #363636;
    --primary-green:    #2C4C3B;
    --action-clay:      #C06040;
    --accent-olive:     #7C8C58;
    --border-stone:     #D1CDC0;
    --pure-white:       #FFFFFF;
}

* { box-sizing: border-box; }

body {
    background-color: var(--bg-parchment);
    color: var(--text-charcoal);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- 2. Navigation Bar --- */
nav {
    background-color: var(--primary-green);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    color: var(--bg-parchment);
    font-size: 1.5rem;
    font-weight: 600;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: var(--bg-parchment);
    text-decoration: none;
    font-weight: 400;
}

nav a:hover {
    color: var(--accent-olive);
}

/* The "Login" button in the Nav */
.nav-login-btn {
    background-color: var(--action-clay);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-login-btn:hover {
    background-color: #a04d30; /* Darker clay */
    text-decoration: none;
}

/* --- 3. Hero Section --- */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--primary-green);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--action-clay);
    color: var(--bg-parchment);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #a04d30;
}

/* --- 4. Services Grid --- */
.services-section {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--pure-white);
    border: 1px solid var(--border-stone);
    padding: 2rem;
    border-radius: 8px;
    border-top: 5px solid var(--primary-green);
}

.service-card h3 {
    color: var(--action-clay);
    margin-top: 0;
}

/* --- 5. Dedicated Page Containers (Booking/Registration) --- */
.widget-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--pure-white);
    border: 1px solid var(--border-stone);
    border-radius: 8px;
    min-height: 500px; /* Ensures space while widget loads */
}

/* --- 6. Footer --- */
footer {
    background-color: var(--primary-green);
    color: var(--bg-parchment);
    text-align: center;
    padding: 2rem;
    margin-top: auto; /* Pushes footer to bottom */
    font-size: 0.9rem;
}

footer .legal {
    opacity: 0.8;
    margin-top: 10px;
}
/* --- Logo Sizing --- */

/* Nav Bar Icon */
.nav-logo-img {
    height: 40px; /* Adjusts height, width scales automatically */
    width: auto;
    vertical-align: middle;
}

/* Hero Section Full Logo */
.hero-logo-img {
    max-width: 300px; /* Prevents it from being too wide on mobile */
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem; /* Space between logo and the headline */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Icon */
.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.8; /* Makes it slightly subtle as requested */
}