/* ==========================================
   ROOT VARIABLES - Rose Gold & Gold Theme
   ========================================== */
:root {
    --rose-gold: #e8b4b8;
    --rose-gold-dark: #d4989c;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8960f;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #e0e0e0;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-quick: all 0.3s ease;
    
    /* Pink Gallery Theme Variables */
    --pink-50: #fdf6f7;
    --pink-100: #faeef0;
    --pink-200: #f6e1e5;
    --pink-300: #eec8cf;
    --rose-300: #e3b7b9;
    --rose-500: #c67b7f;
    --gold-400: #d6b889;
    --ink-900: #3a2b2b;
    
    /* Theme Variables */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-glass: rgba(255, 255, 255, 0.2);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: rgba(232, 180, 184, 0.3);
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Variables */
body.dark-mode {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-glass: rgba(0, 0, 0, 0.4);
    --text-primary: #f8f8f8;
    --text-secondary: #cccccc;
    --border-color: rgba(232, 180, 184, 0.2);
    --shadow: rgba(0, 0, 0, 0.5);
    --dark: #f8f8f8;
    --white: #1a1a1a;
    --off-white: #2a2a2a;
    --light-gray: #3a3a3a;
}

body.dark-mode {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth transitions for theme changes */
*,
*::before,
*::after {
    transition: background-color 0.3s ease, 
                color 0.3s ease, 
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: transparent;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(232, 180, 184, 0.3);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}

.navbar-date {
    font-size: 0.85rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 2px;
    text-align: right;
    margin-right: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-quick);
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-quick);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--rose-gold-dark);
}

.nav-link:hover::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(232, 180, 184, 0.2);
    border: 2px solid var(--rose-gold);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-quick);
    color: var(--dark);
    font-size: 1.1rem;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--rose-gold);
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
}

.theme-toggle:active {
    transform: rotate(15deg) scale(0.95);
}

body.dark-mode .theme-toggle {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

body.dark-mode .theme-toggle:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ==========================================
   DARK MODE STYLES
   ========================================== */
body.dark-mode .nav-glass {
    background: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

body.dark-mode .section {
    background: var(--bg-primary);
}

body.dark-mode .glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(232, 180, 184, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-mode .section-title {
    color: var(--text-primary);
}

body.dark-mode .detail-card,
body.dark-mode .secondary-sponsor-card,
body.dark-mode .party-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 180, 184, 0.15);
}

body.dark-mode .detail-card:hover,
body.dark-mode .secondary-sponsor-card:hover,
body.dark-mode .party-member:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

body.dark-mode .sponsor-name,
body.dark-mode .member-name {
    color: var(--text-primary);
}

body.dark-mode .card-icon,
body.dark-mode .sponsor-icon,
body.dark-mode .member-icon {
    color: var(--gold);
}

body.dark-mode .hero-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode .countdown-unit {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

body.dark-mode .countdown-unit:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

body.dark-mode .rsvp-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

body.dark-mode .form-input,
body.dark-mode .form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 180, 184, 0.2);
    color: var(--text-primary);
}

body.dark-mode .form-input:focus,
body.dark-mode .form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

body.dark-mode .form-label {
    color: var(--text-primary);
}

body.dark-mode .footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

body.dark-mode .footer-tagline,
body.dark-mode .footer-note {
    color: var(--gold);
}

body.dark-mode .footer-copyright {
    color: var(--text-secondary);
}

body.dark-mode .contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

body.dark-mode .location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

body.dark-mode .venue-name,
body.dark-mode .contact-full-name {
    color: var(--text-primary);
}

