<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-----------------------------------------------------------------------------------

    Template Name: Parshi - Catering Service HTML Template
    Template URI: https://devitems.com/html/food-preview/
    Description: This is html5 template
    Author: HasTech
    Author URI: https://devitems.com/
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    1. Event Area
    2. About Area
    3. Menu Area
    4. Table Area
    5. Testimonial Area
    6. Package Area
    7. Footer Area
    8. Blog Area

-----------------------------------------------------------------------------------*/


h1 {
    font-family: "Playfair", cursive;
    font-size: 55px;
    padding-bottom: 5px;
    text-transform: capitalize;
    font-weight: 400;
}

/*----------------------------------------*/
/*  1. Event Area
/*----------------------------------------*/
.hero-section&gt;* {
    position: relative;
    z-index: 2;
}

.hero-section {
    position: relative;
    background-image: url("/app-assets/images/backgrounds/cristina-tatas-catering-main-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity if needed */
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* adjust fade height as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.hero-section h1 {
    font-size: 60px;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-sub-title {
    font-family: 'Montserrat', serif;
    font-size: 40px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.5;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-weight: 400;
}

.cta-content {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-phones {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #fff;
}


.cta-phones p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
    opacity: 0.8;
}

.cta-phones a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
}



.cta-phone-numbers {
    font-size: 16px;
    color: #d1d1d1;
    margin-top: 20px;
}

.cta-phone-numbers a {
    color: #fff;
    /* White links */
    text-decoration: none;
    font-weight: 500;
}

.cta-phone-numbers a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    /* Tablet */
    .full-width-cta-section {
        height: 350px;
        /* Adjust height for tablets */
    }

    .cta-heading {
        font-size: 2.4rem;
    }

    .cta-subtext {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {

    /* Mobile */
    .full-width-cta-section {
        height: auto;
        /* Auto height for mobile, content will dictate */
        min-height: 300px;
        /* Minimum height */
        padding: 40px 0;
        /* Add some vertical padding */
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-subtext {
        
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 10px 20px;
    
    }

    .cta-phone-numbers {
        font-size: 14px;
    }
}

/*----------------------------------------*/
/*  2. About Area
/*----------------------------------------*/
.why-choose-us {
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f9f7fd 70%,
            #f2ecfa 90%,
            #eae0fb 100%);
    padding: 80px 0;
}

.why-choose-us-content-inner {
    max-width: 700px;
    margin: 0 auto 40px auto;
    /* Added bottom margin */
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #573BAF; 
    margin-bottom: 20px;
    font-family: 'Playfair Display', sans-serif;
}

.why-choose-us-content-inner p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Card styling for .why-choose-us-list-item */
.why-choose-us-list-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid #A88BFF;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-us-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.why-choose-us-list-item .round-icon {
    background-color: #E5D9FB;
    /* Light lavender background for icon */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 0;
    /* Reset padding */
}

.why-choose-us-list-item .round-icon svg {
    stroke: #A88BFF;
    fill: none;
    width: 32px;
    height: 32px;
}

.why-choose-us-list-item h3 {
    font-family: 'Playfair', sans-serif;
    /* Modern sans-serif font for title */
    font-size: 20px;
    font-weight: 700;
    color: #8a2be2;
    /* Dark color for title */
    margin-bottom: 12px;
}

.why-choose-us-list-item p {
    font-family: 'Open Sans', sans-serif;
    /* Readable sans-serif for description */
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0;
}

/*----------------------------------------*/
/*  Premium Catering Services Section
/*----------------------------------------*/
.premium-catering-services-section {
    background-color: #fff;
    /* Or your desired background */
}

.premium-catering-services-section .section-title h2 {
    color: #573BAF;
    font-family: 'Playfair', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-catering-services-section .section-title h3 {
    /* For "Wedding Catering Services Packages" */
    color: #573BAF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.premium-catering-services-section .section-title p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
     max-width: 700px;
     margin: 0 auto 30px auto;
}

/* Filter Buttons */
.service-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #E5D9FB;
    /* Light lavender background */
    color: #573BAF;
    /* Purple text */
    border: 1px solid #A88BFF;
    padding: 10px 20px;
    border-radius: 20px;
    /* Pill shape */
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-btn .icon-placeholder {
    margin-right: 8px;
    /* Add styles for your icons here, e.g., font-family for icon font */
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #573BAF;
    /* Purple background for active/hover */
    color: #fff;
    border-color: #573BAF;
}

/* Package Cards */
.package-card-col {
    margin-bottom: 30px;
    /* Spacing for stacked cards on mobile */
}

.package-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    /* To contain the border-radius */
    height: 100%;
    /* For equal height cards in a row if using display:flex on row/col */
    display: flex;
    flex-direction: column;
    position: relative;
    /* For the "Most Popular" tag */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5D9FB;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card.most-popular {
    border: 2px solid #573BAF;
    /* Highlight border for most popular */
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card.most-popular:hover {
    transform: translateY(-8px);
}

.package-header {
    background-color: #573BAF;
    /* Match primary purple */
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.package-header h4 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    font-family: 'Playfair', sans-serif;
}

.package-header p {
    font-size: 14px;
    margin-bottom: 0;
    opacity: 0.9;
}

.package-body {
    padding: 25px 20px;
    flex-grow: 1;
    /* Allows body to expand and push footer down if cards have footers */
}

.package-body h5 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Playfair', sans-serif;
}

.package-body .inclusions-title {
    margin-top: 25px;
}

/* Pricing List */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li span:last-child {
    font-weight: 600;
    color: #333;
}

/* Inclusions List */
.inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusions-list li {
    color: #555;
    font-size: 15px;
    position: relative;
    padding: 6px 0 6px 0;
    display: flex;
    align-items: center;
}

.inclusions-list li .icon-check {
    color: #573BAF;
    margin-right: 10px;
}

.menu-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.menu-list li {
    color: #555;
    font-size: 15px;
    position: relative;
    padding: 6px 0 6px 0;
    display: flex;
    align-items: center;
}

.menu-list li .icon-check {
    color: #573BAF;
    margin-right: 10px;
}

.menu-title.font-playfair {
    font-family: "Playfair", serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 10px;
}

.pricing-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table.table-bordered {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.pricing-header {
    background-color: #573BAF;
    color: white;
    font-weight: 600;
    border-bottom: 2px solid #4a309d;
}

.pricing-row span {
    font-size: 14px;
}

.pricing-row span:last-child {
    font-weight: 600;
}

/* Most Popular Tag */
.package-card.most-popular {
    border: 2px solid #573BAF;
    /* Highlight border for most popular */
}

.package-card.most-popular .package-header {
    background-color: #4a309d;
    /* Slightly darker for most popular */
}

.most-popular-tag {
    position: absolute;
    top: 5px;
    right: -5px;
    background-color: #FF6B6B;
    /* Bright color to stand out */
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 5px 5px 0;
}

.most-popular-tag::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid #cc5555;
    /* Darker shade for shadow effect */
    border-left: 5px solid transparent;
}

.package-button-container {
    margin-top: 25px;
    width: 100%;
}

.package-book-btn {
    background-color: #A88BFF;
    /* Secondary color - lighter purple */
    border: 2px solid #A88BFF;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    overflow: hidden;
    padding: 0 30px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    z-index: 1;
    transition: all 0.4s ease 0s;
    text-decoration: none;
}

.package-book-btn::before {
    background-color: #fff;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: scale(0.5, 1);
    transition: all 0.4s ease 0s;
    width: 100%;
    z-index: -1;
}

.package-book-btn:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}

.package-book-btn span {
    z-index: 2;
    position: relative;
}

.package-book-btn:hover,
.package-book-btn:focus,
.package-book-btn:active {
    color: #A88BFF;
    text-decoration: none;
}

.package-card.most-popular .package-book-btn {
    background-color: #573BAF;
    /* Darker purple for most popular package */
    border-color: #573BAF;
}

.package-card.most-popular .package-book-btn:hover,
.package-card.most-popular .package-book-btn:focus,
.package-card.most-popular .package-book-btn:active {
    color: #573BAF;
}

.package-note {
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    color: #666;
}

.package-note p {
    margin-bottom: 15px;
}



/* Menu Section */
/* Culinary Menu Section General Styles */
.culinary-menu-section {
    padding: 60px 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    /* Light gray background for the whole section */
}

.culinary-menu-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.culinary-menu-section .text-center {
    text-align: center;
}

.culinary-menu-section .section-header {
    margin-bottom: 40px;
}

.culinary-menu-section .sub-heading {
    font-size: 0.9em;
    color: #8a2be2;
    /* Purple accent */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
}

.culinary-menu-section .main-heading {
    font-size: 36px;
    color: #573BAF;
    margin-bottom: 15px;
    font-family: 'Playfair', sans-serif;
    /* Consider a display font if available, e.g., font-family: 'Playfair Display', serif; */
}

.culinary-menu-section .section-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Tabs Navigation */
.culinary-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    /* Allow tabs to wrap on smaller screens */
}

.culinary-tab-button {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px 5px;
    /* Added bottom margin for wrapped items */
    cursor: pointer;
    font-size: 1em;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    font-weight: 500;
}

.culinary-tab-button:hover {
    color: #8a2be2;
}

.culinary-tab-button.active {
    color: #8a2be2;
    border-bottom-color: #8a2be2;
    font-weight: bold;
}

/* Tab Panels */
.culinary-tab-panel {
    display: none;
    animation: fadeIn 0.5s;
}

.culinary-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.culinary-panel-content {
    display: flex;
    flex-direction: column;
    /* Mobile first: stack columns */
    gap: 30px;
    background-color: #fff;
    /* White background for the panel content area */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Category Showcase (Left Column on Desktop) */
.culinary-category-showcase {
    flex-basis: 35%;
    /* Desktop width */
}

.category-card {
    background-color: #fff;
    /* Card background */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-card-image-wrapper {
    position: relative;
    width: 100%;
    /* height: 250px; Mobile height for image */
    /* padding-top: 75%; /* Aspect ratio for responsive height e.g. 4:3 */
}

.category-image {
    width: 100%;
    height: 100%;
    /* Make image fill wrapper */
    object-fit: cover;
    /* Cover the area without stretching */
    display: block;
}


.category-card-image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.category-card-image-overlay-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.8em;
    font-weight: bold;
}

.category-card-image-overlay-text p {
    margin: 0;
    font-size: 0.9em;
}

.category-card-description {
    padding: 20px;
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
}

.category-card-description p {
    margin-bottom: 15px;
}


.chef-selection-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #8a2be2;
    font-weight: bold;
    font-size: 0.9em;
    gap: 5px;
    justify-content: flex-start;
}

.chef-selection-link .chef-icon {
    margin-right: 8px;
    width: 20px;
    /* Adjust icon size */
    height: 20px;
}


/* Culinary Items List (Right Column on Desktop) */
.culinary-items-list {
    flex-basis: 65%;
    display: flex;
    flex-direction: column; /* Flow items vertically */
    flex-wrap: wrap; /* Allow wrapping to create columns */
    width: 100%;
    max-height: 300px; /* Set a height to allow items to wrap into columns */
}

.culinary-item {
    width: 50%; /* Each item takes 50% width, creating 2 columns */
    height: 46px;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.culinary-item:hover {
    background-color: #f9f9f9;
}

.popular-badge {
    background-color: #7943ea;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
}

/* Footer CTA */
.culinary-menu-footer {
    padding: 20px;
}

.culinary-menu-footer p {
    color: #555;
    font-size: 13px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-style: italic; 

}

.custom-menu-btn {
    display: inline-block;
    background-color: #8a2be2;
    /* Purple */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    /* Pill shape button */
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.custom-menu-btn:hover {
    background-color: #7324bf;
    /* Darker purple */
}

.custom-menu-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-menu-btn svg {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}


/* Responsive Adjustments */
@media (min-width: 768px) {

    /* Tablet and up */
    .culinary-panel-content {
        flex-direction: row;
        /* Two columns side-by-side */
    }

    .culinary-category-showcase {
        /* height becomes auto based on content */
    }

    .category-card-image-wrapper {
        /* height: auto; */
        /* Adjust if using padding-top for aspect ratio */
        /* padding-top: 130%; Example: taller image */
    }

}

@media (max-width: 600px) {

    /* Smaller mobile screens for tabs */
    .culinary-tabs-nav {
        justify-content: flex-start;
        /* Align tabs to start if they wrap */
    }

    .culinary-tab-button {
        padding: 8px 12px;
        font-size: 0.9em;
        margin: 0 3px 8px 3px;
    }

    .culinary-menu-section .main-heading {
        font-size: 2em;
    }

    .category-card-image-overlay-text h3 {
        font-size: 1.5em;
    }
}



/* Event Design Gallery Section General Styles */
.event-design-gallery-section {
    padding: 60px 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    /* White background for this section */
}

.event-design-gallery-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.event-design-gallery-section .text-center {
    text-align: center;
}

.event-design-gallery-section .section-header {
    margin-bottom: 40px;
}

.event-design-gallery-section .sub-heading {
    font-size: 0.9em;
    color: #8a2be2;
    /* Purple accent consistent with culinary menu */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
}

.event-design-gallery-section .main-heading {
    font-size: 36px;
    color: #573BAF;
    margin-bottom: 15px;
    font-family: 'Playfair', sans-serif;
}

.event-design-gallery-section .section-description {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Filter Navigation */
.gallery-filter-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-filter-button {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 8px 18px;
    margin: 0 5px 10px 5px;
    cursor: pointer;
    font-size: 0.95em;
    color: #555;
    border-radius: 20px;
    /* Pill shape buttons */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.gallery-filter-button:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.gallery-filter-button.active {
    background-color: #8a2be2;
    color: #fff;
    border-color: #8a2be2;
    font-weight: bold;
}

/* Gallery Grid */
.gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobile: 1 column */
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 1;
    /* For fade in/out on filter */
}

.gallery-item.hidden-item {
    /* Used by JS to hide items for "See More" */
    display: none !important;
    /* Override grid display */
}

.gallery-item.filtered-out {
    display: none !important;

}


.gallery-item img {
    width: 100%;
    height: 220px;
    /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

.gallery-item .item-description {
    padding: 12px 15px;
    font-size: 0.9em;
    color: #444;
    text-align: center;
    background-color: #f9f9f9;
}

/* See More Link */
.see-more-container {
    text-align: center;
    margin-top: 20px;
    /* Space above the link */
    position: relative;
    /* For the backdrop */
}

.see-more-link {
    display: inline-block;
    padding: 10px 20px;
    color: #573BAF;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: text-decoration 0.3s ease;
}

.see-more-link:hover {
    text-decoration: underline;
}

.see-more-link::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    background-color: #E5D9FB;;
    border-radius: 20px;
    z-index: -1;
    border: 1px solid #573BAF;
    transition: background-color 0.3s ease;
}


/* Responsive Adjustments for Gallery Grid */
@media (min-width: 576px) {

    /* Small devices (landscape phones, 2 columns) */
    .gallery-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {

    /* Medium devices (tablets, 3 columns) */
    .gallery-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {

    /* Large devices (desktops, 3 columns - already set but good to keep) */
    .gallery-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Client Testimonials Section General Styles */
.client-testimonials-section {
    padding: 60px 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    /* Light background for the section */
}

.client-testimonials-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.client-testimonials-section .text-center {
    text-align: center;
}

.client-testimonials-section .section-header {
    margin-bottom: 50px;
    /* Increased bottom margin for more space */
}

.client-testimonials-section .main-heading {
    font-size: 36px;
    color: #573BAF;
    margin-bottom: 15px;
    font-family: 'Playfair', sans-serif;
}

.client-testimonials-section .section-description {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonial Cards Container */
.testimonial-cards-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobile: 1 column */
    gap: 30px;
    /* Gap between cards */
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    /* Subtle shadow */
    display: flex;
    flex-direction: column;
    /* text-align: center; /* If you want card content centered */
}

.star-rating {
    margin-bottom: 15px;
    /* text-align: center; /* Center stars if card is centered */
}

.star-icon {
    width: 20px;
    /* Adjust size as needed */
    height: 20px;
    fill: #FFD700;
    /* Gold color for stars */
    margin-right: 3px;
}

.testimonial-quote {
    font-size: 0.95em;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
    /* Allows quote to take up available space, pushing name down */
}

.client-name {
    font-size: 1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.event-type {
    font-size: 0.85em;
    color: #777;
}

/* Read More Link Container */
.read-more-reviews-container {
    text-align: center;
    margin-top: 30px;
}

.read-more-reviews-link {
    color: #555;
    /* Muted color as per screenshot */
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 0;
    /* Add some padding if needed for hover area */
    transition: color 0.3s ease, opacity 0.3s ease;
    display: inline-block;
    /* Needed for padding and if you add a background */
}

.read-more-reviews-link:hover {
    color: #8a2be2;
    /* Accent color on hover */
    text-decoration: underline;
    opacity: 0.8;
}

.read-more-reviews-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-reviews-link:hover .arrow {
    transform: translateX(3px);
}

/* Responsive Adjustments for Testimonial Cards */
@media (min-width: 768px) {

    /* Tablet: 2 columns */
    .testimonial-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {

    /* Desktop: 3 columns */
    .testimonial-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Facebook About Section General Styles */
.facebook-about-section {
    padding: 60px 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    /* White background for this section */
}

.facebook-about-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.fb-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Facebook Info Card (Left Column) */
.facebook-info-card {
    background-color: #f7f8fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.fb-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.fb-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: #1877f2;
    /* Facebook blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.fb-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.fb-page-name-primary {
    font-weight: bold;
    color: #1c1e21;
    font-size: 1em;
}

.fb-page-name-secondary {
    font-size: 0.85em;
    color: #606770;
}

.fb-followers {
    font-size: 0.9em;
    color: #606770;
    margin-bottom: 15px;
}

.fb-business-name {
    font-size: 1.25em;
    line-height: 1.1;
    font-weight: bold;
    color: #1c1e21;
    margin-bottom: 5px;
    
}

.fb-location {
    font-size: 0.9em;
    color: #606770;
    margin-bottom: 10px;
}

.fb-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #606770;
}

.fb-rating .rating-score {
    font-weight: bold;
    color: #1c1e21;
    margin-right: 5px;
}

.fb-rating .star-rating {
    display: flex;
    margin-right: 5px;
    margin-bottom: 0px;
}

.fb-rating .star-icon {
    width: 16px;
    /* Slightly smaller stars in this context */
    height: 16px;
    fill: #f5c518;
    /* Yellow for stars */
    margin-right: 2px;
}

.fb-rating .star-icon.star-half path:first-child {
    /* Target the filled part of half star */
    fill: #f5c518;
}

.fb-rating .star-icon.star-half path:last-child {
    /* Target the outline for half star */
    fill: #e0e0e0;
    /* Or a lighter grey for the unfilled part */
}


.fb-rating .review-count {
    margin-left: 3px;
}

.fb-engagement-stats {
    font-size: 0.85em;
    color: #606770;
    margin-bottom: 15px;
    line-height: 1.4;
}

.fb-teaser-text {
    font-size: 0.9em;
    color: #1c1e21;
    margin-bottom: 20px;
    font-weight: 500;
}

.fb-cta-button {
    display: inline-block;
    width: 100%;
    /* Full width button */
    background-color: #e7f3ff;
    /* Light blue background */
    color: #1877f2;
    /* Facebook blue text */
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    border: 1px solid #ccd0d5;
    /* Subtle border */
}

.fb-cta-button:hover {
    background-color: #dde9f5;
    /* Slightly darker blue on hover */
}

/* About Us Content (Right Column) */
.about-us-content {
    padding: 10px 0;
    /* Add some vertical padding if needed, especially on mobile */
}

.about-headline {
    font-size: 2.25em;
    color: #573BAF;
    margin-bottom: 30px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.about-us-content p {
    font-size: 1em;
    color: #4b4f56;
    /* Slightly lighter than headline */
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-cta-button {
    display: inline-block;
    background-color: #573BAF;
    /* Consistent purple from other CTAs */
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    /* Match FB button radius or make distinct */
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    /* Space above button */
}

.about-cta-button:hover {
    background-color: #7324bf;
    /* Darker purple */
}


/* Responsive Adjustments */
@media (min-width: 768px) {

    /* Tablet: Still stacked, but maybe adjust card width or margins */
    .facebook-info-card {
        /* No change needed, will stack naturally with 1fr */
    }

    .about-us-content {
        /* No change needed */
    }
}

@media (min-width: 992px) {

    /* Desktop: Two columns */
    .fb-about-grid {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }
}


/** Footer Section **/
/* General Styles */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f8f9fa;
}

/* Bootstrap light grey */
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #545b62;
    border-color: #545b62;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary.active {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.tab-content&gt;.tab-pane {
    display: none;
}

.tab-content&gt;.active {
    display: block;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-text {
    margin-top: 0;
    margin-bottom: 1rem;
}


/* Culinary Menu Section */
.culinary-menu-section .culinary-tab-buttons .culinary-tab-button {
    margin: 0 5px;
}

.culinary-menu-section .culinary-tab-panel .row {
    align-items: center;
}

.culinary-menu-section .culinary-item-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 350px;
    margin-bottom: 1rem;
}

.culinary-menu-section .culinary-item-list h4 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.culinary-menu-section .culinary-item-list ul {
    list-style: none;
    padding-left: 0;
}

.culinary-menu-section .culinary-item-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #eee;
}

.culinary-menu-section .culinary-item-list li:last-child {
    border-bottom: none;
}



@media (max-width: 767.98px) {

    .culinary-items-list {
        max-height: 100%;
    }
    .culinary-item {
        width: 100%;
    }
    .culinary-tabs-nav {
        justify-content: center;
        margin-bottom: 10px;
    }
    .culinary-tab-button{
        font-size: 14px;
    }
}

/* Event Design Gallery Section */
.event-design-gallery-section .gallery-filter-buttons-container .gallery-filter-button {
    margin: 0 5px;
}

.event-design-gallery-section .gallery-item .card {
    height: 100%;
}

/* Ensure cards in a row have same height */
.event-design-gallery-section .gallery-item.hidden-item {
    display: none;
}

.event-design-gallery-section .gallery-item.filtered-out {
    display: none;
}

/* For filtering */
.event-design-gallery-section .see-more-gallery-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.event-design-gallery-section .see-more-gallery-link:hover {
    text-decoration: underline;
    background-color: rgba(0, 123, 255, 0.1);
}

@media (max-width: 575.98px) {

    /* Small devices (landscape phones, less than 576px) */
    .event-design-gallery-section .gallery-grid .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {

    /* Medium devices (tablets, less than 768px) */
    .event-design-gallery-section .gallery-grid .gallery-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/* Client Testimonials Section */
.client-testimonials-section .testimonial-card-col {
    display: flex;
}

/* For equal height cards */
.client-testimonials-section .testimonial-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Ensure card takes full col width */
}

.client-testimonials-section .star-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.client-testimonials-section .testimonial-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.client-testimonials-section .testimonial-client strong {
    color: #333;
}

.client-testimonials-section .testimonial-event {
    font-size: 0.9em;
    color: #777;
}

.client-testimonials-section .read-more-reviews-link {
    color: #A88BFF;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-style: italic;
}

.client-testimonials-section .read-more-reviews-link:hover {
    color: #7324bf;
    text-decoration: underline;
}

@media (max-width: 991.98px) and (min-width: 768px) {

    /* Tablets */
    .client-testimonials-section .testimonial-card-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {

    /* Mobile */
    .client-testimonials-section .testimonial-card-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Facebook Info + About Us Section */
.facebook-about-us-section .facebook-info-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Contains floated elements or margins */
}

.facebook-about-us-section .fb-card-header {
    background-color: #f0f2f5;
    /* Light grey, similar to FB */
    padding: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.facebook-about-us-section .fb-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.facebook-about-us-section .fb-page-name {
    font-weight: bold;
    color: #1877f2;
    /* FB Blue */
    text-decoration: none;
}

.facebook-about-us-section .fb-page-name:hover {
    text-decoration: underline;
}

.facebook-about-us-section .fb-card-body {
    padding: 20px;
}

.facebook-about-us-section .fb-followers {
    font-size: 1.1em;
    color: #333;
}

.facebook-about-us-section .fb-card-body hr {
    margin: 15px 0;
}

.facebook-about-us-section .fb-ratings {
    margin: 10px 0;
}

.facebook-about-us-section .fb-ratings .star-rating {
    color: #ffc107;
}

.facebook-about-us-section .fb-stats {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
    display: flex;
    justify-content: space-around;
}

.facebook-about-us-section .fb-stats li {
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

.facebook-about-us-section .fb-stats li strong {
    display: block;
    font-size: 1.2em;
    color: #333;
}

.facebook-about-us-section .fb-teaser-text {
    font-size: 0.95em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.facebook-about-us-section .fb-card-footer {
    padding: 15px;
    background-color: #f0f2f5;
    text-align: center;
    border-top: 1px solid #ddd;
}

.facebook-about-us-section .fb-visit-btn {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
    width: 100%;
}

.facebook-about-us-section .fb-visit-btn:hover {
    background-color: #166fe5;
    border-color: #166fe5;
}

.facebook-about-us-section .about-us-content .about-us-heading {
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
}

.facebook-about-us-section .about-us-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.facebook-about-us-section .about-us-cta-btn {
    margin-top: 1rem;
}

@media (max-width: 991.98px) {

    /* Stack columns on tablets and below */
    .facebook-about-us-section .row&gt;div {
        margin-bottom: 2rem;
    }

    .facebook-about-us-section .row&gt;div:last-child {
        margin-bottom: 0;
    }
}

/* Full-Width Call-To-Action (CTA) Section */
.full-width-cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(/img/slider/bg-menu-catering-event-styling-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    /* Fixed height */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.full-width-cta-section .container {
    width: 970px;
}

.full-width-cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.full-width-cta-section .cta-heading {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.full-width-cta-section .cta-subtext {
    font-size: 18px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.full-width-cta-section .cta-primary-btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.full-width-cta-section .cta-secondary-text {
    font-size: 1rem;
}

.full-width-cta-section .cta-secondary-text a {
    color: #ffc107;
    /* A bright color for links */
    text-decoration: none;
}

.full-width-cta-section .cta-secondary-text a:hover {
    text-decoration: underline;
    color: #fff;
}

@media (max-width: 767.98px) {
    .full-width-cta-section {
        height: auto;
        min-height: 350px;
    }

    /* Adjust height for mobile */
    .full-width-cta-section .cta-heading {
        font-size: 2.25em;
    }

    .full-width-cta-section .cta-subtext {
        font-size: 16px;
    }

    .full-width-cta-section .cta-primary-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .full-width-cta-section .cta-heading {
        font-size: 2.5rem;
    }

    .full-width-cta-section .cta-secondary-text {
        font-size: 0.9rem;
    }
}

/* Get in Touch Section */
.get-in-touch-section {
    background-color: #fdfdfd; /* Very light grey, close to white */
    padding: 60px 0;
}

.get-in-touch-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.get-in-touch-section .section-header h2.main-heading {
    font-size: 36px; /* Consistent with other main headings */
    font-weight: bold;
    color: #573BAF;
    font-family: 'Playfair', sans-serif;
    margin-bottom: 15px;
}

.get-in-touch-section .section-header p.section-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto; /* Adjusted bottom margin */
}

.get-in-touch-section .mb-5 {
    margin-bottom: 3rem !important; /* Ensure spacing for section header */
}

.get-in-touch-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: stretch; /* Make columns of equal height if they have different content */
}

.get-in-touch-col {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px; /* Default spacing for stacked view */
    box-sizing: border-box;
}

.map-col {
    flex: 1 1 50%; /* Allow growing and shrinking, base 50% */
    max-width: 50%; /* Desktop: 50% width */
    display: flex; /* To ensure iframe stretches if map-col has padding/border */
}

.map-col iframe {
    width: 100%;
    min-height: 450px; /* Match height from screenshot */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none; /* Remove default iframe border */
}

.contact-info-col {
    flex: 1 1 50%; /* Allow growing and shrinking, base 50% */
    max-width: 50%; /* Desktop: 50% width */
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background-color: #fff;
    padding: 30px; /* Increased padding */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Softer shadow */
    height: 100%; /* Make card take full height of its column */
    border: 1px solid #eee; /* Subtle border */
    display: flex;
    flex-direction: column;
}

.contact-info-card h3 {
    font-size: 22px; /* Adjusted size */
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif; /* Match other headings if needed */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px; /* Increased spacing */
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.2rem; /* Icon size */
    color: #573BAF; /* Use a theme color */
    margin-right: 15px;
    padding-top: 2px; /* Align with first line of text */
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item div strong {
    font-size: 16px; /* Adjusted size */
    font-weight: 600;
    color: #333;
    margin-bottom: 5px; /* Space between title and content */
    display: block;
}

.contact-item div,
.contact-item div a {
    font-size: 15px; /* Adjusted size */
    color: #555;
    line-height: 1.6;
}

.contact-item div a {
    text-decoration: none;
    color: #573BAF; /* Theme color for links */
    transition: color 0.3s ease;
}

.contact-item div a:hover {
    text-decoration: underline;
    color: #A88BFF; /* Lighter theme color on hover */
}

.book-now-cta {
    padding-top: 20px; /* Adjusted spacing */
    text-align: center;
}

.book-now-cta p {
    font-size: 18px; /* Adjusted size */
    color: #444;
    margin-bottom: 8px; /* Reduced margin */
}

.book-now-cta .book-date-link {
    font-size: 20px; /* Adjusted size */
    font-weight: bold;
    color: #E84A5F; /* Accent color, can be adjusted */
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px; /* Reduced margin */
    transition: text-decoration 0.3s ease;
}

.book-now-cta .book-date-link:hover {
    text-decoration: underline;
}

.book-now-cta .book-date-support {
    font-size: 13px; /* Adjusted size */
    color: #555;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Adjustments for Get in Touch Section */
@media (max-width: 991.98px) { /* Tablet */
    .map-col,
    .contact-info-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-info-col {
        margin-top: 0; /* Remove top margin when stacked */
    }

    .map-col {
        margin-bottom: 30px; /* Ensure space when stacked above contact info */
    }

    .map-col iframe {
        min-height: 350px;
    }

    .get-in-touch-row {
        align-items: normal; /* Reset stretch for stacked items */
    }
    .contact-info-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) { /* Mobile */
    .get-in-touch-section {
        padding: 40px 0;
    }
    .get-in-touch-section .section-header h2.main-heading {
        font-size: 28px;
    }

    .get-in-touch-section .section-header p.section-description {
        font-size: 15px;
        margin-bottom: 30px !important;
    }

    .get-in-touch-section .container {
        padding: 0 10px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-info-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-item div strong {
        font-size: 15px;
    }

    .contact-item div,
    .contact-item div a {
        font-size: 14px;
    }

    .map-col iframe {
        min-height: 300px;
    }

    .book-now-cta p {
        font-size: 16px;
    }

    .book-now-cta .book-date-link {
        font-size: 18px;
    }
    .get-in-touch-section .mt-5 {
         margin-top: 2rem !important;
    }
}

/* Footer Section */
.page-footer {
    background-color: #2c3e50;
    /* Dark background */
    color: #ecf0f1;
    /* Light text */
    padding: 50px 0 0;
    /* Padding top, bottom will be handled by footer-bottom */
    font-size: 14px;
}

.page-footer .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    /* Space before copyright */
}

.footer-col {
    padding: 0 15px;
    /* Gutter */
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.3;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #A88BFF;
    /* Accent color from Get In Touch */
}

.footer-col.brand-info p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #bdc3c7;
    /* Slightly muted paragraph text */
}

.social-icons .social-icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: #34495e;
    /* Slightly different shade */
    color: #ecf0f1;
    margin-right: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon span {
    /* Placeholder for actual icon content */
    font-weight: bold;
    font-size: 0.8em;
}

.social-icons .social-icon:hover {
    background-color: #A88BFF;
    /* Accent color on hover */
    transform: scale(1.1);
}

.quick-links ul,
.services-links ul {
    list-style: none;
    padding-left: 0;
}

.quick-links ul li,
.services-links ul li {
    margin-bottom: 10px;
}

.quick-links ul li a,
.services-links ul li a,
.contact-us p a {
    color: #bdc3c7;
    /* Muted link color */
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.quick-links ul li a:hover,
.services-links ul li a:hover,
.contact-us p a:hover {
    color: #fff;
    /* Brighter on hover */
    padding-left: 5px;
    /* Subtle indent on hover */
}

.footer-col.contact-us p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col.contact-us .footer-icon {
    margin-right: 8px;
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #34495e;
    /* Darker divider */
    margin: 0 auto 20px;
    /* Margin above copyright text */
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #95a5a6;
    /* Very muted for copyright */
}

/* Responsive behavior for Footer */
/* Desktop default (4 columns) */
.footer-col.brand-info {
    flex: 1 1 30%;
    max-width: 30%;
    min-width: 250px;
}

.footer-col.quick-links,
.footer-col.services-links,
.footer-col.contact-us {
    flex: 1 1 20%;
    /* Adjusted for better spacing with 4 columns */
    max-width: 23%;
    /* Max width to prevent overlap with space-between */
    min-width: 180px;
    /* Minimum width before wrapping */
}


/* Thank You Page */
.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.thank-you-content h4{
    color: #A88BFF;
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-content h2{
    color: #8a2be2;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.thank-you-content p{
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}


.contact-area .section-title h2{
    color: #8a2be2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-area h3{
    color: #8a2be2;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 16px;
}

.package-content h2 {
    color: #A88BFF;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
}

.package-content h4 {
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.package-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.package-content p {
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

.package-content .default-btn { margin-top: 10px; }

/* Tablet: 2x2 grid */
@media (max-width: 991.98px) {

    .footer-col.brand-info,
    .footer-col.quick-links,
    .footer-col.services-links,
    .footer-col.contact-us {
        flex: 1 1 48%;
        /* Two columns per row, with some gap */
        max-width: 48%;
        min-width: initial;
        /* Reset min-width */
    }

    .footer-col.brand-info {
        order: 1;
    }

    .footer-col.quick-links {
        order: 2;
    }

    .footer-col.services-links {
        order: 3;
    }

    .footer-col.contact-us {
        order: 4;
    }
}

/* Mobile: Single column */
@media (max-width: 767.98px) {

    .footer-col.brand-info,
    .footer-col.quick-links,
    .footer-col.services-links,
    .footer-col.contact-us {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
        /* Center text in mobile view */
    }

    .footer-col h4::after {
        /* Center the heading underline */
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        /* Center social icons */
        text-align: center;
    }

    .footer-col.contact-us p {
        /* Center contact items */
        justify-content: center;
        /* For cases where icon and text might wrap and need centering */
        display: flex;
        flex-direction: column;
        /* Stack icon and text if needed, or align items if on same line */
        align-items: center;
    }

    .footer-col.contact-us p .footer-icon {
        margin-bottom: 5px;
        /* Space icon from text when stacked */
    }
}</pre></body></html>