#fw-section-custom-html-154ebd05-c8ae-44e7-9642-0b03859ace04 {

/* 1. CONTAINER STYLES (Enables Horizontal Scroll) */
.luxe-carousel-container {
    /* Enables scrolling on the X-axis only */
    overflow-x: scroll; 
    
    /* Prevents images from stacking vertically */
    white-space: nowrap; 
    
    /* Adds internal padding for visual space */
    padding: 15px 0; 
    
    /* Centers the container and ensures it fills the available width */
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    
    /* Optional: Hide the scrollbar in webkit browsers (Chrome/Safari) for a cleaner look */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Optional: Hide the scrollbar (continued) */
.luxe-carousel-container::-webkit-scrollbar {
    display: none;
}


/* 2. IMAGE STYLES (Sets Look and Feel) */
.luxe-carousel-container img {
    /* Sets a consistent size for a polished, uniform look */
    width: 400px;
    height: 500px;
    
    /* Ensures images maintain aspect ratio and fill the container */
    object-fit: cover;
    
    /* Allows images to sit side-by-side */
    display: inline-block;
    
    /* Creates space between each image */
    margin-right: 15px;
    
    /* Adds a subtle rounded corner for a high-end finish */
    border-radius: 4px;
    
    /* Adds a soft shadow for depth and luxury */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
}
#fw-section-custom-html-52951dad-322d-4e71-8f76-4ebac1a05a4f {

/* SERVICES SECTION STYLES */

.services-preview-section {
    /* White background makes this section pop after the Navy 'About Me' */
    background-color: #ffffff; 
    padding: 60px 20px;
    box-sizing: border-box;
}

.services-header {
    /* Uses the professional serif font for a high-end heading */
    font-family: 'Playfair Display', Georgia, serif; 
    text-align: center;
    color: #000080; /* Navy Blue */
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.services-intro-text {
    /* Uses the clean sans-serif font for readability */
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
}

.service-grid {
    /* Layout for the service blocks (1 column mobile, 3 columns desktop) */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Space between the blocks */
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    /* Style for each individual pricing block */
    flex: 1 1 300px; /* Takes full width on mobile, 3 blocks on desktop */
    min-width: 280px;
    padding: 30px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    /* Subtle hover effect for luxury feel */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    /* Service name style */
    font-family: 'Playfair Display', Georgia, serif;
    color: #000080;
    font-size: 1.5em;
    margin-top: 10px;
    margin-bottom: 5px;
}

.service-card p {
    /* Description text */
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: #555;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-price {
    /* Highlight the starting price */
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #FFD700; /* Gold */
    font-size: 1.4em;
    margin-top: 15px;
}

/* FOOTER NOTES (Not Offering / Coming Soon) */
.note-container {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    color: #555;
    font-size: 1em;
    line-height: 1.6;
}

.note-coming-soon {
    color: #000080; /* Navy Blue for 'Coming Soon' */
    font-weight: bold;
}
}
#fw-section-custom-html-12e1168a-3625-4e52-afe8-4265a7c4750e {

/* ================================================= */
/* 1. GLOBAL STYLES & TYPOGRAPHY */
/* ================================================= */

/* Sets clean sans-serif font for body text */
.about-body-text {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
}

/* Sets professional serif font for headings/titles */
.about-title, .about-quote {
    font-family: 'Playfair Display', Georgia, serif; 
}


/* ================================================= */
/* 2. ABOUT ME SECTION (Luxe Visuals - David) */
/* ================================================= */

.about-section-luxe {
    background-color: #000080; /* Navy Blue */
    color: #FFFFFF;
    padding: 60px 0;
    box-sizing: border-box;
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* Image Container (Left Column) */
.about-image-container {
    flex: 1 1 300px;
    padding-right: 20px; 
    box-sizing: border-box;
    margin-bottom: 30px;
    /* PC FIX: Keeps content aligned to the left of its column */
    text-align: left; 
}

/* Image Styles (Guarantees Circle Shape) */
.about-image {
    width: 250px; 
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid #FFFFFF;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
    
    /* PC FIX: Pushes image to the far left of its container for clean alignment */
    display: block;
    margin-left: 0; 
    margin-right: 0;
}

.about-quote {
    font-style: italic;
    font-size: 1.2em;
    color: #FFD700; /* Gold */
}

/* Text Container (Right Column) */
.about-content-wrapper > div:last-child {
    flex: 1 1 60%; 
    min-width: 300px; 
    box-sizing: border-box; 
    padding-left: 20px;
    
    /* PC FIX: Ensures text aligns to the left (default) */
    text-align: left;
}


/* ================================================= */
/* 3. MOBILE RESPONSIVENESS (Final Centering and Readability Fix) */
/* ================================================= */

@media (max-width: 768px) {
    
    /* 1. Image Container FIX: Centers the entire image column */
    .about-image-container {
        padding-right: 0; 
        margin: 0 auto 30px auto; 
        text-align: center;
    }
    
    /* 2. Image FIX: Allows the image to center */
    .about-image {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 3. Text Container FIX: Removes column padding/alignment rules */
    .about-content-wrapper > div:last-child {
        padding-left: 0;
        text-align: left; /* Critical: Ensures paragraphs are left-aligned for readability */
    }

    /* 4. Centers the Title and reduces size */
    .about-title {
        font-size: 2em;
        text-align: center; 
    }
    
    /* 5. Left-aligns the Quote for better flow */
    .about-quote {
        text-align: left;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* 6. Ensures paragraph text is left-aligned on mobile */
    .about-body-text {
        text-align: left;
        padding: 0 10px; /* Adds slight horizontal padding for clean edges */
    }
}
}
#fw-section-custom-html-c662cbee-45fe-4eb5-a780-6d2768c3a2b6 {

/* ================================================= */
/* 1. TYPOGRAPHY RULES (For Form Headings and Text) */
/* ================================================= */

.form-intro-text, .contact-form-container label, .contact-form-container input, .contact-form-container select, .contact-form-container textarea {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
}

.contact-form-container h2 {
    font-family: 'Playfair Display', Georgia, serif; 
}

/* ================================================= */
/* 2. BOOKING FORM STYLES */
/* ================================================= */

.contact-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #E0E0E0; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
}

.contact-form-container h2 {
    text-align: center;
    color: #000080; /* Navy Blue */
    margin-bottom: 25px;
}

.form-intro-text {
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
}

.contact-form-container label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

/* Grouping fields for side-by-side display on PC (First/Last Name, Date/Time) */
.name-fields-group, .date-time-group {
    display: flex;
    gap: 20px;
    margin-bottom: 5px;
}

.name-field-half, .date-time-half {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

/* Styling all input and select boxes */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container input[type="date"],
.contact-form-container select,
.contact-form-container textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    background-color: #fff;
    box-sizing: border-box;
}

.contact-form-container select,
.contact-form-container input[type="date"] {
    /* Ensures height matches text inputs */
    height: 48px; 
}

.contact-form-container textarea {
    resize: vertical;
}

.contact-form-container button[type="submit"] {
    background-color: #FFD700; /* Gold */
    color: #000080;
    border: none;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.contact-form-container button[type="submit"]:hover {
    background-color: #e6c200; 
}

/* ================================================= */
/* 3. MOBILE RESPONSIVENESS (Form Only) */
/* ================================================= */

@media (max-width: 550px) {
    /* Stacks side-by-side fields vertically on small screens */
    .name-fields-group, .date-time-group {
        flex-direction: column; 
        gap: 0;
    }
    .name-field-half, .date-time-half {
        width: 100%;
    }
}
}
#fw-section-custom-html-6178aa9c-ddb0-40c7-b39d-adab09aae711 {

/* ================================================= */
/* FAQ / POLICIES PREVIEW STYLES */
/* ================================================= */

.policies-section {
    background-color: #F8F8F8; /* Light gray background to separate it visually */
    padding: 60px 0;
    box-sizing: border-box;
}

.policies-header {
    text-align: center;
    color: #000080; /* Navy Blue */
    font-size: 2.5em;
    font-family: 'Playfair Display', Georgia, serif; 
    margin-bottom: 5px;
}

.policies-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
}

.policy-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; 
    max-width: 1000px;
    margin: 0 auto;
}

