:root {
    --leafy-green: #2D5A27;
    --vibrant-pink: #E91E63;
    --light-pink-bg: #FFF5F7;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Poppins', sans-serif; background: #fff; }

/* ===== HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* TOP BAR */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2D5A27;
}

.brand-logo span {
    color: #E91E63;
}

/* CALL BUTTON */
.call-circle {
    width: 40px;
    height: 40px;
    background: #E91E63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ACTION BAR */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

/* HAMBURGER */
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* CONTACT BUTTON */
.btn-contact {
    background: #E91E63;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    font-size: 13px;
}

/* ===== SIDEBAR ===== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    padding: 20px;
    transition: 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

/* SIDEBAR HEADER */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#close-sidebar {
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

/* LINKS */
.side-links {
    list-style: none;
    margin-top: 30px;
}

.side-links li {
    margin-bottom: 20px;
}

.side-links a, .drop-btn {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: block;
}

/* DROPDOWN */
.dropdown ul {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.dropdown.active ul {
    display: block;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    top: 0;
    left: 0;
    display: none;
    z-index: 9990;
}

/* MOBILE */
@media(max-width:768px){
    .btn-contact {
        font-size: 12px;
        padding: 6px 12px;
    }
}







/* DESKTOP NAV */
.desktop-nav {
    display: none;
    list-style: none;
    gap: 25px;
}

.desktop-nav li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* ===== DESKTOP VIEW ===== */
@media (min-width: 992px) {

    /* SHOW NAV */
    .desktop-nav {
        display: flex;
        align-items: center;
    }

    /* HIDE HAMBURGER */
    .menu-trigger {
        display: none;
    }

    /* ALIGN PROPERLY */
    .action-bar {
        justify-content: space-between;
    }
}







/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 140px;
    text-align: center;
    background: #fff;
}

/* Tagline */
.hero-slang {
    color: var(--vibrant-pink);
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.hero-title {
    color: var(--leafy-green);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* Stats */
.hero-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 35px;
}

.v-divider { color: #ddd; }
.rating-text { 
    font-weight: 600; 
    color: #222; 
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    width: 95%;
    max-width: 850px;
    margin: 25px auto;
    border-radius: 18px;
    overflow: hidden;
    
    /* 🔥 Premium shadow */
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
}

/* ✨ Smooth zoom effect */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

/* ===== ARROWS ===== */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}

.nav-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    color: var(--vibrant-pink);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;

    /* smoother look */
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.nav-btn:hover {
    transform: scale(1.1);
}

/* ===== DESKTOP IMPROVEMENT (NO LAYOUT CHANGE) ===== */
@media (min-width: 768px) {

    .hero-section {
        padding-top: 170px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-slang {
        font-size: 1.6rem;
    }

    .hero-stats-bar {
        font-size: 1.05rem;
    }

    .slider-wrapper {
        max-width: 1000px;
        border-radius: 20px;
    }
}

/* ===== LARGE SCREEN ===== */
@media (min-width: 1200px) {

    .hero-title {
        font-size: 4.2rem;
    }

    .slider-wrapper {
        max-width: 1100px;
    }
}

/* ===== HERO LOGO ===== */
.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.hero-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;

    /* ✨ premium feel */
    border-radius: 50%;
    padding: 8px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    transition: 0.3s;
}

/* subtle hover */
.hero-logo img:hover {
    transform: scale(1.08);
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {

    .hero-logo img {
        width: 90px;
        height: 90px;
    }
}



/* Brand Colors */
:root {
    --leafy-green: #2D5A27;
    --vibrant-pink: #E91E63;
    --soft-bg: #FFF9FA; /* Matches the screenshot's warm tone */
}

.services-section {
    position: relative;
    padding: 80px 0 0; /* Bottom padding 0 so wave touches edge */
    background-color: var(--soft-bg);
    text-align: center;
    overflow: hidden;
}

/* --- THE ROSES (CORNERS) --- */
.floral-corner {
    position: absolute;
    width: 280px;
    height: 280px;
    background-image: url('iages/corner.png'); /* Replace with your specific rose png */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}

.top-left { top: -30px; left: -30px; }
.top-right { top: -30px; right: -30px; transform: scaleX(-1); }

/* --- HEADER & TITLE --- */
.services-main-container {
    position: relative;
    z-index: 5; /* Keeps content above the roses */
}

.leaf-divider {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--leafy-green);
    font-size: 2.2rem;
    margin-bottom: 60px;
}

/* --- THE 5 COLUMN GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacked for Mobile */
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px 100px; /* Padding-bottom for wave space */
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr); /* 5 items in a single line on Desktop */
        gap: 20px;
    }
}

/* SERVICE CARD STYLING */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.08);
    border: 1px solid #fce4ec;
}

.icon-circle i {
    font-size: 2.2rem;
    color: var(--vibrant-pink);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--leafy-green);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    max-width: 200px;
}

/* --- THE PINK WAVE --- */
.pink-wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35px;
    line-height: 0;
}

.pink-wave-divider svg {
    width: 100%;
    height: 100%;
    fill: var(--vibrant-pink);
}