body.dark-mode .names-content {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

body.dark-mode .full-name {
    color: var(--text-primary);
}

body.dark-mode .photo-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

body.dark-mode .moving-gallery-section {
    background: rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn-link,
body.dark-mode .contact-link {
    color: var(--gold);
}

body.dark-mode .btn-link:hover,
body.dark-mode .contact-link:hover {
    color: var(--rose-gold);
}

body.dark-mode .sponsor-pair {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(232, 180, 184, 0.15);
}

body.dark-mode .sponsor-pair:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

body.dark-mode .detail-time,
body.dark-mode .detail-venue,
body.dark-mode .detail-location,
body.dark-mode .venue-address {
    color: var(--text-secondary);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: var(--text-primary);
}

body.dark-mode .section-subtitle {
    color: var(--text-secondary);
}

body.dark-mode .member-role,
body.dark-mode .party-title {
    color: var(--gold);
}

body.dark-mode .btn-submit {
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: white;
}

body.dark-mode .btn-submit:hover {
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
}

body.dark-mode .btn-map {
    background: var(--gold);
    color: var(--dark);
}

body.dark-mode .btn-map:hover {
    background: var(--rose-gold);
}

body.dark-mode .filter-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

body.dark-mode .filter-pill.active,
body.dark-mode .filter-pill:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

body.dark-mode .gallery-title {
    color: var(--text-primary);
}

body.dark-mode .gallery-subtitle {
    color: var(--text-secondary);
}

body.dark-mode .photo-title {
    color: white;
}

body.dark-mode .details-section,
body.dark-mode .sponsors-section,
body.dark-mode .secondary-sponsors-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
}

body.dark-mode .gallery-section {
    background: var(--bg-primary);
}

body.dark-mode .countdown-title {
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   RSVP & ATTIRE TWO-COLUMN LAYOUT
   ========================================== */
.rsvp-attire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    align-items: start;
}

.rsvp-column,
.attire-column {
    width: 100%;
}

.column-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

/* Attire Column Styling */
.attire-content-box {
    background: rgba(248, 245, 240, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.petal-decoration-inline {
    text-align: center;
    margin-bottom: 1.5rem;
}

.petal-svg-small {
    width: 60px;
    height: 60px;
    opacity: 0.5;
    animation: floatPetal 4s ease-in-out infinite;
}

.petal-bottom {
    margin-top: 2rem;
    margin-bottom: 0;
}

.attire-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.attire-formal-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.attire-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.attire-info-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: var(--transition-quick);
}

.attire-info-card:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.attire-info-icon {
    font-size: 2.5rem;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
}

.attire-info-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.attire-info-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

/* Palette Box */
.palette-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.palette-box-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.color-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.color-group-inline {
    text-align: center;
}

.color-group-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.color-swatches-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.color-swatch-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-quick);
    cursor: pointer;
}

.color-swatch-small:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Gifts Box */
.gifts-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.gifts-box-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gifts-box-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

@keyframes floatPetal {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.7;
    }
}