.policy-card {
    flex: 1 1 300px; 
    min-width: 280px;
    padding: 30px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    text-align: center;
    background-color: #ffffff; /* White card background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.policy-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.policy-card h3 {
    color: #000080; /* Navy Blue */
    font-size: 1.4em;
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    margin-bottom: 10px;
}

.policy-card p {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 1em;
}

/* Mobile adjustments for the grid */
@media (max-width: 768px) {
    .policies-header {
        font-size: 2em;
    }
    .policy-grid {
        gap: 20px;
    }
    .policy-card {
        min-width: 90%; /* Ensures they stack nicely on small phones */
    }
}
}
#fw-section-custom-html-c31413b5-17bb-4cce-9d86-f4412045fc1d {

/* ================================================= */
/* GENERAL CONTACT FORM STYLES */
/* ================================================= */

.general-contact-container {
    background-color: #ffffff; /* White background */
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #E0E0E0; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Slightly stronger shadow */
}

.general-contact-container h2 {
    text-align: center;
    color: #000080; /* Navy Blue */
    font-family: 'Playfair Display', Georgia, serif; 
    margin-bottom: 20px;
}

.general-contact-container .form-intro-text {
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.general-contact-container form {
    display: flex;
    flex-direction: column;
}

.general-contact-container label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

/* Styling all input and textarea boxes */
.general-contact-container input[type="text"],
.general-contact-container input[type="email"],
.general-contact-container input[type="tel"],
.general-contact-container textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    background-color: #fff;
    box-sizing: border-box;
}

