/* ==========================================
   IMPORT HOMEPAGE HERO & CONTENT STYLES
   ========================================== */
@import url('homepage-hero.css');
@import url('homepage-content.css');

:root {
    --cream: #FEFCF8;
    --warm-white: #FFFFFF;
    --soft-gray: #F5F3F0;
    --warm-gray: #E8E5E0;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --accent-warm: #C9A882;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --homepage-hero-image: url('images/Couples/DO1A4696.jpg');
    --homepage-hero-position: center center;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

a, button, .collage-item, .gallery-item, .pricing-card {
    cursor: pointer;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--soft-gray);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 1px;
    padding: 0.25rem 0;
}

.logo:hover {
    color: var(--accent-warm);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-warm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark);
}

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

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 2rem;
}

/* Hero Section - Compact & Professional */
.hero-section {
    text-align: center;
    padding: 2rem 0 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.08em;
}

/* Categories Container */
/* Gallery Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--soft-gray);
}

.filter-tab {
    background: transparent;
    border: 1.5px solid var(--warm-gray);
    padding: 0.75rem 1.75rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-warm);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-tab:hover {
    border-color: var(--accent-warm);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 130, 0.2);
}

.filter-tab:hover::before {
    left: 0;
}

.filter-tab.active {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 168, 130, 0.3);
}

.filter-tab.active::before {
    left: 0;
}

.filter-tab.active:hover {
    background: #B8966F;
    border-color: #B8966F;
    color: white;
}

/* Hide filtered items */
.collage-item.filtered {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.collage-item:not(.filtered) {
    display: block;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Ensure no padding/margin on grid container */
.categories-container .collage-grid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.category-section {
    margin-bottom: 4rem;
}

/* Collage Grid - Award-Winning 8-Column Layout - ABSOLUTE ZERO WHITE SPACE */
.collage-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    /* Make base cells roughly square (1400px / 8 = 175px) */
    grid-auto-rows: 175px; 
    gap: 0;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    grid-auto-flow: dense; /* CRITICAL: Fills holes automatically */
    transition: grid-auto-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid Spans - Desktop (8 columns) */
/* Only standard ratios enabled now */
.span-1 { grid-column: span 1; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }

.row-1 { grid-row: span 1; }
.row-2 { grid-row: span 2; }
.row-3 { grid-row: span 3; }

/* Scroll-triggered grid shape changes */
.collage-grid.scrolled {
    grid-auto-rows: 160px;
}

.collage-grid.scrolled-more {
    grid-auto-rows: 150px;
}

.collage-item {
    overflow: visible; /* Allow slight overlap to eliminate white space */
    position: relative;
    cursor: pointer;
    border-radius: 8px; /* Soft rounded edges */
    max-width: 100%; /* Ensure it fills container */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* Subtle depth */
    margin: 0; /* Ensure no margins */
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.4s ease,
                box-shadow 0.4s ease,
                z-index 0s;
}

/* Scroll-based transforms */
.collage-grid.scrolled .collage-item {
    transform: scale(0.98);
}

.collage-grid.scrolled-more .collage-item {
    transform: scale(0.96);
}

.collage-item:hover {
    z-index: 10;
    transform: scale(1.05) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    filter: brightness(1.05);
}

.collage-image-wrapper {
    width: calc(100% + 2px); /* Slight overlap to eliminate gaps */
    height: calc(100% + 2px);
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Match parent border-radius */
    margin: -1px; /* Negative margin to create slight overlap */
    padding: 0;
    left: -1px;
    top: -1px;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.collage-image.primary-image {
    opacity: 1;
    transform: scale(1);
}

.collage-image.hover-image {
    opacity: 0;
    transform: scale(1.1);
}

/* Hover swap effect - smooth image transition */
.collage-item:hover .primary-image {
    opacity: 0;
    transform: scale(1.1);
}

.collage-item:hover .hover-image {
    opacity: 1;
    transform: scale(1);
}

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0 0 8px 8px;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-category {
    color: white;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    /* Tablet - 4 columns */
    .collage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Responsive Spans for 4-column grid */
    .span-1 { grid-column: span 1; }
    .span-2 { grid-column: span 2; }
    .span-3 { grid-column: span 2; } /* 3 becomes 2 */
    .span-4 { grid-column: span 4; } /* Full width */
    .span-5 { grid-column: span 4; } /* Full width */
    .span-6 { grid-column: span 4; } /* Full width */
    .span-7 { grid-column: span 4; } /* Full width */
    .span-8 { grid-column: span 4; } /* Full width */
}

@media (max-width: 768px) {
    /* Mobile - 2 columns */
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 50vw; /* Square-ish on mobile */
        gap: 0;
    }
    
    .collage-item {
        max-width: 100%; 
    }
    
    /* Reset large spans on mobile to fit 2 cols */
    .span-1 { grid-column: span 1; }
    .span-2, .span-3, .span-4 { grid-column: span 2; } /* Full width */
    
    /* Reset large rows on mobile */
    .row-2 { grid-row: span 1; } 
    .row-3 { grid-row: span 2; }
    
    .collage-grid.scrolled {
        grid-auto-rows: 45vw;
    }
    
    .collage-grid.scrolled-more {
        grid-auto-rows: 40vw;
    }
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 1px;
}

/* Gallery Grid - Masonry Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    padding: 0;
    grid-auto-flow: dense;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--soft-gray);
    position: relative;
    cursor: pointer;
}

/* Varying sizes for visual interest - some items span 2 columns */
.gallery-item:nth-child(5n) {
    grid-column: span 2;
}

.gallery-item:nth-child(8n) {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .gallery-item:nth-child(5n),
    .gallery-item:nth-child(8n) {
        grid-column: span 1;
    }
}

.image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 125%; /* Default aspect ratio */
}

/* Varying aspect ratios for visual interest */
.gallery-item:nth-child(3n) .image-wrapper {
    padding-bottom: 140%;
}

.gallery-item:nth-child(4n) .image-wrapper {
    padding-bottom: 110%;
}

.gallery-item:nth-child(6n) .image-wrapper {
    padding-bottom: 150%;
}

.gallery-item:nth-child(5n) .image-wrapper {
    padding-bottom: 100%; /* Wider for 2-column spans */
}

.gallery-item:nth-child(8n) .image-wrapper {
    padding-bottom: 95%; /* Wider for 2-column spans */
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
}

.primary-image {
    opacity: 1;
    transform: scale(1);
}

.hover-image {
    opacity: 0;
    transform: scale(1.05);
}

.gallery-item:hover .primary-image {
    opacity: 0;
    transform: scale(1.05);
}

.gallery-item:hover .hover-image {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-item {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    user-select: none;
    z-index: 10002;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10002;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page */
.contact-page {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    padding: 2rem 0;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.contact-section {
    margin-bottom: 5rem;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: var(--accent-warm);
    border-bottom-color: var(--accent-warm);
}

.contact-note {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 1rem;
}

.pricing-section {
    margin-top: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--soft-gray);
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-warm);
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-warm);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--soft-gray);
    position: relative;
    padding-left: 1.5rem;
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-warm);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pricing Page Specific Styles */
.pricing-page {
    padding-top: 100px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 300;
}

