/* ===================================
   Wedding Officiant Landing Page
   Professional & Luxurious Design
   =================================== */

/* === IMPORT FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Heebo:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
    /* Color Palette - Navy/Champagne/Rose Gold */
    --primary-navy: #1a365d;
    --primary-navy-light: #2d4a73;
    --primary-navy-dark: #0f2744;

    --secondary-champagne: #f4e8d8;
    --secondary-champagne-light: #faf5ed;
    --secondary-champagne-dark: #e6d5bf;

    --accent-rose-gold: #d4a373;
    --accent-rose-gold-light: #e6c39f;
    --accent-rose-gold-dark: #b8865a;

    --neutral-white: #ffffff;
    --neutral-cream: #fdfbf7;
    --neutral-gray-light: #f5f5f5;
    --neutral-gray: #e0e0e0;
    --neutral-gray-dark: #757575;
    --neutral-black: #1f1f1f;

    /* Typography */
    --font-heading-en: 'Playfair Display', serif;
    --font-heading-he: 'Heebo', sans-serif;
    --font-body-en: 'Inter', sans-serif;
    --font-body-he: 'Heebo', sans-serif;

    /* Spacing System - 8px grid */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 4rem;
    /* 64px */
    --space-3xl: 6rem;
    /* 96px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 54, 93, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 54, 93, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 54, 93, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-overlay: 400;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body-he);
    direction: rtl;
    color: var(--neutral-black);
    background-color: var(--neutral-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading-he);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

p {
    margin-bottom: var(--space-md);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--neutral-gray-dark);
}

a {
    color: var(--accent-rose-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-rose-gold-dark);
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-alt {
    background-color: var(--secondary-champagne-light);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body-he);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-rose-gold) 0%, var(--accent-rose-gold-dark) 100%);
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-rose-gold-light) 0%, var(--accent-rose-gold) 100%);
    color: var(--neutral-white);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.btn-secondary:hover {
    background: var(--neutral-white);
    color: var(--primary-navy);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem var(--space-lg);
    /* Reduced vertical padding to accommodate larger logo */
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    /* Larger box for the logo */
    width: 220px;
    /* Wider box as requested */
    overflow: hidden;
    margin-right: -15px;
    /* Pull towards edge for a cleaner look */
}

.logo-img {
    height: 240px;
    /* Optimized height to show full logo including bottom text */
    width: auto;
    object-fit: contain;
    max-width: none;
    max-height: none;
    transition: transform var(--transition-normal);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-navy);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-rose-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-navy);
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 54, 93, 0.68) 0%,
            rgba(45, 74, 115, 0.58) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-2xl) var(--space-lg);
}

.hero-title {
    color: var(--neutral-white);
    margin-bottom: var(--space-md);
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--secondary-champagne);
    margin-bottom: var(--space-xl);
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    right: 50%;
    transform: translateX(50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    fill: var(--secondary-champagne);
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* === ABOUT SECTION === */
.about-section {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
    z-index: 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 39, 68, 0.95) 0%,
            rgba(26, 54, 93, 0.9) 50%,
            rgba(15, 39, 68, 0.95) 100%);
    z-index: 1;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro,
.about-highlight,
.about-body,
.about-goal,
.about-closing {
    color: var(--secondary-champagne-light);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
    text-align: right;
}

.about-highlight {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    padding: var(--space-lg);
    background: rgba(212, 163, 115, 0.1);
    border-right: 4px solid var(--accent-rose-gold);
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}

.about-highlight strong {
    color: var(--accent-rose-gold-light);
    display: block;
    margin-bottom: var(--space-sm);
    font-size: 1.3em;
}

.about-goal strong,
.about-body strong {
    color: var(--accent-rose-gold-light);
    font-weight: 600;
}

.about-intro strong {
    color: var(--neutral-white);
}

.about-closing {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* === CARDS === */
.card {
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-rose-gold) 0%, var(--accent-rose-gold-light) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-rose-gold) 0%, var(--accent-rose-gold-light) 100%);
    border-radius: var(--radius-sm);
}

.section-description {
    max-width: 700px;
    margin: var(--space-lg) auto 0;
    font-size: 1.125rem;
    color: var(--neutral-gray-dark);
}

/* === SERVICES GRID === */
/* Special styling for ceremonies section background */
.ceremonies-section {
    position: relative;
    overflow: hidden;
    color: var(--primary-navy);
}

.ceremonies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/IMG_8731.JPG');
    /* Using a high quality image */
    background-size: cover;
    background-position: center;
    filter: saturate(0.8);
    z-index: 0;
}

.ceremonies-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 245, 237, 0.92);
    /* Heavy champagne/cream overlay to ensure text readability */
    backdrop-filter: blur(3px);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    position: relative;
    z-index: 2;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--accent-rose-gold-light) 0%, var(--accent-rose-gold) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neutral-white);
    box-shadow: var(--shadow-md);
}

.service-title {
    color: var(--primary-navy);
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
}

.service-description {
    color: var(--neutral-gray-dark);
    line-height: 1.7;
}

/* === GALLERY CAROUSEL === */
.gallery-carousel-section {
    padding: 0;
    overflow: hidden;
    position: relative;
    background: var(--primary-navy);
}

