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

:root {
    /* Modern, contrasting palette of 4 colors */
    --primary-dark: #1E293B;   /* Slate 800 - for text and dark backgrounds */
    --primary-light: #F8FAFC;  /* Slate 50 - for main background */
    --accent-color: #0EA5E9;   /* Sky 500 - vibrant accent */
    --secondary-accent: #10B981; /* Emerald 500 - secondary accent/success */
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-text);
    background-color: var(--primary-light);
    color: var(--primary-dark);
    margin: 0;
    padding: 0;
}

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

/* Custom Tailwind Utilities for Variables */
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-accent { background-color: var(--accent-color); }
.bg-secondary-accent { background-color: var(--secondary-accent); }

.text-primary-dark { color: var(--primary-dark); }
.text-primary-light { color: var(--primary-light); }
.text-accent { color: var(--accent-color); }
.text-secondary-accent { color: var(--secondary-accent); }

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

/* Hover effects */
.hover-bg-accent-dark:hover { background-color: #0284C7; /* Sky 600 */ }
.hover-text-accent:hover { color: var(--accent-color); }

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    color: #ffffff;
    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: #ffffff;
    border-radius: 50px;
    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; /* Gray */
}

/* Specific styling for numbered lists in reserve.html */
.numbered-list-custom {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}
.numbered-list-custom li {
    counter-increment: custom-counter;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2.5rem;
}
.numbered-list-custom li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: var(--font-text);
}

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