/* Dark Mode - RSVP & Attire */
body.dark-mode .attire-content-box {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

body.dark-mode .column-title,
body.dark-mode .attire-section-title,
body.dark-mode .attire-info-heading,
body.dark-mode .palette-box-title,
body.dark-mode .gifts-box-title {
    color: var(--text-primary);
}

body.dark-mode .attire-formal-label,
body.dark-mode .attire-info-text,
body.dark-mode .color-group-label,
body.dark-mode .gifts-box-text {
    color: var(--text-secondary);
}

body.dark-mode .attire-info-icon {
    color: var(--gold);
}

body.dark-mode .attire-info-card {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .attire-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .palette-box,
body.dark-mode .gifts-box {
    background: rgba(255, 255, 255, 0.05);
}

body.dark-mode .color-swatch-small {
    border-color: rgba(212, 175, 55, 0.4);
}

/* Responsive - RSVP & Attire Layout */
@media (max-width: 1024px) {
    .rsvp-attire-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .attire-content-box {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .rsvp-attire-grid {
        gap: 2rem;
    }
    
    .column-title {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .attire-content-box {
        padding: 2.5rem 2rem;
    }
    
    .attire-section-title {
        font-size: 1.6rem;
        letter-spacing: 4px;
    }
    
    .palette-box-title,
    .gifts-box-title {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .attire-content-box {
        padding: 2rem 1.5rem;
    }
    
    .column-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .attire-section-title {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }
    
    .attire-info-icon {
        font-size: 2rem;
    }
    
    .attire-info-heading {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .color-swatch-small {
        width: 35px;
        height: 35px;
    }
    
    .petal-svg-small {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-logo-top {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    animation: fadeIn 1.5s ease-out;
}

.hero-names {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
    margin: 0;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-announcement {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0.5rem 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-date-time {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Hero Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: var(--transition-quick);
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 180, 184, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.video-play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    z-index: 10;
}

.video-play-button:hover {
    background: rgba(0, 0, 0, 0.1);
}

.video-play-button:focus {
    outline: 3px solid var(--rose-gold);
    outline-offset: 4px;
}

.play-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition-quick);
    color: var(--dark);
}

.video-play-button:hover .play-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-play-button.hidden {
    display: none;
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */
.countdown-container {
    margin: 3rem 0;
    text-align: center;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.countdown-unit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold));
}

.countdown-unit:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px) saturate(250%);
    -webkit-backdrop-filter: blur(30px) saturate(250%);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(232, 180, 184, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    animation: separatorBlink 2s ease-in-out infinite;
    margin: 0 0.5rem;
}

@keyframes separatorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Countdown Animation Effects */
.countdown-unit:nth-child(1) {
    animation-delay: 0.1s;
}

.countdown-unit:nth-child(3) {
    animation-delay: 0.2s;
}

.countdown-unit:nth-child(5) {
    animation-delay: 0.3s;
}

.countdown-unit:nth-child(7) {
    animation-delay: 0.4s;
}

/* ==========================================
   HERO SECTION
   ========================================== */


/* Hero Wording Column */
.hero-wording-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 2rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    font-style: italic;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.hero-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

/* Removed hero::after overlay to allow video background to show */

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 248, 245, 0.7);
    z-index: 2;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Glitter Effect */
.glitter {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--rose-gold) 1px, transparent 1px),
        radial-gradient(circle, var(--gold) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.1;
    animation: glitterFloat 20s linear infinite;
}

.glitter:nth-child(2) {
    animation-duration: 30s;
    animation-direction: reverse;
}

.glitter:nth-child(3) {
    animation-duration: 25s;
    opacity: 0.05;
}

@keyframes glitterFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: heroFadeIn 2s ease-out;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 3rem;
    margin: 1rem;
    box-shadow: none;
    border: none;
}

/* Framer Motion-like animations */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo-container {
    animation: logoFadeIn 2.5s ease-out 0.5s both;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.countdown-container {
    animation: countdownFadeIn 3s ease-out 1s both;
}

@keyframes countdownFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(232, 180, 184, 0.4));
    animation: logoFloat 3s ease-in-out infinite, logoShine 4s ease-in-out infinite;
    position: relative;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoShine {
    0% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* Shining effect overlay for logo */
.hero-logo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: logoShine 4s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

.wedding-date {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.couple-names {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bride-name,
.groom-name {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.ampersand {
    font-size: 3rem;
    color: var(--gold);
    margin: 0.5rem 0;
}

.tagline {
    font-size: 1.3rem;
    color: var(--gray);
    margin-top: 1.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--rose-gold);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--rose-gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   GLASS CARD EFFECT
   ========================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(232, 180, 184, 0.2);
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(232, 180, 184, 0.2);
    border-color: var(--rose-gold);
}

/* ==========================================
   DETAILS SECTION
   ========================================== */
.details-section {
    background: linear-gradient(135deg, rgba(248, 244, 240, 0.5) 0%, rgba(255, 250, 245, 0.8) 50%, rgba(252, 245, 240, 0.5) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 1rem;
}

.detail-card {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), var(--gold), transparent);
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
    position: relative;
    transition: var(--transition-smooth);
}

.detail-card:hover .card-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(232, 180, 184, 0.5);
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    opacity: 0.2;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.detail-time {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.detail-venue {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.detail-location,
.detail-note {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.detail-date {
    font-size: 1.2rem;
    color: var(--rose-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.detail-date-full {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1rem 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-quick);
    border-radius: 50px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(232, 180, 184, 0.3);
}

.btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.5);
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
}

/* ==========================================
   NAMES SECTION
   ========================================== */
.names-section {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(212, 175, 55, 0.1));
}

.names-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 3rem;
    text-align: center;
}

.name-block h3 {
    font-size: 1.2rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.full-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.nickname {
    font-size: 1.3rem;
    color: var(--gray);
}

.heart-divider {
    font-size: 3rem;
    color: var(--rose-gold);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


/* ==========================================
   SPONSORS SECTION
   ========================================== */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sponsor-pair {
    text-align: center;
    padding: 1.5rem;
}

.sponsor-name {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0.5rem 0;
}

.sponsor-pair .sponsor-name:first-child {
    color: var(--rose-gold-dark);
    font-weight: 500;
}

.sponsor-pair .sponsor-name:last-child {
    color: var(--gold-dark);
    font-weight: 500;
}

/* ==========================================
   SECONDARY SPONSORS SECTION
   ========================================== */
.secondary-sponsors-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(232, 180, 184, 0.05));
}

.secondary-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.secondary-sponsor-card {
    text-align: center;
}

.sponsor-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.secondary-sponsor-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.secondary-sponsor-card .sponsor-name {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0.3rem 0;
}

/* ==========================================
   GALLERY SECTION - Pink Theme
   ========================================== */
.gallery-section {
    background: var(--pink-50);
    padding: 4rem 2rem;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--ink-900);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.gallery-subtitle {
    color: var(--ink-900);
    opacity: 0.7;
    font-size: 1.1rem;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: var(--pink-100);
    color: var(--ink-900);
}

.filter-pill:hover {
    background: var(--pink-200);
    transform: translateY(-2px);
}

.filter-pill.active {
    background: var(--rose-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 123, 127, 0.3);
}

/* Gallery Albums Layout */
.gallery-albums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-album {
    padding: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-album:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(232, 180, 184, 0.3);
}

/* Album Header */
.album-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(212, 175, 55, 0.1));
    border-bottom: 1px solid rgba(232, 180, 184, 0.2);
}

.album-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
}

.album-info {
    flex: 1;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 0.3rem 0;
    font-style: italic;
}

.album-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Album Preview */
.album-preview {
    padding: 1.5rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    min-height: 200px;
    height: auto;
}

.preview-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: rgba(248, 244, 240, 0.3);
}

.main-image:hover {
    transform: scale(1.05);
}

.preview-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    height: calc(33.333% - 0.33rem);
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    transition: var(--transition-quick);
    cursor: pointer;
    background: rgba(248, 244, 240, 0.3);
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.album-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.15), rgba(212, 175, 55, 0.15));
    border-radius: 12px;
    transition: var(--transition-quick);
}

