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

:root {
    /* Color Palette - Dark Theme */
    --color-bg-base: #0f172a;      /* Dark Slate */
    --color-bg-surface: #1e293b;   /* Slightly lighter slate */
    --color-accent-primary: #3b82f6; /* Blue */
    --color-accent-secondary: #0ea5e9; /* Light Blue */
    --color-text-main: #f8fafc;    /* Off-white */
    --color-text-muted: #94a3b8;   /* Slate gray */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 100%);
    --gradient-dark: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 1));
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.surface-card {
    background-color: var(--color-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Form Styles */
input, select, textarea {
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-main);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

/* Custom Numbered List for Reserve Page */
.custom-list {
    list-style: none;
    padding: 0;
}
.custom-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}
.custom-list li::before {
    content: counter(list-counter);
    counter-increment: list-counter;
    position: absolute;
    left: 0;
    top: -2px;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--color-accent-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}
.list-wrapper {
    counter-reset: list-counter;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.cookie-btn-alt {
    background: transparent;
    border: 1px solid var(--color-text-muted);
    background-color: transparent;
}
.cookie-btn-alt:hover {
    background-color: rgba(255,255,255,0.1);
    box-shadow: none;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 500px;
    opacity: 1;
}