/* 
  Theme: Colorful
  CSS Variables Setup
*/
@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 {
    /* 4 Color Palette */
    --primary-color: #2563EB; /* Vibrant Blue */
    --secondary-color: #F59E0B; /* Amber / Orange */
    --accent-color: #10B981; /* Emerald Green */
    --dark-color: #1E293B; /* Deep Slate */
    --light-color: #F8FAFC; /* Off-white */
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

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 Utilities */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Overlays */
.hero-overlay {
    background: linear-gradient(to right, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.4));
}

/* Specific styling for reserve.html numbered lists */
.custom-numbered-list {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}

.custom-numbered-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Cookie Banner (JS Version) */
.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: 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 */
}

/* Mobile Menu Transitions */
#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.active {
    max-height: 300px;
    opacity: 1;
}