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

::selection {
    background: var(--burgundy);
    color: var(--white);
}

::-moz-selection {
    background: var(--burgundy);
    color: var(--white);
}

*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

:root {
    --burgundy: #6a0f1c;
    --dark-burgundy: #4a0a13;
    --light-burgundy: #8a1f2c;
    --cream: #f5f0e8;
    --beige: #e8dfd3;
    --gold: #D4AF37;
    --light-gold: #f5f0e8;
    --rose-gold: #e8dfd3;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(106, 15, 28, 0.2);
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

body, html {
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: var(--cream);
}

html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--burgundy), var(--gold));
    border-radius: 10px;
    border: 2px solid var(--cream);
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dark-burgundy), var(--burgundy));
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

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


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-text {
    animation: fadeInUp 1.5s ease-out;
}

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

.subtitle {
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1.3;
    margin: 40px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.couple-name span {
    font-family: 'Great Vibes', cursive;
    font-size: 120px;
    font-weight: 400;
    margin: 0 30px;
    display: inline-block;
    color: var(--light-gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.wedding-date-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.date-number {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
}

.date-separator {
    font-size: 50px;
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    animation: scroll 2s infinite;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.section-title::before,
.section-title::after {
    content: '❦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 24px;
    opacity: 0.6;
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}

.section-title.white {
    color: var(--white);
}

.section-title.white::before,
.section-title.white::after {
    color: var(--light-gold);
}

.title-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.title-underline::before {
    left: -5px;
}

.title-underline::after {
    right: -5px;
}

.title-underline.white {
    background: var(--white);
}

.title-underline.white::before,
.title-underline.white::after {
    background: var(--white);
}

/* Intro Section */
.intro-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    overflow: hidden;
    width: 100%;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 80px;
}

.intro-photo {
    position: relative;
}

.intro-photo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    z-index: -1;
}

.intro-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 30px 80px rgba(139,21,56,0.2);
    transition: transform 0.5s ease;
}

.intro-photo:hover img {
    transform: scale(1.02);
}

.intro-text {
    padding: 20px 40px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--burgundy);
    margin-bottom: 40px;
    line-height: 1.8;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139,21,56,0.03), rgba(212,175,55,0.03));
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.message {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.9;
    text-align: justify;
}

/* Couple Section */
.couple-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.couple-section::before,
.couple-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.couple-section::before {
    top: 0;
}

.couple-section::after {
    bottom: 0;
}

.couple-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.couple-item {
    flex: 1;
    text-align: center;
    max-width: 450px;
}

.couple-photo {
    position: relative;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(106,15,28,0.15);
    background: var(--cream);
    padding: 15px;
    transition: all 0.5s ease;
}

.couple-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.couple-photo:hover::before {
    opacity: 1;
}

.couple-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.couple-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(106,15,28,0.25);
}

.couple-photo:hover img {
    transform: scale(1.03);
}

.role {
    font-size: 18px;
    color: var(--burgundy);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.child-order {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.parents-info {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 50px 45px;
    border-radius: 20px;
    text-align: left;
    border: 2px solid var(--gold);
    box-shadow: 0 15px 50px rgba(106,15,28,0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.parents-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy), var(--gold));
}

.parents-info:hover {
    box-shadow: 0 20px 60px rgba(106,15,28,0.2);
    transform: translateY(-5px);
    border-color: var(--burgundy);
}

.parents-info .label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--burgundy);
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    display: block;
}

.parents-info p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.parents-info p strong {
    color: var(--burgundy);
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    min-width: 50px;
}

.parents-info .address {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed var(--gold);
    font-style: italic;
    color: var(--text-dark);
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--burgundy);
    margin-top: 200px;
}

.heart-divider i {
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--cream), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-light);
    background: var(--white);
    border: 1px solid var(--cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: 0 20px 60px var(--shadow-dark);
    transform: translateY(-8px);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Event Section */
.event-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.event-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106,15,28,0.95), rgba(74,10,19,0.95));
}

.event-content {
    position: relative;
    z-index: 10;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.event-card {
    background: rgba(255,255,255,0.97);
    padding: 60px 45px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.35);
    border-color: rgba(212,175,55,0.5);
}

.event-card:hover::before {
    opacity: 1;
}

.event-card.main {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(245,241,232,0.98), rgba(255,255,255,0.98));
    box-shadow: 0 20px 60px rgba(139,21,56,0.2);
}

.event-card.main::before {
    height: 6px;
    opacity: 1;
}