.general-contact-container textarea {
    resize: vertical;
}

.general-contact-container button[type="submit"] {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Navy Blue */
    border: none;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.general-contact-container button[type="submit"]:hover {
    background-color: #e6c200; 
}

#inquiry-form-status {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}
}
#fw-section-custom-html-6be3af39-fe36-4796-92b1-4c2c403e95c9 {

/* ================================================= */
/* GALLERY PAGE STYLES */
/* ================================================= */

.gallery-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
}

.gallery-header {
    text-align: center;
    padding: 20px 0 40px 0;
}

.gallery-header h1 {
    font-size: 2.8em;
    font-family: 'Playfair Display', serif;
    color: #000080; /* Navy Blue */
    margin-bottom: 5px;
}

.gallery-header p {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 1.1em;
}

/* --- Core Gallery Container remains a simple block --- */
.gallery-container {
    /* We now rely on the row classes for layout */
    display: block;
    padding-bottom: 10px; /* Space at the bottom */
}

/* --- Row Styles for Organization --- */
.image-row {
    display: grid; /* Use Grid for uniform columns within the row */
    grid-template-columns: repeat(3, 1fr); /* Creates 3 equal columns */
    gap: 10px; /* Space between images */
    margin-bottom: 10px; /* Space between rows */
}

/* 1. STYLES FOR HORIZONTAL IMAGES */
.horizontal-row img {
    height: 300px; /* Shorter height for wide images */
    width: 100%;
    object-fit: contain; /* Shows full image */
    background-color: #f0f0f0;
    border-radius: 4px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* 2. STYLES FOR PORTRAIT IMAGES */
.portrait-row img {
    height: 500px; /* Taller height for vertical images */
    width: 100%;
    object-fit: contain; /* Shows full image */
    background-color: #f0f0f0;
    border-radius: 4px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.02);
}

/* THANK YOU BOX STYLES (No change) */
.thank-you-box {
    text-align: center;
    padding: 30px 20px;
    max-width: 800px;
    margin: 40px auto 10px auto;
    border-top: 2px solid #FFD700;
}

.thank-you-box p {
    font-family: 'Playfair Display', serif; 
    font-size: 1.15em;
    color: #333;
    line-height: 1.6;
}

/* ================================================= */
/* MOBILE RESPONSIVENESS */
/* ================================================= */
@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2em;
    }
    
    .image-row {
        /* On mobile, switch rows to a single column grid */
        grid-template-columns: 1fr; 
        gap: 10px; 
    }

    .horizontal-row img {
        height: 250px;
    }

    .portrait-row img {
        height: 400px;
    }
}
}
#fw-section-custom-html-8086405a-14df-49be-8cc9-6b9890cf1ff5 {

/* ================================================= */
/* BOOKING PAGE HERO */
/* ================================================= */

.booking-hero {
    background-color: #000080; /* Navy Blue */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 3.5em;
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
    margin-bottom: 5px;
}

.booking-hero p {
    font-size: 1.2em;
    font-family: 'Montserrat', sans-serif;
}

/* ================================================= */
/* MAIN CONTAINER AND LAYOUT */
/* ================================================= */

.booking-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; /* Space between form and policy */
}

/* Form Area Styling */
.booking-form-area {
    flex: 2; /* Takes up two-thirds of the space */
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    color: #000080;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-top: 0;
}

.booking-form-area .form-intro-text {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 30px;
}

/* Styles for labels, inputs, selects, and buttons (reusing general form styles) */
.booking-form-area form {
    display: flex;
    flex-direction: column;
}

