:root {
    --cream: #F5EFE6;
    --dark: #1a1a1a;
    --gold: #C9A85E;
    --gold-dark: #B39450;
    --text-light: #E8E8E8;
    --text-dark: #2a2a2a;
    --border: rgba(201, 168, 94, 0.2);
    --shadow: rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%231a1a1a" width="1920" height="1080"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 168, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 168, 94, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.85) 50%,
        rgba(26, 26, 26, 0.92) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    padding: 0 20px;
    max-width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: clamp(3px, 0.5vw, 6px);
    line-height: 1.6;
    margin-bottom: 15px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(245, 239, 230, 0.8);
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out 0.8s both;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
} */

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: fit-content;

    z-index: 3;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;

    animation: fadeInUp 1.2s ease-out 0.8s both;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}


.scroll-indicator:hover {
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.booking-header p {
    color: rgba(42, 42, 42, 0.6);
    font-size: 16px;
    letter-spacing: 1px;
}

/* Booking Form */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 20px 60px var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 94, 0.1);
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.time-slot {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.time-slot:hover:not(.disabled):not(.selected) {
    border-color: var(--gold);
    background: rgba(201, 168, 94, 0.05);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.time-slot .capacity {
    display: block;
    font-size: 11px;
    margin-top: 5px;
    opacity: 0.7;
}

.loading-slots {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
    color: rgba(42, 42, 42, 0.5);
    font-style: italic;
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-submit {
    padding: 18px 60px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 94, 0.3);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 2px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #2e7d32;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #c62828;
    display: block;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

.admin-link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: var(--gold-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .booking-header h2 {
        font-size: 36px;
    }

    .scroll-indicator {
        bottom: 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title br {
        display: none;
    }

    .btn-submit {
        padding: 15px 40px;
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 40px;
    }
}

@media (max-width: 360px) {
    .hero-content {
        padding: 0 15px;
    }
}