.pricing-category-section {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent-warm);
    color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--accent-warm);
    box-shadow: 0 8px 30px rgba(201, 168, 130, 0.15);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-warm);
}

.pricing-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background: var(--accent-warm);
    color: white;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: var(--transition);
    border: 1.5px solid var(--accent-warm);
}

.pricing-cta:hover {
    background: transparent;
    color: var(--accent-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 130, 0.3);
}

.pricing-footer-note {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--soft-gray);
}

.pricing-footer-note p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-contact-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-warm);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-warm);
    padding-bottom: 0.25rem;
    transition: var(--transition);
}

.pricing-contact-link:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
    font-style: italic;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--cream);
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--soft-gray);
    margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .hero-section {
        padding: 2rem 0 4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-section {
        margin-bottom: 4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}


/* Locations Horizontal Scroll */
.locations-scroller-container {
    width: 100%;
    overflow-x: auto;
    padding: 2rem 0;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.locations-scroller-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.locations-scroller {
    display: flex;
    gap: 2rem;
    padding: 0 2rem; /* Side padding */
    width: max-content;
}

.location-card {
    position: relative;
    width: clamp(220px, 22vw, 320px);
    aspect-ratio: 3 / 4;
    max-height: 40vh;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-image {
    transform: scale(1.05);
}

.location-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
}

.location-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.location-info p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Uniform Grid for Gallery Pages */
.uniform-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.uniform-grid-item {
    position: relative;
    aspect-ratio: 2/3; /* Consistent aspect ratio */
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.uniform-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.uniform-grid-item:hover .uniform-grid-image {
    transform: scale(1.05);
}

/* Becca Style Homepage Hero - Full Screen Immersive */
.becca-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/Couples/DO1A4473.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.becca-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.becca-hero-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-top-label {
    position: fixed;
    top: 120px;
    left: 2rem;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    z-index: 11;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-logo-script {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: white;
    letter-spacing: 0.05em;
}

.hero-logo-tag {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}

.hero-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-subtitle-italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
}

.hero-eyebrow {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.hero-title-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hero-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-line {
    display: block;
}

.hero-line.highlight {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: 0.3em;
}

.hero-script-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    letter-spacing: 0.1em;
}

.hero-copy {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 0 auto 2rem;
    max-width: 720px;
    color: rgba(255,255,255,0.9);
}

.hero-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.hero-pill {
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.becca-cta-primary {
    display: inline-block;
    background: rgba(201, 168, 130, 0.95);
    padding: 1.2rem 3rem;
    color: white;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.becca-cta-primary:hover {
    background: rgba(201, 168, 130, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.becca-cta {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.7);
    padding: 1rem 2.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.becca-cta.outline {
    background: transparent;
}

.becca-cta:hover {
    background: white;
    color: black;
    border-color: white;
}

.hero-secondary-banner {
    background: var(--cream);
    padding: 1.5rem 0;
}

.hero-secondary-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
}

.hero-secondary-card .eyebrow {
    margin: 0;
    color: var(--text-dark);
}

.dot-divider {
    font-size: 2rem;
    color: var(--accent-warm);
}

/* Update Navbar for Becca Style */
.navbar.transparent {
    background: transparent;
    border-bottom: none;
    padding: 2rem 0;
}

.navbar.transparent .nav-link {
    color: rgba(255,255,255,0.9);
}

.navbar.transparent .logo {
    color: white;
}

.navbar.transparent .nav-link:hover,
.navbar.transparent .nav-link.active {
    color: white;
}

.navbar.transparent .nav-link::after {
    background: white;
}

/* About Page Styles */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

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

.about-content {
    padding: 2rem;
}

.about-text p {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.becca-cta.dark-mode {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.becca-cta.dark-mode:hover {
    background: var(--text-dark);
    color: white;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-image-wrapper {
        height: 400px;
    }
    
    .about-content {
        padding: 0;
        text-align: center;
    }
}

/* Homepage Sections */
.home-main {
    margin-top: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.home-main > section:first-child {
    margin-top: 100vh; /* Push content below hero */
}

.home-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5.5rem) 2rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-heading.center {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.eyebrow {
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.text-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.25rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.text-link:hover {
    color: var(--accent-warm);
    border-color: var(--accent-warm);
}

.text-link.light {
    color: white;
    border-color: rgba(255,255,255,0.8);
}

.text-link.light:hover {
    border-color: white;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(250px, 360px) minmax(280px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.home-about-media {
    border-radius: 12px;
    overflow: hidden;
    max-height: 40vh;
}

.home-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-about-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.home-about-copy p {
    margin-bottom: 1rem;
}

.home-style-card {
    background: var(--cream);
    border: 1px solid var(--soft-gray);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3.5rem);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.style-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.style-list li {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.session-card {
    border: 1px solid var(--soft-gray);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--warm-white);
    min-height: 100%;
}

.session-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.session-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.session-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.home-cta .cta-card {
    background: var(--text-dark);
    color: white;
    border-radius: 18px;
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
}

@media (max-width: 900px) {
    .home-about {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .home-section {
        padding: 3rem 1.5rem;
    }
    
    .hero-pill-group {
        justify-content: center;
    }
}

/* Contact Page Specific Styles */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-hero-image {
    width: 100%;
    height: auto;
    max-height: 40vh;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--warm-gray);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 300;
}

.question-box-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--warm-gray);
    background: white;
    border-radius: 4px;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-warm);
}

.becca-cta.full-width {
    grid-column: span 2;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
}

.becca-cta.full-width:hover {
    background: var(--text-dark);
    color: white;
}

@media (max-width: 768px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .question-box-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .becca-cta.full-width {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

