@font-face {
    font-family: 'ThmanyahSans';
    src: url('thmanyahsans-Regular.woff2') format('woff2'),
         url('thmanyahsans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-outer: #d4b2b2; /* Matches the soft pink background */
    --bg-inner: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #d4b2b2; /* same as bg-outer for some accents */
    --accent: #e2caca;
    --font-heading: 'Tajawal', 'ThmanyahSans', 'Cormorant Garamond', serif;
    --font-body: 'Tajawal', 'ThmanyahSans', 'Montserrat', sans-serif;
    --font-arabic: 'Tajawal', 'ThmanyahSans', 'Noto Naskh Arabic', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.font-thmanyahsans {
    --font-heading: 'ThmanyahSans', 'Tajawal', 'Cormorant Garamond', serif;
    --font-body: 'ThmanyahSans', 'Tajawal', 'Montserrat', sans-serif;
    --font-arabic: 'ThmanyahSans', 'Tajawal', 'Noto Naskh Arabic', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-outer);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 200" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C70 50, 90 100, 50 200 C10 100, 30 50, 50 0" fill="none" stroke="white" stroke-width="0.3" opacity="0.4"/></svg>'),
        url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 200" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 Q60 50 50 100 Q40 150 50 200" fill="none" stroke="white" stroke-width="0.4" opacity="0.4"/></svg>');
    background-size: 30vw, 40vw;
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed;
}

/* Main Container */
.main-content {
    background-color: var(--bg-inner);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.08);
    position: relative;
    padding-bottom: 60px;
    z-index: 1;
}

/* Typography */
h1, h2, h3, .title, .section-title {
    font-family: var(--font-heading);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.subtitle, .subtitle-inline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    text-transform: lowercase;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0;
}

/* Header */
.header {
    background: var(--bg-inner);
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 50px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    width: 30px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.menu-icon span {
    width: 100%;
    height: 1px;
    background-color: var(--text-dark);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 1.1rem;
}

.btn-outline {
    text-decoration: none;
    color: var(--text-dark);
    padding: 8px 24px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}
.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

/* Language Toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.55;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.lang-toggle:hover {
    opacity: 1;
}

.lang-sep {
    opacity: 0.35;
    font-size: 0.6rem;
    transition: opacity 0.4s ease;
}

.lang-toggle .lang-en,
.lang-toggle .lang-ar {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
    font-weight: 400;
}

.lang-toggle .lang-en:hover,
.lang-toggle .lang-ar:hover {
    opacity: 0.7;
}

.lang-toggle.active-lang .lang-ar,
.lang-toggle:not(.active-lang) .lang-en {
    opacity: 1;
    font-weight: 600;
}

.lang-toggle .lang-en {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-toggle .lang-ar {
    font-family: var(--font-arabic);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* RTL / Arabic */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .lang-toggle .lang-en,
html[dir="rtl"] .lang-toggle .lang-ar {
    font-weight: 500;
}

html[dir="rtl"] body {
    font-family: var(--font-arabic), var(--font-body);
    font-weight: 400;
}

html[dir="rtl"] h1,
html[dir="rtl"] .hero .title {
    font-family: var(--font-arabic), var(--font-heading);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
}

html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .section-title {
    font-family: var(--font-arabic), var(--font-heading);
    font-weight: 700;
    letter-spacing: 0;
}

html[dir="rtl"] .hero .subtitle,
html[dir="rtl"] .subtitle-inline,
html[dir="rtl"] .subtitle-large,
html[dir="rtl"] .et-eyebrow,
html[dir="rtl"] #storiesSub {
    font-family: var(--font-arabic), var(--font-heading);
    font-weight: 500;
    letter-spacing: 0;
    font-style: normal;
}

html[dir="rtl"] .btn-outline,
html[dir="rtl"] .btn-oval,
html[dir="rtl"] .lang-toggle {
    font-family: var(--font-arabic), var(--font-body);
    font-weight: 700;
}

html[dir="rtl"] .logo,
html[dir="rtl"] .footer-brand {
    font-family: var(--font-arabic), var(--font-heading);
    font-weight: 500;
    letter-spacing: 0;
}

html[dir="rtl"] .et-num {
    font-family: var(--font-arabic);
    font-weight: 500;
}

html[dir="rtl"] p {
    font-family: var(--font-arabic), var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.9;
}

html[dir="rtl"] .hero-desc,
html[dir="rtl"] .signature,
html[dir="rtl"] .footer-contact-item a {
    font-family: var(--font-arabic), var(--font-body);
    font-weight: 500;
    letter-spacing: 0;
}

