/* BOOKING PAGE - LIGHT LUXURY THEME (Final Alignment) */

/* --- HERO SECTION --- */
.booking-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    /* Flexbox for potential alignment, though we use absolute for content */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Lighter overlay to let video shine */
    z-index: 1;
}

/* HERO CONTENT - BOTTOM LEFT ALIGNMENT */
.hero-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    text-align: left;
    color: #fff;
    padding: 0;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero-content p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    text-align: left;
}


/* --- BOOKING INTRO SECTION --- */
/* Center Alignment for Intro */
.booking-intro {
    background-color: #fff;
    /* Explicit White Background */
    color: #333;
    padding: 4rem 1rem;
    text-align: center;
    /* CENTERED */
}

.booking-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.booking-editorial h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.editorial-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.editorial-text p {
    font-family: var(--font-sans);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Quote/Hours Box */
.quote-box {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem;
    margin-top: 2rem;
    font-style: italic;
    color: #444;
    background: #fdfdfd;
    text-align: center;
}

.quote-box p {
    text-align: center;
    margin: 0 auto;
}

/* Contact Grid */
.booking-contact-methods {
    margin-top: 4rem;
}

.booking-contact-methods h3 {
    font-family: var(--font-serif);
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-method-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 1.5rem;
    width: 200px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method-card i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-method-card .label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
}

.contact-method-card .value {
    color: #333;
    font-weight: 500;
}


/* --- BOOKING FORM SECTION --- */
.booking-section {
    padding: 0 1rem 4rem;
    background-color: #fff;
    /* Explicit White */
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.booking-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    /* CENTERED */
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Form Fields */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    /* Keep labels left for readability */
}

/* User asked for "all other texts centered" - if they meant labels too, change this to center */
/* But strictly speaking, standard forms are left-aligned. I will keep container centered. */

.luxury-form label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-left: 2px;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    background: #fefefe;
    border: 1px solid #e0e0e0;
    /* Distinct border */
    color: #333;
    /* Dark text */
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    transition: 0.3s;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

/* Checkbox Alignment */
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    /* Sentence case for terms */
    letter-spacing: 0;
}

/* Submit Button */
.btn-submit-booking {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #a08420 100%);
    color: #fff;
    border: none;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: 0.3s;
}

.btn-submit-booking:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Payment Methods */
.payment-methods-section h3 {
    text-align: center;
}

.payment-methods-section i {
    color: #ccc;
    /* Default greyish */
    transition: 0.3s;
}

.payment-methods-section i:hover {
    color: var(--gold);
}


/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .booking-hero {
        height: 60vh;
    }

    .form-row {
        flex-direction: column;
    }

    .hero-content {
        left: 20px;
        bottom: 20px;
        right: 20px;
        /* Ensure check against edge */
    }
}