.gallery-carousel-container {
    width: 100%;
    position: relative;
}

.gallery-carousel {
    position: relative;
    width: 100%;
}

.carousel-track {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 700px;
    background: var(--neutral-black);
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* Focus on faces/upper body */
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 54, 93, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neutral-white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
}

.carousel-arrow:hover {
    background: rgba(212, 163, 115, 0.8);
    /* Rose gold */
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
    right: 20px;
}

.carousel-arrow-next {
    left: 20px;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--accent-rose-gold);
    transform: scale(1.2);
}

/* === TESTIMONIALS === */
.testimonials-container {
    max-width: 900px;
    margin: var(--space-2xl) auto;
    position: relative;
}

.testimonial-card {
    background: var(--neutral-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--neutral-gray-dark);
    font-style: italic;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-rose-gold);
    font-family: var(--font-heading-he);
    position: absolute;
    top: -20px;
    right: -10px;
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.testimonial-date {
    color: var(--accent-rose-gold);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--neutral-gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background: var(--accent-rose-gold);
    width: 32px;
}

/* === CONTACT FORM === */
.contact-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: var(--neutral-white);
}

.contact-section .section-title,
.contact-section .section-description {
    color: var(--neutral-white);
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--accent-rose-gold) 0%, var(--accent-rose-gold-light) 100%);
}

.contact-form {
    max-width: 700px;
    margin: var(--space-2xl) auto 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--secondary-champagne);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-white);
    font-family: var(--font-body-he);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-rose-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--accent-rose-gold) 0%, var(--accent-rose-gold-dark) 100%);
    color: var(--neutral-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-body-he);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--secondary-champagne-dark);
    text-align: center;
    margin-top: var(--space-md);
}

/* === MOBILE OPTIMIZATION === */
@media screen and (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.5rem;
        /* Smaller heading for mobile */
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Layout & Spacing */
    .section {
        padding: var(--space-xl) 0;
        /* Reduced vertical padding */
    }

    .container {
        padding: 0 var(--space-md);
        /* Reduced side padding */
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        /* Ensure full height */
        padding-top: 60px;
        /* Account for navbar */
    }

    .hero-content {
        padding: var(--space-xl) var(--space-sm);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }

    .hero-cta .btn {
        width: 100%;
        /* Full width buttons for easier tapping */
    }

    /* About Section */
    .about-content {
        padding: var(--space-lg);
        /* Less padding in the glass card */
    }

    .about-intro,
    .about-body,
    .about-goal,
    .about-closing {
        text-align: right;
        /* Ensure readable text alignment */
        font-size: 1rem;
    }

    /* Gallery Carousel */
    .carousel-track {
        height: 40vh;
        /* Smaller height for mobile */
        min-height: 300px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        background: rgba(26, 54, 93, 0.6);
        /* More visible background */
    }

    /* Ceremonies / Process */
    .services-grid {
        grid-template-columns: 1fr;
        /* Stack cards vertically */
        gap: var(--space-lg);
    }

    /* Contact Form */
    .form-input,
    .form-textarea {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }

    .form-submit {
        width: 100%;
    }
}

/* === FOOTER === */
.footer {
    background: var(--primary-navy-dark);
    color: var(--secondary-champagne);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-champagne);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--accent-rose-gold);
    color: var(--neutral-white);
    transform: translateY(-3px);
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(50%);
    }

    40% {
        transform: translateY(-10px) translateX(50%);
    }

    60% {
        transform: translateY(-5px) translateX(50%);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    :root {
        --space-3xl: 4rem;
        --space-2xl: 3rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--space-xl);
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {

    .container,
    .container-wide {
        padding: 0 var(--space-md);
    }

    .card {
        padding: var(--space-lg);
    }

    .testimonial-card {
        padding: var(--space-lg);
    }
}

/* === GALLERY CAROUSEL === */
.gallery-carousel-section {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.gallery-carousel-container {
    max-width: 100%;
    margin: 0 auto;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background: var(--neutral-black);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Carousel Slide - Ensure images cover area and heads aren't cut off */
.carousel-slide img {
    width: 100%;
    height: 100%;
    /* Ensure height is 100% of the container */
    object-fit: cover;
    /* Maintain aspect ratio, cover area */
    object-position: center 20%;
    /* Position image to show top part (heads) */
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    color: var(--primary-navy);
}

.carousel-arrow:hover {
    background: var(--accent-rose-gold);
    color: var(--neutral-white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-prev {
    left: var(--space-lg);
}

.carousel-arrow-next {
    right: var(--space-lg);
}

.carousel-dots {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--accent-rose-gold);
    width: 32px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* === CEREMONIES SECTION BACKGROUND === */
.ceremonies-section {
    position: relative;
    overflow: hidden;
}

.ceremonies-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/IMG_0709.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: blur(2px);
}

.ceremonies-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(250, 245, 237, 0.95) 0%,
            rgba(244, 232, 216, 0.92) 50%,
            rgba(250, 245, 237, 0.95) 100%);
    z-index: 1;
}

/* === PRINT STYLES === */
@media print {

    .navbar,
    .nav-toggle,
    .scroll-indicator,
    .footer-social {
        display: none;
    }
}