/* MOBILE ROSES ADJUSTMENT */
@media (max-width: 768px) {
    .floral-corner { width: 150px; height: 150px; opacity: 0.3; }
    .section-title { font-size: 1.8rem; }
}




.about-section {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.main-title {
    font-family: 'Playfair Display', serif;
    color: var(--leafy-green);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* MOBILE FIRST: Hide side images */
.desktop-only {
    display: none;
}

.main-pill-img img {
    width: 90%;
    max-width: 400px;
    border-radius: 150px 150px 20px 20px; /* Pill Shape */
    border: 1px solid #eee;
    padding: 8px;
    margin: 20px auto;
}

/* TEXT STYLES (MOBILE) */
.about-intro, .about-services {
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #666;
}

.heart-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.heart-list li {
    margin-bottom: 10px;
    color: #444;
}

.heart-list i { color: var(--vibrant-pink); margin-right: 10px; }

/* --- DESKTOP LAYOUT (1024px+) --- */
@media (min-width: 1024px) {
    .desktop-only {
        display: block; /* Show side images on Desktop */
    }

    .about-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        text-align: left;
    }

    /* Positioning the 3-Image Group */
    .about-visuals {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-pill-img {
        z-index: 2;
        width: 320px;
    }

    .side-img {
        position: absolute;
        width: 220px;
        height: 220px;
        z-index: 1;
    }

    .side-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        border: 1px solid #eee;
        padding: 5px;
        background: #fff;
    }

    .left-circle {
        top: 10%;
        left: 0;
    }

    .right-circle {
        bottom: 10%;
        right: 0;
    }

    .main-title { font-size: 3rem; }
}




/* --- DESKTOP TEXT ENHANCEMENTS (1024px+) --- */
@media (min-width: 1024px) {
    
    .main-title {
        font-size: 3.5rem; /* Large, elegant heading */
        margin-bottom: 60px;
    }

    .about-intro p {
        font-size: 1.25rem; /* Larger body text for the intro */
        line-height: 1.9;
        max-width: 900px; /* Prevents text from stretching too wide */
        margin: 0 auto 50px;
    }

    .about-services h3 {
        font-size: 2.2rem; /* Stronger service heading */
        margin-bottom: 25px;
    }

    .about-services p {
        font-size: 1.15rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* Making the heart list more prominent on desktop */
    .heart-list li {
        font-size: 1.1rem;
        margin-bottom: 15px;
        gap: 15px;
    }

    .heart-list i {
        font-size: 0.9rem; /* Slightly larger hearts */
    }

    /* Adjusting the grid gap so text doesn't touch the images */
    .about-grid {
        gap: 80px; 
        padding: 0 50px;
    }
}









.process-section {
    position: relative;
    background-color: var(--vibrant-pink);
    /* Adding the subtle floral pattern from the screenshot */
    background-image: url('https://www.transparenttextures.com/patterns/natural-paper.png'); 
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

/* THE TOP WAVE */
.process-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    line-height: 0;
}

.process-wave-top svg {
    width: 100%;
    height: 100%;
    fill: #fff; /* Matches the section above it */
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 10px 0 60px;
}

/* RESPONSIVE GRID */
.process-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column for Phone */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 for Tablets */
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 in a line for Desktop */
    }
}

/* STEP STYLING */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--vibrant-pink);
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 220px;
    opacity: 0.9;
}

.button-wrapper {
    margin-top: 50px;
    padding-bottom: 20px;
}

.btn-book-event {
    position: relative;
    display: inline-block;
    padding: 12px 35px;
    background-color: #fff;
    color: var(--vibrant-pink);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    z-index: 1;
}

/* THE OFFSET BORDER EFFECT */
.btn-book-event::after {
    content: '';
    position: absolute;
    top: 5px;   /* Shifts the border down */
    left: 5px;  /* Shifts the border to the right */
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    z-index: -1;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.btn-book-event:hover {
    background-color: transparent;
    color: #fff;
}

.btn-book-event:hover::after {
    top: 0;
    left: 0;
}



.intro-section {
    padding: 100px 20px;
    /* Soft floral background for the whole section */
    background-image: url('https://www.transparenttextures.com/patterns/cream-pixels.png'), 
                      linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
                      url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?q=80&w=1000');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-frame {
    position: relative;
    max-width: 1100px;
    width: 100%;
    border: 1px solid #333; /* The thin dark frame from the image */
    padding: 60px 40px;
    background-color: rgba(255, 255, 255, 0.85); /* Slight transparency */
    text-align: center;
}

/* THE TOP BOUQUET */
.frame-bouquet {
    position: absolute;
    top: -45px; /* Pulls it up to sit on the line */
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 10;
}

.frame-bouquet img {
    width: 100%;
    display: block;
}

/* TYPOGRAPHY */
.intro-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #222;
    margin: 20px 0 10px;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
}

.intro-question {
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 15px;
    }
    
    .intro-frame {
        padding: 40px 20px;
        border-width: 1px;
    }
    
    .frame-bouquet {
        width: 180px;
        top: -30px;
    }
    
    .intro-main-title {
        font-size: 1.8rem;
    }
    
    .intro-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}