/* New Event Cards Layout */
.event-cards-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.ceremony-cards-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.reception-card-column {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.ceremony-cards-column .event-card.ceremony {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reception-card-column .event-card.reception {
    flex: 1;
    width: 100%;
}

/* Ceremony Cards */
.event-card.ceremony {
    padding: 35px 30px;
}

.event-card.ceremony h3 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-card.ceremony .event-details p {
    font-size: 21px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-card.ceremony .event-details i {
    color: var(--burgundy);
    margin-right: 10px;
    font-size: 20px;
}

.event-card.ceremony .date-large {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: 12px;
    margin: 12px 0;
    line-height: 1.2;
}

.event-card.ceremony .highlight {
    font-size: 24px;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
}

.event-card.ceremony .small {
    font-size: 18px;
    color: var(--text-light);
    font-style: italic;
    margin: 5px 0;
}

.event-card.ceremony strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--burgundy);
}

.event-card.ceremony .address {
    font-size: 19px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
    margin-top: 8px;
}

/* Reception Card (Big & Highlighted) */
.event-card.reception {
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(245,241,232,0.98), rgba(255,255,255,0.98));
    box-shadow: 0 25px 70px rgba(139,21,56,0.25);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-card.reception::before {
    height: 6px;
    opacity: 1;
}

.event-card.reception .event-icon {
    font-size: 70px !important;
    color: var(--burgundy) !important;
    margin-bottom: 20px !important;
}

.event-card.reception h3 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-card.reception .event-details p {
    font-size: 21px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.event-card.reception .event-details i {
    font-size: 20px;
}

.event-card.reception .highlight {
    font-size: 26px;
    font-weight: 700;
    margin: 12px 0;
}

.event-card.reception .date-large {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 12px;
    margin: 15px 0;
    line-height: 1.2;
}

.event-card.reception .venue {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
}

.event-card.reception .address {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 8px;
}

.event-card.reception .note {
    font-size: 19px;
    font-style: italic;
    margin-top: 15px;
    color: var(--burgundy);
    opacity: 0.9;
    line-height: 1.4;
}

.event-card.reception strong {
    font-size: 24px;
}

.event-card.reception:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 90px rgba(139,21,56,0.35);
}

.event-icon {
    font-size: 60px;
    color: var(--burgundy);
    margin-bottom: 25px;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 30px;
}

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

.event-details p {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.event-details i {
    color: var(--burgundy);
    margin-right: 10px;
}

.event-details .small {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
}

.event-details .highlight {
    font-size: 22px;
    font-weight: 600;
    color: var(--burgundy);
    margin: 25px 0;
}

.event-details .date-large {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--burgundy);
    margin: 20px 0;
    letter-spacing: 4px;
}

.event-details .venue {
    font-size: 20px;
    margin: 15px 0;
}

.event-details .address {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 15px;
}

/* Countdown Section */
.countdown-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F5F1E8 0%, #F4E4C1 50%, #F5F1E8 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.countdown-section::before {
    content: '❦ ❦ ❦';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--gold);
    opacity: 0.15;
    letter-spacing: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.countdown-box {
    text-align: center;
    background: var(--white);
    padding: 45px 55px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(139, 21, 56, 0.12);
    min-width: 170px;
    position: relative;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.countdown-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.2);
}

.countdown-box:hover::before {
    opacity: 0.1;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--burgundy), var(--light-burgundy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
}

.countdown-label {
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 500;
}

/* More Photos Section */
.more-photos-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

.photo-collage {
    margin-top: 60px;
}

.collage-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}

.collage-item:hover {
    box-shadow: 0 20px 60px rgba(139,21,56,0.2);
    transform: translateY(-5px);
}

