:root {
    --primary-dark: #0f172a;
    --primary-light: #1e293b;
    --accent: #0284c7;
    --accent-hover: #0369a1;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-color: #f8fafc;
    --white: #ffffff;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent);
}

.btn-book {
    background-color: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.btn-book:hover {
    background-color: var(--accent-hover);
}

/* Main Content Wrapper */
.main-content {
    flex: 1; /* Pushes the footer to the bottom */
    padding: 40px 0;
}

/* Footer */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #38bdf8;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #38bdf8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
    color: #94a3b8;
    font-size: 0.85rem;
}

/* 1. Make the hamburger visible: Use a dark color because the header is white */
.nav-toggle {
    display: none; 
    background: none;
    border: none;
    color: var(--primary-dark); /* Changed from white to dark for visibility */
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white); 
        border-top: 1px solid #e2e8f0;
        border-bottom: 2px solid var(--accent);
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    }

    .main-nav.active { display: block; }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Target standard text links ONLY */
    .main-nav ul li a:not(.btn-book) {
        color: var(--text-main) !important; 
        font-size: 1.1rem;
        font-weight: 500;
    }

    /* Ensure the Book Now button keeps its white text */
    .main-nav ul li a.btn-book {
        color: var(--white) !important;
        background-color: var(--accent);
        padding: 10px 24px;
        border-radius: 6px;
    }
}