html[dir="rtl"] .hero .title {
    font-size: 4rem;
    margin-bottom: 40px;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-content,
html[dir="rtl"] .wedding-text,
html[dir="rtl"] .contact-form-wrapper {
    text-align: right;
}

html[dir="rtl"] .scroll-down .line {
    margin: 15px auto 0 0;
}

html[dir="rtl"] .footer-contact-item a {
    letter-spacing: 0;
}

html[dir="rtl"] .circ-name,
html[dir="rtl"] .circ-role,
html[dir="rtl"] .circ-desc {
    letter-spacing: 0;
}

/* Common Section */
.section {
    padding: 80px 60px;
    position: relative;
}

.flower-icon {
    color: var(--text-light);
    font-size: 2rem;
    position: absolute;
    opacity: 0.8;
}

.arch-frame {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    overflow: hidden;
}

.arch-frame-bottom {
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    overflow: hidden;
}

/* Buttons */
.btn-oval {
    display: inline-block;
    padding: 12px 60px;
    border: 1px solid var(--text-light);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
}
.btn-oval:hover {
    background: var(--text-light);
    color: white;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    margin-left: 20px;
    margin-bottom: -15px;
}

.hero .title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 80px;
}

.scroll-down {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.scroll-down .line {
    width: 60px;
    height: 1px;
    background-color: var(--text-light);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper .arch-frame {
    width: 85%;
    aspect-ratio: 0.7;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-wrapper .flower-icon {
    top: -20px;
    left: 0;
}

/* --- ABOUT SECTION --- */
.about {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 0 40px;
}

.about-image {
    flex: 0.8;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
}

.about-content .section-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-content .subtitle-inline {
    display: block;
    margin-bottom: -15px;
}

.about-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 20px;
    max-width: 90%;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.5rem;
    margin-top: 30px;
}

/* --- WEDDING INFO SECTION --- */
.wedding-info {
    position: relative;
    margin-top: 60px;
}

.wedding-text {
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.wedding-text .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.wedding-text p {
    font-size: 0.85rem;
    color: #555;
}

.wedding-text .flower-icon {
    top: 0;
    right: -40px;
}

.wedding-images {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.w-img-1 {
    width: 40%;
    margin-top: 80px;
}

.w-img-2 {
    width: 35%;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.center-btn-wrapper {
    text-center: center;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* --- HORIZONTAL SCROLL CAROUSEL --- */
.wedding-carousel {
    height: 300vh; /* space to scroll */
    position: relative;
    padding: 0;
}
.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-inner);
}
.bride-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.bride-header-container .section-title {
    font-size: 3rem;
}
.subtitle-large {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    font-size: 4rem;
    opacity: 0.4;
    font-weight: 300;
    line-height: 1;
}
.flower-icon.decorative {
    position: absolute;
    top: 0;
    right: 20%;
    opacity: 0.5;
}
.sticky-container {
    width: 100%;
    overflow: hidden;
}
.sticky-track {
    display: flex;
    gap: 30px;
    padding: 0 50vw; /* center first image initially */
    width: max-content;
    will-change: transform;
}
.carousel-slide {
    width: 400px;
    height: 600px;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.85) grayscale(15%);
}
.carousel-slide:hover img {
    transform: scale(1.08);
    filter: brightness(1.05) grayscale(0%);
}

/* --- SPLIT PARALLAX GALLERY --- */
.split-parallax-gallery {
    padding-top: 80px;
    padding-bottom: 60px;
    overflow: hidden;
}
.grid-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.grid-header .section-title {
    font-size: 2.5rem;
}

.split-gallery-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    padding: 0 40px;
}

.gallery-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    will-change: transform;
}

/* Right column starts lower by ~1/3 of card height */
.right-col {
    margin-top: 30vh;
}

.gallery-card {
    width: 100%;
    height: 65vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    will-change: transform, filter, opacity;

    /* Start invisible — revealed by IntersectionObserver */
    opacity: 0;
    transform: translateY(80px) scale(0.96);
    filter: grayscale(30%) brightness(0.7);

    /* Smooth cinematic reveal */
    transition:
        opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s ease;
}

/* Fade-in state */
.gallery-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: grayscale(10%) brightness(0.88);
}

/* Hover: full color, lift, glow */
.gallery-card:hover {
    filter: grayscale(0%) brightness(1.08) contrast(1.05);
    transform: scale(1.035) translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    z-index: 10;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .split-gallery-wrapper { gap: 12px; padding: 0 15px; }
    .gallery-col { width: 50%; gap: 15px; }
    .gallery-card { height: 40vh; }
    .right-col { margin-top: 20vh; }
}

