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

:root {
    /* Colorful Theme Palette */
    --primary-color: #10b981; /* Emerald Green */
    --secondary-color: #f59e0b; /* Amber/Orange */
    --dark-color: #1f2937; /* Gray 800 */
    --light-color: #f3f4f6; /* Gray 100 */
    --accent-color: #3b82f6; /* Blue for special accents */
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--dark-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Custom Utilities */
.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-secondary { background-color: var(--secondary-color); }

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Numbered List for Reserve Page */
.numbered-list-custom {
    list-style: none;
    padding: 0;
}

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

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

.list-wrapper {
    counter-reset: item;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

#mobile-menu.active {
    display: block;
}

/* 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(--secondary-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;
}