/* reservation.css */

/* --- Header --- */
.header-reservation {
    background-image: url('https://images.unsplash.com/photo-1544145945-f904253d0c71?q=80&w=2070&auto=format&fit=crop');
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
}

.page-header {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top left, #77ffc0 0%, transparent 75%), radial-gradient(circle at bottom right, #ff7676 0%, transparent 75%);
    overflow: hidden;
}

.header-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Reservation Grid --- */
.reservation-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
    padding: 2rem 0;
}

/* --- Form Styling --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(43, 43, 43, 0.1);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--primary-white);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

textarea {
    resize: vertical;
}

.w-100 {
    width: 100%;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.font-weight-bold {
    font-weight: 700;
}

/* --- Info Side --- */
.booking-info-card .glass-card {
    padding: 3rem;
}

.info-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.info-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Success State --- */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-charcoal);
}

.success-message p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .header-content h1 {
        font-size: 3.5rem;
    }
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.8rem;
    }
    .header-content p {
        font-size: 1.1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .booking-info-card .glass-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
}