/* --- SERVICES SECTION --- */
.services-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-header .section-title {
    font-size: 2.5rem;
}
.services-header .subtitle-inline {
    display: block;
    margin-top: -10px;
}
.services-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.service-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    transition: var(--transition-smooth);
}
.service-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transform: translateY(-5px);
}
.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.service-item p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}
.service-item .price {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* --- BRANDS RIBBON --- */
.brands-ribbon { padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.brands-container { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.brands-text { text-align: center; }
.small-text { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-light); }
.brand-name-wrapper { position: relative; height: 40px; overflow: hidden; margin-top: 10px; }
.active-brand-name { font-size: 2rem; font-family: var(--font-heading); display: inline-block; transition: transform 0.3s, opacity 0.3s; }
.brands-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.brand-btn { padding: 15px; border-radius: 15px; border: 1px solid transparent; background: transparent; color: var(--text-light); cursor: pointer; transition: var(--transition-smooth); }
.brand-btn:hover, .brand-btn.active { border-color: rgba(0,0,0,0.1); color: var(--text-dark); background: rgba(0,0,0,0.02); transform: translateY(-5px); }
.brand-btn svg { width: 30px; height: 30px; }

/* --- TEAM & STUDIO CIRCULAR --- */
.team-studio { overflow: hidden; padding-top: 60px; padding-bottom: 100px; border-top: 1px solid rgba(0,0,0,0.05); }
.circular-carousel { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.circular-images { position: relative; width: 100%; height: 400px; perspective: 1000px; display: flex; justify-content: center; align-items: center; }
.circ-img { position: absolute; width: 280px; height: 380px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); transition: all 0.8s cubic-bezier(0.4, 2, 0.3, 1); opacity: 0; pointer-events: none; }
.circ-img.active { z-index: 3; opacity: 1; pointer-events: auto; transform: translateX(0) scale(1) rotateY(0deg); }
.circ-img.left { z-index: 2; opacity: 0.85; transform: translateX(-160px) scale(0.92) rotateY(10deg) translateZ(-80px); }
.circ-img.right { z-index: 2; opacity: 0.85; transform: translateX(160px) scale(0.92) rotateY(-10deg) translateZ(-80px); }
.circular-content { text-align: center; max-width: 500px; position: relative; z-index: 4; }
.circ-name { font-size: 2.5rem; font-family: var(--font-heading); margin-bottom: 5px; }
.circ-role { color: var(--text-light); font-style: italic; margin-bottom: 15px; font-size: 1.2rem; }
.circ-desc { font-size: 0.95rem; color: #555; }
.circ-controls { display: flex; gap: 15px; justify-content: center; margin-top: 25px; }
.circ-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); background: transparent; cursor: pointer; transition: all 0.3s; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.circ-btn:hover { background: var(--text-dark); color: white; border-color: var(--text-dark); }

/* --- STORY TESTIMONIALS --- */
.story-testimonials { text-align: center; padding-top: 60px; padding-bottom: 60px; border-top: 1px solid rgba(0,0,0,0.05); }
.story-avatars { display: flex; justify-content: center; gap: 30px; margin-top: 40px; }
.story-avatar-btn { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: transform 0.2s; }
.story-avatar-btn:hover { transform: scale(1.05); }
.avatar-ring { width: 80px; height: 80px; border-radius: 50%; padding: 3px; background: #e0e0e0; position: relative; }
.avatar-ring.unread { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.avatar-ring img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--bg-inner); }
.story-avatar-btn span { font-size: 0.8rem; font-weight: 500; font-family: var(--font-body); }
.story-modal { position: fixed; inset: 0; z-index: 1000; display: flex; justify-content: center; align-items: center; }
.story-modal.hidden { display: none; }
.story-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(5px); }
.story-content-box { position: relative; width: 100%; max-width: 400px; height: 85vh; max-height: 800px; background: #111; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.story-progress-bar { display: flex; gap: 5px; padding: 15px 10px; position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.progress-track { flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: white; width: 0%; transition: width 0.05s linear; }
.story-header { position: absolute; top: 25px; left: 0; right: 0; z-index: 10; display: flex; align-items: center; padding: 10px 15px; gap: 10px; color: white; }
.story-current-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.5); }
.story-current-name { font-size: 0.9rem; font-weight: 500; flex: 1; text-align: left; }
.story-controls-header { display: flex; gap: 15px; }
.story-pause, .story-close { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.story-slides { flex: 1; position: relative; }
.story-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.story-slide.active { opacity: 1; pointer-events: auto; }
.story-slide img { width: 100%; height: 100%; object-fit: cover; }
.story-text-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 20px 30px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: white; text-align: left; }
.story-text-overlay h3 { font-size: 1.5rem; margin-bottom: 10px; font-family: var(--font-heading); }
.story-text-overlay p { font-size: 0.9rem; line-height: 1.5; font-style: italic; opacity: 0.9; }