.booking-form-area label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.booking-form-area input[type="text"],
.booking-form-area input[type="email"],
.booking-form-area input[type="tel"],
.booking-form-area input[type="date"],
.booking-form-area select,
.booking-form-area textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    background-color: #fff;
    box-sizing: border-box;
}

.booking-form-area textarea {
    resize: vertical;
}

/* Custom layout for side-by-side fields */
.name-fields-group, .date-time-group {
    display: flex;
    gap: 20px;
}
.name-field-half, .date-time-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.name-field-half label, .date-time-half label {
    margin-top: 15px;
}

/* Submit Button */
#portrait-submit-button {
    background-color: #000080; /* Navy Blue */
    color: white;
    border: none;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

#portrait-submit-button:hover {
    background-color: #000066;
}

#portrait-form-status {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}


/* Payment Policy Area Styling */
.payment-policy-area {
    flex: 1; /* Takes up one-third of the space */
}

.policy-title {
    color: #FFD700; /* Gold */
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    border-bottom: 2px solid #000080;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.policy-box {
    background-color: #fffaf0; /* Light gold/cream background */
    border: 1px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
}

.deposit-info {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.payment-methods p {
    font-weight: bold;
    color: #000080;
    margin-bottom: 10px;
}

.payment-methods ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.payment-methods li {
    font-family: 'Montserrat', sans-serif;
    padding: 5px 0;
    font-size: 1em;
    color: #000080;
}

.policy-note {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.policy-footer {
    color: #999;
    font-size: 0.9em;
    text-align: center;
}


/* ================================================= */
/* RESPONSIVENESS (Mobile/Tablet) */
/* ================================================= */

@media (max-width: 768px) {
    .booking-page-container {
        flex-direction: column; /* Stack areas vertically */
        gap: 20px;
    }
    
    .name-fields-group, .date-time-group {
        flex-direction: column; /* Stack name/date fields vertically */
        gap: 0;
    }
    .name-field-half, .date-time-half {
        width: 100%;
    }
    .name-field-half label, .date-time-half label {
        margin-top: 5px;
    }

    .booking-form-area {
        padding: 20px;
    }
}
}
#fw-section-custom-html-ba0a5a31-e750-48c7-937b-f59857430d57 {

/* ================================================= */
/* GLOBAL BOOKING STYLES (Applies to both pages) */
/* ================================================= */

.booking-hero {
    background-color: #000080; /* Navy Blue */
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 3.5em;
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
    margin-bottom: 5px;
}

.booking-hero p {
    font-size: 1.2em;
    font-family: 'Montserrat', sans-serif;
}

/* ================================================= */
/* MAIN CONTAINER AND LAYOUT */
/* ================================================= */

.booking-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; /* Space between form and policy */
}

/* Form Area Styling */
.booking-form-area {
    flex: 2; /* Takes up two-thirds of the space */
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    color: #000080;
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-top: 0;
}

.booking-form-area .form-intro-text {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 30px;
}

/* Styles for labels, inputs, selects, and buttons */
.booking-form-area form {
    display: flex;
    flex-direction: column;
}

.booking-form-area label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.booking-form-area input[type="text"],
.booking-form-area input[type="email"],
.booking-form-area input[type="tel"],
.booking-form-area input[type="date"],
.booking-form-area input[type="time"],
.booking-form-area input[type="number"],
.booking-form-area select,
.booking-form-area textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    background-color: #fff;
    box-sizing: border-box;
}

.booking-form-area textarea {
    resize: vertical;
}

/* Custom layout for side-by-side fields */
.name-fields-group, .date-time-group {
    display: flex;
    gap: 20px;
}
.name-field-half, .date-time-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.name-field-half label, .date-time-half label {
    margin-top: 15px;
}

/* Submit Button Styles (Targeting specific IDs for consistency) */
#portrait-submit-button, #event-submit-button {
    background-color: #000080; /* Navy Blue */
    color: white;
    border: none;
    padding: 15px 20px;
    margin-top: 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

#portrait-submit-button:hover, #event-submit-button:hover {
    background-color: #000066;
}

#portrait-form-status, #event-form-status {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}


/* Payment Policy Area Styling */
.payment-policy-area {
    flex: 1; /* Takes up one-third of the space */
}

.policy-title {
    color: #FFD700; /* Gold */
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    border-bottom: 2px solid #000080;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.policy-box {
    background-color: #fffaf0; /* Light gold/cream background */
    border: 1px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
}

