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

:root {
    /* Modern, light, colorful theme for Variant 3 */
    --primary-color: #0284c7; /* Sky Blue 600 */
    --secondary-color: #e0f2fe; /* Light sky blue background */
    --accent-color: #f59e0b; /* Amber 500 */
    --dark-color: #1e293b; /* Slate 800 - dark contrast */
    --bg-light: #ffffff;
    --text-main: #334155; /* Slate 700 */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

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

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

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

/* Buttons */
.btn-main {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
}

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

/* Mobile Menu */
#mobile-menu {
    display: none;
    background-color: var(--bg-light);
    border-top: 1px solid #e2e8f0;
}
#mobile-menu.active {
    display: block;
}

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

.custom-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.custom-list li::before {
    content: counter(custom-counter);
    counter-increment: custom-counter;
    position: absolute;
    left: 0;
    top: -4px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 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; /* Decline button color */
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: var(--font-text);
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}