/* --- CONTACT SECTION --- */
.contact {
    display: flex;
    align-items: stretch;
    gap: 60px;
    margin-top: 40px;
    padding-bottom: 0;
}

.contact-form-wrapper {
    flex: 1;
    padding: 40px 0;
}

.contact-form-wrapper .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-form-wrapper p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 40px;
}

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

.input-group {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 5px;
}

.input-group label {
    width: 80px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-dark);
}

.submit-btn {
    align-self: flex-start;
    margin-top: 30px;
}

.contact-image {
    flex: 0.8;
    position: relative;
    margin-bottom: 0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image .flower-icon {
    bottom: 20px;
    left: -30px;
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    letter-spacing: 3px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.footer-contact {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.footer-contact-item a {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--text-light);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social-link:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-3px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =========================================
   EVENT TYPES SECTION
   ========================================= */
.event-types {
    position: relative;
    background: var(--bg-inner);
    padding-top: 40px;
    padding-bottom: 40px;
}

.et-intro {
    padding: 100px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.et-intro-content {
    position: relative;
}

.et-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.et-section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}

.et-section-title .et-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-intro.visible .et-section-title .et-word {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.3s + 0.2s);
}

.et-event {
    padding: 80px 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-event.et-delay-1 {
    transition-delay: 0.2s;
}

.et-event.et-delay-2 {
    transition-delay: 0.4s;
}

.et-event.visible {
    opacity: 1;
    transform: translateY(0);
}

.et-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.et-event[data-layout="A"] .et-inner {
    flex-direction: row;
}

.et-event[data-layout="B"] .et-inner {
    flex-direction: row;
}

.et-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.et-event[data-layout="B"] .et-title {
    text-align: right;
    align-items: flex-end;
}

.et-event[data-layout="A"] .et-title {
    text-align: left;
    align-items: flex-start;
}

.et-num {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-light);
    text-transform: uppercase;
}

.et-title h3 {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.05;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.et-title h3 .et-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-event.visible .et-title h3 .et-word {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--i) * 0.35s + 0.3s);
}

.et-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 10px;
    max-width: 380px;
}

.et-event[data-layout="B"] .et-desc {
    max-width: 380px;
}

.et-image {
    flex: 1;
    display: flex;
    align-items: center;
}

.et-event[data-layout="A"] .et-image {
    justify-content: flex-end;
}

.et-event[data-layout="B"] .et-image {
    justify-content: flex-start;
}

.et-image-frame {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.8;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    background: #eee;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s,
                transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.et-event.visible .et-image-frame {
    opacity: 1;
    transform: translateY(0);
}

.et-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.et-image-frame:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header { padding: 20px; }
    .header-right { gap: 12px; }
    .lang-toggle { padding: 2px 6px; font-size: 0.6rem; }
    .btn-outline { padding: 6px 16px; font-size: 0.65rem; }
    .hero, .about, .contact {
        flex-direction: column;
    }
    .wedding-images {
        flex-direction: column;
        margin-top: 30px;
    }
    .w-img-1, .w-img-2 {
        width: 100%;
        margin-top: 0;
    }
    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
    }
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .contact-image {
        margin-bottom: 0;
    }
    .services-list {
        flex-direction: column;
    }
    .bride-header-container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .subtitle-large {
        font-size: 3rem;
    }
    .flower-icon.decorative {
        right: 0;
    }
    .circ-img {
        width: 200px;
        height: 280px;
    }
    .circ-img.left { opacity: 0.85; transform: translateX(-80px) scale(0.92) rotateY(10deg) translateZ(-80px); }
    .circ-img.right { opacity: 0.85; transform: translateX(80px) scale(0.92) rotateY(-10deg) translateZ(-80px); }

    /* Event Types responsive */
    .event-types { padding-top: 20px; padding-bottom: 20px; }
    .et-section-title { font-size: 2.5rem; }
    .et-intro { padding: 60px 20px 40px; }
    .et-event { padding: 40px 20px; }
    .et-inner { gap: 30px; flex-direction: column !important; }
    .et-title h3 { font-size: 2.2rem; }
    .et-title { align-items: center !important; text-align: center !important; }
    .et-image-frame { max-width: 280px; }
    .et-image { justify-content: center !important; }
    .et-desc { max-width: 100%; }

    /* Footer responsive */
    .footer { margin: 0 20px; padding: 40px 0 30px; }
    .footer-contact { gap: 25px; flex-direction: column; align-items: center; }
}