.deposit-info {
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.payment-methods p {
    font-weight: bold;
    color: #000080;
    margin-bottom: 10px;
}

.payment-methods ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.payment-methods li {
    font-family: 'Montserrat', sans-serif;
    padding: 5px 0;
    font-size: 1em;
    color: #000080;
}

.policy-note {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.policy-footer {
    color: #999;
    font-size: 0.9em;
    text-align: center;
}


/* ================================================= */
/* RESPONSIVENESS (Mobile/Tablet) */
/* ================================================= */

@media (max-width: 768px) {
    .booking-page-container {
        flex-direction: column; /* Stack areas vertically */
        gap: 20px;
    }
    
    .name-fields-group, .date-time-group {
        flex-direction: column; /* Stack name/date fields vertically */
        gap: 0;
    }
    .name-field-half, .date-time-half {
        width: 100%;
    }
    .name-field-half label, .date-time-half label {
        margin-top: 5px;
    }

    .booking-form-area {
        padding: 20px;
    }
}
}
#fw-section-custom-html-2a2360b0-f92e-443e-8fc0-e40fb00d9e79 {

/* ================================================= */
/* GLOBAL STYLES & TYPOGRAPHY */
/* ================================================= */

body {
    /* Ensure fonts are loaded if possible. Assuming Google Fonts links are in your HTML header: */
    /* link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500;700;900&display=swap" rel="stylesheet" */
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* ================================================= */
/* HERO SECTION (Applies to all booking-hero) */
/* ================================================= */

.booking-hero {
    background-color: #000080; /* Navy Blue */
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 5px solid #FFD700; /* Subtle gold trim */
}

.booking-hero h1 {
    font-size: 3.5em;
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
    margin-bottom: 5px;
    font-weight: 700;
}

.booking-hero p {
    font-size: 1.2em;
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================================= */
/* MAIN CONTAINER & TWO-COLUMN LAYOUT */
/* ================================================= */

.booking-page-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; /* Space between form and policy */
    align-items: flex-start; /* Ensures columns start aligned at the top */
}

/* ================================================= */
/* FORM AREA STYLING */
/* ================================================= */

.booking-form-area {
    flex: 2; /* Takes up two-thirds of the space */
    padding: 30px;
    background-color: #ffffff; /* White background for better contrast */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.form-title {
    color: #000080;
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-top: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.booking-form-area .form-intro-text {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    margin-bottom: 30px;
}

/* Form Elements */
.booking-form-area form {
    display: flex;
    flex-direction: column;
}

.booking-form-area label {
    margin-top: 18px;
    margin-bottom: 5px;
    font-weight: 700; /* Bolder label text */
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form-area input[type="text"],
.booking-form-area input[type="email"],
.booking-form-area input[type="tel"],
.booking-form-area input[type="date"],
.booking-form-area input[type="time"],
.booking-form-area input[type="number"],
.booking-form-area select,
.booking-form-area textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    background-color: #fcfcfc;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.booking-form-area input:focus,
.booking-form-area select:focus,
.booking-form-area textarea:focus {
    border-color: #FFD700; /* Gold border on focus */
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
    outline: none;
}

.booking-form-area textarea {
    resize: vertical;
}

/* Custom layout for side-by-side fields */
.name-fields-group, .date-time-group {
    display: flex;
    gap: 20px;
}
.name-field-half, .date-time-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Submit Button Styles (Targeting all three buttons for consistency) */
#portrait-submit-button, #event-submit-button, #mini-submit-button {
    background-color: #000080; /* Navy Blue */
    color: white;
    border: none;
    padding: 18px 25px;
    margin-top: 40px;
    border-radius: 50px; /* Pill shape for a high-end look */
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 900; /* Extra bold */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 10px rgba(0, 0, 128, 0.3); /* Subtle blue shadow */
}

#portrait-submit-button:hover, #event-submit-button:hover, #mini-submit-button:hover {
    background-color: #000066;
    transform: translateY(-1px);
}

#portrait-form-status, #event-form-status, #mini-form-status {
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ================================================= */
/* PAYMENT & POLICY SIDEBAR */
/* ================================================= */

.payment-policy-area {
    flex: 1; /* Takes up one-third of the space */
    padding-top: 40px;
}

.policy-title {
    color: #000080;
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    border-bottom: 3px solid #FFD700; 
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 25px;
}

.policy-box {
    background-color: #f9f9f9; /* Light background */
    border: 1px solid #ddd;
    border-left: 5px solid #FFD700; /* Gold left accent line */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.deposit-info {
    font-size: 1.1em;
    color: #000080; 
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.payment-methods p {
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    font-size: 1em;
}

.payment-methods ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.payment-methods li {
    font-family: 'Montserrat', sans-serif;
    padding: 5px 0;
    font-size: 1em;
    color: #333;
}

.policy-note {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-left: 3px solid #000080;
    border-radius: 4px;
}

.policy-footer {
    color: #999;
    font-size: 0.9em;
    text-align: center;
    margin-top: 20px;
}

/* ================================================= */
/* RESPONSIVENESS */
/* ================================================= */

@media (max-width: 992px) {
    .booking-page-container {
        /* Stack areas vertically on tablets and mobile */
        flex-direction: column; 
        gap: 30px;
        margin-top: 40px;
    }
    
    .booking-hero h1 {
        font-size: 2.8em;
    }

    .booking-form-area, .payment-policy-area {
        padding: 20px;
        width: 100%; /* Ensure they take full width */
        box-sizing: border-box;
    }

    /* Stack side-by-side fields on mobile */
    .name-fields-group, .date-time-group {
        flex-direction: column; 
        gap: 0;
    }
    .name-field-half, .date-time-half {
        width: 100%;
    }
}
}
#fw-section-donations-815a8668-7b02-4612-80df-f48fd5c6b7b5 {

/* Style for the main donation section */
.donation-area-wrapper {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    background-color: #f9f9f9; /* Light contrast to body */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* Heading Style (The Appreciation Fund) - Uses Playfair Display for luxury */
.donation-area-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #000080; /* Navy Blue */
    margin-bottom: 15px;
    border-bottom: 3px solid #FFD700; /* Gold underline */
    display: inline-block;
    padding-bottom: 5px;
}

/* Description Text Style */
.donation-area-wrapper p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Styling for the Fourthwall button/widget (Use your actual button class name) */
.donation-widget .fourthwall-button {
    /* Assuming you can target the button itself */
    background-color: #FFD700; /* Gold as a standout color */
    color: #000080; /* Navy Blue text on Gold */
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 900;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4); /* Gold shadow */
}

.donation-widget .fourthwall-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}
}