.collage-item.wide {
    grid-column: span 2;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.collage-item:hover img {
    transform: scale(1.03);
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
    width: 100%;
}

.map-wrapper {
    position: relative;
    margin-top: 60px;
}

.map-info-card {
    background: linear-gradient(135deg, var(--burgundy), var(--dark-burgundy));
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 25px 70px rgba(139,21,56,0.3);
    border: 3px solid var(--gold);
    transition: all 0.4s ease;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(139,21,56,0.4);
}

.map-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.map-info-card p {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-info-card .address {
    font-size: 16px;
    margin: 20px 0;
    line-height: 1.6;
}

.btn-directions {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: var(--white);
    color: var(--burgundy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--burgundy), var(--dark-burgundy));
    color: var(--white);
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.footer-monogram {
    font-family: 'Playfair Display', serif;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer h3 {
    font-size: 28px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.footer p {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-names {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.footer-date {
    font-size: 28px;
    letter-spacing: 8px;
    margin-bottom: 30px;
}

.footer-heart {
    font-size: 40px;
    animation: heartBeat 1.5s infinite;
    margin-bottom: 40px;
}

.footer-credit {
    margin-top: 50px;
    padding-top: 40px;
    position: relative;
}

.credit-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    margin: 0 auto 30px;
    position: relative;
}

.credit-divider::before {
    content: '❦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold);
    background: var(--burgundy);
    padding: 0 10px;
    font-size: 16px;
    opacity: 0.6;
}

.credit-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 12px;
    font-style: italic;
}

.credit-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.credit-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.credit-link i {
    font-size: 18px;
}

.credit-payment {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
    color: var(--light-gold);
    font-style: italic;
}

.credit-payment i {
    margin-right: 5px;
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .couple-name {
        font-size: 60px;
    }

    .couple-name span {
        font-size: 70px;
    }

    .date-number {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .couple-wrapper {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .couple-item {
        max-width: 100%;
        width: 100%;
    }

    .heart-divider {
        margin-top: 0;
        margin-bottom: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .event-cards {
        grid-template-columns: 1fr;
    }

    .event-cards-new {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ceremony-cards-column {
        gap: 20px;
    }

    .event-card.ceremony {
        padding: 35px 25px;
    }

    .event-card.ceremony h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .event-card.ceremony .event-details p {
        font-size: 19px;
    }

    .event-card.ceremony .event-details i {
        font-size: 18px;
    }

    .event-card.ceremony .date-large {
        font-size: 38px;
        letter-spacing: 8px;
        margin: 15px 0;
    }

    .event-card.ceremony .highlight {
        font-size: 22px;
    }

    .event-card.ceremony .small {
        font-size: 17px;
    }

    .event-card.ceremony strong {
        font-size: 20px;
    }

    .event-card.ceremony .address {
        font-size: 18px;
    }

    .event-card.reception {
        padding: 45px 30px;
    }

    .event-card.reception h3 {
        font-size: 38px;
    }

    .event-card.reception .event-icon {
        font-size: 60px !important;
    }

    .event-card.reception .event-details p {
        font-size: 19px;
    }

    .event-card.reception .highlight {
        font-size: 24px;
    }

    .event-card.reception .date-large {
        font-size: 40px;
        letter-spacing: 9px;
    }

    .event-card.reception .venue {
        font-size: 22px;
    }

    .event-card.reception .address {
        font-size: 19px;
    }

    .event-card.reception .note {
        font-size: 18px;
    }

    .event-card.reception strong {
        font-size: 22px;
    }

    .countdown-timer {
        gap: 20px;
    }

    .countdown-box {
        padding: 30px 35px;
        min-width: 120px;
    }

    .countdown-number {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .couple-name {
        font-size: 40px;
    }

    .couple-name span {
        font-size: 50px;
        display: block;
        margin: 15px 0;
    }

    .date-number {
        font-size: 40px;
    }

    .section-title {
        font-size: 38px;
    }

    .couple-wrapper {
        gap: 40px;
    }

    .couple-photo {
        padding: 10px;
        margin-bottom: 30px;
    }

    .name {
        font-size: 36px;
    }

    .parents-info {
        padding: 35px 30px;
    }

    .parents-info p {
        font-size: 17px;
    }

    .parents-info .address {
        font-size: 16px;
    }

    .heart-divider {
        font-size: 40px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }

    .countdown-box {
        padding: 25px 30px;
        min-width: 100px;
    }

    .countdown-number {
        font-size: 40px;
    }

    .collage-row {
        grid-template-columns: 1fr;
    }

    .collage-item.wide {
        grid-column: span 1;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .couple-name {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .quote {
        font-size: 22px;
    }

    .couple-wrapper {
        gap: 30px;
    }

    .couple-photo {
        padding: 8px;
        margin-bottom: 25px;
    }

    .name {
        font-size: 28px;
    }

    .role {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .child-order {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .parents-info {
        padding: 30px 25px;
    }

    .parents-info .label {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .parents-info p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .parents-info p strong {
        font-size: 16px;
    }

    .parents-info .address {
        font-size: 15px;
        margin-top: 20px;
        padding-top: 18px;
    }

    .heart-divider {
        font-size: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }

    .event-card h3 {
        font-size: 28px;
    }

    .footer-monogram {
        font-size: 60px;
    }

    .footer-names {
        font-size: 32px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 20px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 15px 40px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Add cursor pointer to gallery items */
.gallery-item {
    cursor: pointer;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
