@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    /* Modern Dark Theme Palette */
    --bg-color: #111827; /* Dark Gray / Almost Black */
    --surface-color: #1F2937; /* Lighter Dark Gray */
    --accent-color: #10B981; /* Emerald Green (Primary) */
    --accent-alt-color: #F59E0B; /* Amber (Secondary) */
    --text-main: #F3F4F6; /* Off-White for text */
    --text-muted: #9CA3AF; /* Muted Gray */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

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

p {
    line-height: 1.6;
}

main {
    flex: 1;
}

/* Custom Utilities mapping to Tailwind concepts */
.bg-theme-main { background-color: var(--bg-color); }
.bg-theme-surface { background-color: var(--surface-color); }
.text-theme-accent { color: var(--accent-color); }
.bg-theme-accent { background-color: var(--accent-color); }
.bg-theme-accent-hover:hover { background-color: #059669; /* Darker Emerald */ }
.text-theme-alt { color: var(--accent-alt-color); }

/* Numbered List Styles for Reserve Page */
.custom-numbered-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.custom-numbered-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.custom-numbered-list .number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--text-main);
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
    border-top: 2px solid var(--accent-color);
}

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

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

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

/* Mobile Menu Toggle */
#mobile-menu {
    display: none;
}
#mobile-menu.active {
    display: block;
}