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

:root {
    /* Colorful Theme Palette */
    --primary-color: #0d9488; /* Vibrant Teal */
    --secondary-color: #f97316; /* Warm Orange */
    --accent-color: #7e22ce; /* Deep Purple */
    --bg-light: #fef3c7; /* Soft Yellow/Cream */
    --text-dark: #1f2937; /* Dark Gray */
    --text-light: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --gradient-accent: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ea580c 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-light);
    transition: all 0.3s ease;
}
.btn-accent:hover {
    background-color: #6b21a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(126, 34, 206, 0.3);
}

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

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

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

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-family: var(--font-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-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(--primary-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;
}

/* Overlay for Hero */
.hero-overlay {
    background-color: rgba(31, 41, 55, 0.7);
}

/* Make sure mobile menu handles z-index well */
#mobile-menu {
    z-index: 50;
}