@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Visual Variables: Modern Light Theme */
    --primary-color: #0d9488;   /* Teal 600 */
    --secondary-color: #10b981; /* Emerald 500 */
    --accent-color: #f97316;    /* Orange 500 */
    --dark-color: #1f2937;      /* Gray 800 */
    --light-color: #f9fafb;     /* Gray 50 */
    
    /* Font Variables */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

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

/* Custom list styling for reserve.html (Numbered colored dots) */
ol.colored-dots {
    list-style: none;
    padding-left: 0;
    counter-reset: custom-counter;
}

ol.colored-dots li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

ol.colored-dots li::before {
    content: counter(custom-counter);
    counter-increment: custom-counter;
    position: absolute;
    left: 0;
    top: 0.15rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Cookie Banner (JS Version) as per instruction */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    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: 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 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: 400px;
    opacity: 1;
}

.bg-hero-overlay {
    background: linear-gradient(to right, rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.4));
}