/* ==========================================================================
   CSS Variables & Global Styles
   ========================================================================== */
:root {
    /* Color Palette - Fresh & Informational (Light Theme) */
    --primary-color: #047857; /* Emerald Green */
    --secondary-color: #1E3A8A; /* Deep Navy */
    --bg-color: #F9FAFB; /* Light Gray Background */
    --text-color: #111827; /* Dark Gray Text */
    --accent-color: #F59E0B; /* Amber/Orange Accent */
    --white: #ffffff;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-text);
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

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

.text-accent {
    color: var(--accent-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
}

/* ==========================================================================
   Components
   ========================================================================== */

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.95);
    z-index: 50;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 1rem 0;
    font-family: var(--font-heading);
    text-decoration: none;
}

/* Hero Sections */
.hero-overlay {
    background: linear-gradient(to right, rgba(249, 250, 251, 0.9), rgba(249, 250, 251, 0.6));
}

/* Numbered List for Reserve Page */
.numbered-list-reserve {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}

.numbered-list-reserve li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.numbered-list-reserve li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

/* Cards Hover */
.info-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: var(--white);
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* ==========================================================================
   Cookie Banner (JS Version)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-text);
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563;
}