.album-placeholder.thumbnail {
    border-radius: 8px;
}

.album-placeholder i {
    font-size: 2rem;
    color: var(--rose-gold);
    margin-bottom: 0.5rem;
}

.album-placeholder.thumbnail i {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.album-placeholder p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.album-placeholder.thumbnail p {
    display: none;
}

.more-photos {
    width: 100%;
    height: calc(33.333% - 0.33rem);
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

.more-photos:hover {
    transform: scale(1.05);
}

/* Hover Effects */
.gallery-album:hover .main-image,
.gallery-album:hover .thumbnail {
    transform: scale(1.05);
}

.gallery-album:hover .album-placeholder {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.25), rgba(212, 175, 55, 0.25));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(232, 180, 184, 0.3);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.15), rgba(212, 175, 55, 0.15));
    transition: var(--transition-quick);
}

.gallery-item:hover .gallery-image-placeholder {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.25), rgba(212, 175, 55, 0.25));
}

.gallery-image-placeholder i {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.gallery-image-placeholder p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Panels Layout */
.gallery-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-panel {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.gallery-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Panel Header */
.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pink-50);
    border-bottom: 1px solid var(--pink-200);
}

.panel-icon {
    font-size: 1.5rem;
    color: var(--gold-400);
}

.panel-info {
    flex: 1;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--ink-900);
    margin-bottom: 0.3rem;
}

