:root {
    /* Brand Colors */
    --color-primary-red: #af2640;
    --color-primary-gold: #c47d2c;
    --color-primary-yellow: #edda35;
    --color-primary-lime: #abc550;
    --color-primary-blue: #7dace3;
    --color-primary-purple: #65559c;

    /* Green Palette */
    --color-green-1: #2e3d27;
    --color-green-2: #36492e;
    --color-green-3: #415836;
    --color-green-4: #47673f;
    --color-green-5: #4b7246;
    --color-green-6: #507d4c;
    --color-green-7: #588850;
    --color-green-8: #5f9253;

    /* Text & Backgrounds */
    --color-bg-body: #f9f9f9;
    --color-text-main: #333333;
    --color-text-light: #777777;
    --color-white: #ffffff;

    /* Fonts */
    --font-heading: 'Monotype Corsiva', 'Corsiva Hebrew', 'Zapf Calligraphy', serif;
    --font-body: 'Lora', serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-body);
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-green-2);
}

a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: var(--color-green-4);
}

a:hover {
    color: var(--color-primary-gold);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-green-2);
}

.nav-links a:hover {
    color: var(--color-primary-gold);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-green-2);
}

/* Footer */
footer {
    background: var(--color-green-1);
    color: var(--color-white);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
}

footer a {
    color: var(--color-primary-lime);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.socials a {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-green-5);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--color-green-4);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Fix Grid Headers on Mobile */
    .dining-intro,
    .contact-info,
    .rooms-grid,
    .intro-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* Added caption styles */
.caption-text {
    color: white;
    margin-top: 10px;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Headers */
.hero-header {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 20px !important;
    /* Override default pad */
    color: white !important;
}

.hero-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.hero-header * {
    position: relative;
    z-index: 2;
    color: white !important;
}

.hero-header h1 {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}