:root {
    /* Branding: Traditional Yellow & Red */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-mono: 'Roboto Mono', monospace;

    --bg: #fffbeb;
    /* Warm Light Yellow */
    --surface: #ffffff;
    /* White */
    --text-main: #5e0d0d;
    /* Deep Red/Maroon */
    --text-muted: #a32a2a;
    /* Lighter Red */
    --border: #ffcc00;
    /* Bright Gold/Yellow */
    --primary: #8B0000;
    /* Dark Red */
    --primary-rgb: 139, 0, 0;
    --nav-height: 70px;
}

body {
    background-color: var(--bg);
    background-image: none;
    min-height: 100vh;
    font-family: var(--font-body);
    font-weight: 500;
    /* Bold */
    font-size: 1.25rem;
    /* Bigger */
    color: var(--text-main);
    margin: 0;
    padding-top: 0;
    /* Space for fixed nav removed as nav is relative */
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}


/* --- Navigation --- */
nav {
    position: relative;
    /* Not sticky */
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Cinzel', serif;
    /* Brand Font */
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--bg);
}

/* --- Mobile Navigation --- */
.burger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 1002;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .burger-menu {
        display: block;
        padding: 10px;
        margin-right: -10px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
        color: var(--text-muted);
    }

    .nav-links a:hover {
        color: var(--primary);
    }

    .dropdown {
        width: 100%;
        display: block;
    }

    .dropdown-content {
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    #auth-links {
        margin-left: 0 !important;
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    #user-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    #user-greeting {
        border-right: none !important;
        margin-bottom: 10px;
        display: block;
    }

    nav {
        padding: 0;
    }
}

/* Mobile breakpoint - Phone Perfect */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    body {
        font-size: 16px;
    }
}

/* Global Button Style */
button,
.btn-book,
.btn-solid,
.btn-primary {
    display: inline-block;
    background-color: #8B0000 !important;
    /* Dark Red */
    color: #ffffff !important;
    border: 1px solid #8B0000 !important;
    padding: 12px 35px !important;
    font-family: var(--font-body) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-transform: capitalize !important;
    /* Changed from uppercase to capitalize */
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    letter-spacing: 0.5px !important;
    line-height: normal;
}

button:hover,
.btn-book:hover,
.btn-solid:hover,
.btn-primary:hover {
    background-color: #800000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
}