.panel-count {
    font-size: 0.9rem;
    color: var(--ink-900);
    opacity: 0.6;
    margin: 0;
}

/* Panel Content */
.panel-content {
    padding: 1.5rem;
}

.masonry-grid {
    columns: 1;
    column-gap: 1rem;
    break-inside: avoid;
}

@media (min-width: 640px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        columns: 3;
    }
}

.photo-tile {
    break-inside: avoid;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.photo-tile:hover {
    transform: scale(1.02);
}

.photo-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.photo-tile:hover .photo-image {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   MOVING PHOTO GALLERIES
   ========================================== */
.moving-galleries {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.moving-gallery-section {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--pink-50) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.moving-gallery-section .gallery-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.moving-gallery-section .gallery-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--ink-900);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.moving-gallery-section .gallery-subtitle {
    color: var(--ink-900);
    opacity: 0.7;
    font-size: 1.1rem;
}

.moving-gallery-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.moving-gallery-track {
    display: flex;
    gap: 2rem;
    height: 100%;
    animation: scrollLeft 30s linear infinite;
    will-change: transform;
}

.moving-gallery-track[data-direction="right"] {
    animation: scrollRight 30s linear infinite;
}

.photo-card {
    position: relative;
    flex-shrink: 0;
    width: 250px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.photo-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-card:hover .photo-overlay {
    transform: translateY(0);
}

.photo-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    display: block;
}

/* Scroll Animations */
@keyframes scrollLeft {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Pause on hover */
.moving-gallery-container:hover .moving-gallery-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .moving-galleries {
        gap: 2rem;
    }
    
    .moving-gallery-section {
        padding: 1.5rem 0;
    }
    
    .moving-gallery-container {
        height: 250px;
    }
    
    .photo-card {
        width: 200px;
        height: 230px;
    }
    
    .moving-gallery-section .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .moving-gallery-container {
        height: 200px;
    }
    
    .photo-card {
        width: 150px;
        height: 180px;
    }
    
    .moving-gallery-track {
        gap: 1rem;
    }
    
    .moving-gallery-section .gallery-title {
        font-size: 1.5rem;
    }
}


/* ==========================================
   FOLDER TILE EFFECTS
   ========================================== */
.folder-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    perspective: 1000px;
}

.folder-tile {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: folderFloat 3s ease-in-out infinite;
}

.folder-tile:nth-child(odd) {
    animation-delay: 0.5s;
}

.folder-tile:nth-child(even) {
    animation-delay: 1s;
}

@keyframes folderFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.folder-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotateX(0deg) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.folder-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
    border-radius: 15px;
    transform: rotateX(-5deg) rotateY(5deg) translateZ(-10px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.folder-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.folder-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-900);
    text-align: center;
    padding: 0.5rem;
    border-radius: 0 0 12px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.folder-tile:hover {
    transform: translateY(-15px) rotateX(-10deg) rotateY(5deg) scale(1.05);
    animation-play-state: paused;
}

.folder-tile:hover .folder-front {
    transform: rotateX(-15deg) rotateY(10deg) translateZ(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.folder-tile:hover .folder-back {
    transform: rotateX(-20deg) rotateY(15deg) translateZ(-20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.folder-tile:hover .folder-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.folder-tile:hover .folder-label {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%);
    color: var(--rose-500);
    font-weight: 700;
}

/* Active/Selected State */
.folder-tile.active {
    transform: translateY(-20px) rotateX(-20deg) rotateY(10deg) scale(1.1);
    z-index: 10;
}

.folder-tile.active .folder-front {
    transform: rotateX(-25deg) rotateY(15deg) translateZ(30px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.folder-tile.active .folder-back {
    transform: rotateX(-30deg) rotateY(20deg) translateZ(-30px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .folder-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .folder-tile {
        height: 200px;
    }
    
    .folder-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .folder-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .folder-tile {
        height: 180px;
    }
    
    .folder-label {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}

/* ==========================================
   BRIDAL PARTY SECTION
   ========================================== */
.bridal-party-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.party-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.party-member {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.party-member.special {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.2), rgba(212, 175, 55, 0.2));
    border: 2px solid var(--gold);
}

.member-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.member-name {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.member-role {
    font-size: 0.9rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* Rose Gold Theme for Bridesmaids */
.bridesmaids-group .party-title {
    background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bridesmaids-group .party-member {
    background: rgba(232, 180, 184, 0.15);
    border: 1px solid rgba(232, 180, 184, 0.3);
}

.bridesmaids-group .party-member:hover {
    background: rgba(232, 180, 184, 0.25);
    border-color: var(--rose-gold);
}

.bridesmaids-group .party-member.special {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.3), rgba(212, 137, 145, 0.3));
    border: 2px solid var(--rose-gold);
}

.bridesmaids-group .member-icon {
    color: var(--rose-gold);
}

.bridesmaids-group .member-name {
    color: var(--rose-gold-dark);
}

.bridesmaids-group .member-role {
    color: var(--rose-gold);
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}

.venue-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.venue-address {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 15px;
    margin: 1.5rem 0;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--gray);
    font-size: 1.1rem;
}

.btn-map {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1rem;
    transition: var(--transition-quick);
    font-weight: 500;
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.3);
}

/* ==========================================
   RSVP & CONTACT SECTION
   ========================================== */
.rsvp-section {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(212, 175, 55, 0.1));
}

/* RSVP Form */
.rsvp-form-container {
    max-width: 700px;
    margin: 3rem auto 5rem;
}

.rsvp-form {
    padding: 3rem;
    transform: none !important;
    background: rgba(252, 240, 245, 0.5);
}

.rsvp-form:hover {
    transform: translateY(-5px) !important;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin: 4rem 0 1rem;
    color: var(--dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-label i {
    color: var(--rose-gold);
    font-size: 1rem;
}

.required {
    color: var(--rose-gold);
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(232, 180, 184, 0.4);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition-quick);
    background: rgba(255, 250, 252, 0.9);
    color: var(--dark);
}

.form-input:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(232, 180, 184, 0.15);
}

.form-input::placeholder {
    color: var(--gray);
    opacity: 0.6;
}

.form-input.error {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 2px solid #f44336;
    color: #c62828;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    padding: 2.5rem;
}

.contact-card:hover {
    transform: translateY(-5px) !important;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(232, 180, 184, 0.3);
}

.contact-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-full-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition-quick);
    border: 1px solid transparent;
}

.contact-link:hover {
    background: rgba(232, 180, 184, 0.2);
    border-color: var(--rose-gold);
    transform: translateX(10px);
}

.contact-link i {
    font-size: 1.5rem;
    color: var(--gold);
    width: 30px;
}

/* ==========================================
   PHOTO MODAL
   ========================================== */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

.photo-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    z-index: 10001;
    transition: var(--transition-quick);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: scale(1.1);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10001;
}

.modal-prev,
.modal-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: var(--transition-quick);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--rose-gold);
    color: var(--white);
    transform: scale(1.1);
}

.modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 0;
}

.modal-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(232, 180, 184, 0.3);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 0.5rem 0;
    font-style: italic;
}

.modal-description {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 50%, var(--gold) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.footer-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-image {
    width: 300px;
    height: auto;
    opacity: 1;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-names {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.footer-date {
    font-size: 1.2rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--light-gray);
    font-style: italic;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (min-width: 1024px) {
    .hero-two-column {
        grid-template-columns: 5fr 7fr;
        gap: 4rem;
    }
    
    .hero-logo-column {
        justify-content: flex-start;
    }
    
    .hero-video-column {
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    .bridal-party-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .party-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .hero-names {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .hero-announcement {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .hero-date-time {
        font-size: 0.85rem;
    }
    
    .hero-logo-image {
        max-width: 350px;
    }
    
    .couple-names {
        font-size: 3rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
    
    .names-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-albums {
        grid-template-columns: 1fr;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 150px;
    }
    
    .preview-main {
        min-height: 150px;
    }
    
    .preview-thumbnails {
        flex-direction: row;
        margin-top: 1rem;
        height: 80px;
    }
    
    .thumbnail {
        height: 80px;
        width: calc(25% - 0.5rem);
        flex-shrink: 0;
    }
    
    .more-photos {
        height: 80px;
        width: calc(25% - 0.5rem);
        flex-shrink: 0;
    }
    
    .gallery-categories {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .party-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Hero Two-Column Mobile Styles */
    .hero-two-column {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .play-icon {
        width: 56px;
        height: 56px;
    }
    
    /* Countdown Mobile Styles */
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-unit {
        min-width: 80px;
        padding: 1rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
        margin: 0 0.3rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        display: none;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin-left: auto;
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .hero-names {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-announcement {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .hero-date-time {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-logo-image {
        max-width: 280px;
    }
    
    .couple-names {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .rsvp-form {
        padding: 2rem 1.5rem;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
    
    .btn-submit {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    /* Hero Extra Small Mobile */
    .hero-two-column {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .video-wrapper {
        border-radius: 0; /* Remove border radius for background effect */
    }
    
    .play-icon {
        width: 48px;
        height: 48px;
    }
    
    /* Countdown Extra Small Mobile */
    .countdown-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .countdown-unit {
        min-width: 70px;
        padding: 0.8rem 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 0.2rem;
    }
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(232, 180, 184, 0.3);
}

.footer-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-center {
    margin-bottom: 2rem;
}

.footer-logo-image {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
    transition: var(--transition-quick);
}

.footer-logo-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-content {
    margin-top: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--rose-gold-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.footer-note {
    font-size: 0.9rem;
    color: var(--rose-gold-dark);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-note i {
    color: var(--rose-gold);
    margin: 0 0.3rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .footer-logo-image {
        max-width: 150px;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-logo-image {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}


 
 / *   R e s p o n s i v e   s t y l e s   f o r   n e w   h e r o   l a y o u t   * / 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
         . h e r o - t w o - c o l u m n   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 g a p :   2 r e m ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . h e r o - w o r d i n g - c o l u m n   { 
                 o r d e r :   1 ; 
                 a l i g n - i t e m s :   c e n t e r ; 
                 p a d d i n g - r i g h t :   0 ; 
         } 
         
         . h e r o - l o g o - c o l u m n   { 
                 o r d e r :   2 ; 
         } 
         
         . h e r o - h e a d l i n e   { 
                 f o n t - s i z e :   3 r e m ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . h e r o - s u b t e x t   { 
                 f o n t - s i z e :   1 . 2 r e m ; 
                 t e x t - a l i g n :   c e n t e r ; 
         } 
         
         . c o u n t d o w n - t o p   { 
                 t o p :   8 0 p x ; 
                 p a d d i n g :   0 . 8 r e m   0 ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - u n i t   { 
                 m i n - w i d t h :   8 0 p x ; 
                 p a d d i n g :   1 r e m   0 . 8 r e m ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - n u m b e r   { 
                 f o n t - s i z e :   2 . 2 r e m ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - l a b e l   { 
                 f o n t - s i z e :   0 . 8 r e m ; 
         } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . h e r o - h e a d l i n e   { 
                 f o n t - s i z e :   2 . 5 r e m ; 
         } 
         
         . h e r o - s u b t e x t   { 
                 f o n t - s i z e :   1 r e m ; 
         } 
         
         . c o u n t d o w n - t o p   { 
                 t o p :   7 0 p x ; 
                 p a d d i n g :   0 . 6 r e m   0 ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - u n i t   { 
                 m i n - w i d t h :   6 0 p x ; 
                 p a d d i n g :   0 . 8 r e m   0 . 6 r e m ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - n u m b e r   { 
                 f o n t - s i z e :   1 . 8 r e m ; 
         } 
         
         . c o u n t d o w n - t o p   . c o u n t d o w n - l a b e l   { 
                 f o n t - s i z e :   0 . 7 r e m ; 
         } 
 } 
 
 