#fw-section-custom-html-81aa2d25-cc3a-4c40-8cb5-74f392c011ed {

/* ================================================= */
/* 1. SERVICES HERO SECTION */
/* ================================================= */

.services-hero {
    background-color: #000080; /* Navy Blue */
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 4em;
    font-family: 'Playfair Display', serif;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 1.4em;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.cta-button-hero {
    background-color: white;
    color: #000080;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button-hero:hover {
    background-color: #eee;
}

/* ================================================= */
/* 2. MAIN CONTENT AND CARDS */
/* ================================================= */

.services-content-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-header {
    text-align: center;
    color: #000080;
    font-size: 2.5em;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.service-category-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: 2em;
    font-family: 'Playfair Display', serif;
    color: #000080;
    border-bottom: 3px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 15px;
}

.category-description {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 30px;
}

.package-group {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 300px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.featured-pricing-card {
    border: 3px solid #FFD700; /* Gold border for emphasis */
    background-color: #fffaf0; /* Light gold background */
}

.pricing-card h4 {
    color: #000080;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    margin-top: 0;
}

.price-tag {
    font-size: 2.2em;
    font-weight: bold;
    color: #FFD700;
    margin: 10px 0 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-card li {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #444;
}

/* Book Now Button */
.book-now-button {
    background-color: #000080;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s;
}

.book-now-button:hover {
    background-color: #000066;
}

.featured-button {
    background-color: #FFD700;
    color: #000080;
}

.featured-button:hover {
    background-color: #e6c200;
}

/* ================================================= */
/* 3. FINAL CTA SECTION */
/* ================================================= */

.booking-cta-final {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
}

.booking-cta-final p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 25px;
}

.final-cta-button {
    background-color: #FFD700; 
    color: #000080;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
    display: inline-block;
    text-transform: uppercase;
}

.final-cta-button:hover {
    background-color: #e6c200; 
}

/* ================================================= */
/* 4. RESPONSIVENESS */
/* ================================================= */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 3em;
    }
    .service-category-card {
        padding: 30px 15px;
    }
    .package-group {
        flex-direction: column; /* Stacks pricing cards vertically */
    }
    .pricing-card {
        width: 100%;
        margin-bottom: 15px;
    }
}
}