.pricing-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.pricing-card {
    background: #FFF5F7; /* The soft pink background from the image */
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #fce4ec;
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.pricing-card:hover .card-img img {
    transform: scale(1.1); /* Subtle zoom effect */
}

.card-info {
    padding: 30px 20px;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.starting-label {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 30px;
}

/* THE OFFSET PINK BUTTON */
.btn-wrapper {
    position: relative;
    display: inline-block;
}

.btn-pink-offset {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--vibrant-pink);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    border: 1px solid var(--vibrant-pink);
}

.btn-pink-offset::after {
    content: '';
    position: absolute;
    top: 4px;   /* The offset border */
    left: 4px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--vibrant-pink);
    z-index: 1;
}

.btn-pink-offset:hover {
    background-color: #fff;
    color: var(--vibrant-pink);
}






.contact-section {
    background-color: #fff;
    overflow: hidden;
}

.contact-container {
    display: flex;
    flex-direction: column-reverse; /* MOBILE FIRST: Form on top, Sidebar below */
}

/* SIDEBAR (Pink Area) */
.contact-sidebar {
    background-color: #E91E63; /* Your Vibrant Pink */
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i { color: #E91E63; font-size: 1.5rem; }

.contact-block { margin-bottom: 40px; }
.contact-label { font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }

.contact-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* FORM AREA (White Area) */
.contact-form-area {
    padding: 60px 20px;
    background: url('https://www.transparenttextures.com/patterns/natural-paper.png');
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
}

.booking-form input, .booking-form textarea {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 25px;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
}

.input-row { display: flex; flex-direction: column; }

.submit-container {
    text-align: right;
    margin-top: 20px;
}

.btn-submit-offset {
    background: #E91E63;
    color: #fff;
    border: none;
    padding: 12px 45px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000; /* Subtle offset shadow like the image */
}

/* --- DESKTOP VIEW (1024px+) --- */
@media (min-width: 1024px) {
    .contact-container {
        flex-direction: row; /* Sidebar Left, Form Right */
        min-height: 800px;
    }

    .contact-sidebar { flex: 0.7; padding-top: 100px; }
    .contact-form-area { flex: 1.3; padding: 100px 80px; }

    .input-row {
        flex-direction: row;
        gap: 30px;
    }

    .sidebar-title { font-size: 2.8rem; }
    .form-header h2 { font-size: 3rem; }
}








.gallery-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2D5A27;
    margin-bottom: 50px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

/* THE SLIDER */
.gallery-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 0 20px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.gallery-slider::-webkit-scrollbar { display: none; }

/* INDIVIDUAL SLIDE */
.wedding-slide {
    position: relative;
    flex: 0 0 100%; /* Mobile: 1 image */
    height: 450px;
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
}

.wedding-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.wedding-slide:hover img { transform: scale(1.1); }

/* NAVIGATION ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #E91E63; /* Pink */
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .wedding-slide {
        flex: 0 0 calc(25% - 12px); /* Desktop: 4 images */
        height: 550px;
    }
}

/* TABLET (768px+) */
@media (min-width: 768px) and (max-width: 1023px) {
    .wedding-slide { flex: 0 0 calc(50% - 10px); }
}





.real-weddings-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0 40px;
}

/* SLIDER CONTAINER */
.wedding-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.wedding-slider-container::-webkit-scrollbar { display: none; }

/* INDIVIDUAL SLIDE - MOBILE (Stacked) */
.wedding-slide-item {
    display: flex;
    flex-direction: column;
    min-width: 100%;
    scroll-snap-align: start;
    text-align: left;
}

.slide-image-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content-box {
    background: #FFF5F7; /* Match soft pink from your screenshot */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.slide-content-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.slide-content-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

/* DESKTOP (Overlap View) */
@media (min-width: 1024px) {
    .wedding-slide-item {
        flex-direction: row;
        align-items: center;
        min-width: 85%; /* Shows a portion of the next image */
        padding-left: 5%;
        gap: 0;
    }

    .slide-image-wrapper {
        width: 60%;
        height: 550px;
        z-index: 1;
    }

    .slide-content-box {
        width: 40%;
        margin-left: -10%; /* THE DESKTOP OVERLAP */
        z-index: 2;
        padding: 60px;
    }

    .section-title { font-size: 3.2rem; }
}

/* ARROW BUTTONS */
.slider-navigation {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.slide-arrow {
    background: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background: #E91E63;
    color: #fff;
    border-color: #E91E63;
}




/* Footer Styles */
.site-footer {
    background-color: #111;
    color: #fff;
    width: 100%;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(0.4) invert(0.05); /* Modern, high-end map look */
    transition: filter 0.4s ease;
}

.map-wrapper iframe:hover {
    filter: grayscale(0);
}

.footer-main {
    padding: 80px 20px;
    background: #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand span {
    color: #E91E63; /* Your brand pink */
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li { margin-bottom: 12px; }

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #E91E63;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #E91E63;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #666;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3 {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}