/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    
    /* Silver & Platinum Premium Gradients */
    --silver-gradient: linear-gradient(135deg, #e0e0e0 0%, #b0b0b0 50%, #ffffff 100%);
    --silver-light: #e0e0e0;
    --silver-dark: #8c8c8c;
    --platinum: #e5e4e2;
    
    /* Shadows & Borders */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.2);
    --glow-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Fonts */
    --font-heading-deco: 'Cinzel Decorative', Georgia, serif;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--silver-dark) var(--bg-primary);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--silver-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--silver-light);
}

/* ==========================================================================
   DIAMOND DUST CANVAS & BACKGROUNDS
   ========================================================================== */
#diamondDustCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999; /* Always on top, covering entire viewport */
    pointer-events: none; /* Make clicks pass through to content underneath */
}

/* ==========================================================================
   INTRO OVERLAY (WELCOME SCREEN)
   ========================================================================== */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
    padding: 20px;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-content {
    max-width: 500px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInIntro 1.5s ease-out;
}

.intro-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.intro-title {
    font-family: var(--font-heading-deco);
    font-size: 3rem;
    font-weight: 700;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.diamond-divider .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.diamond-divider .diamond-sparkle {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0 10px;
    animation: sparkle 3s infinite ease-in-out;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.diamond-divider.small .line {
    width: 40px;
}
.diamond-divider.tiny .line {
    width: 25px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    position: relative;
    padding: 15px 35px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000000;
    background: var(--silver-gradient);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: shimmer 3s infinite linear;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   FLOATING AUDIO PLAYER WIDGET
   ========================================================================== */
.music-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9998; /* Below canvas, above normal layout */
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.music-widget.visible {
    opacity: 1;
    transform: translateY(0);
}

.music-capsule {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 8px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow), var(--glow-shadow);
    transition: var(--transition-smooth);
}

.music-capsule:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.music-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--silver-gradient);
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.music-toggle-btn:hover {
    transform: scale(1.1);
}

.music-icon {
    width: 18px;
    height: 18px;
}

.music-icon.hidden {
    display: none;
}

.music-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.music-status-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    white-space: nowrap;
    text-transform: uppercase;
}

/* Equalizer Animation */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 14px;
    width: 20px;
}

.eq-bar {
    width: 2px;
    background: var(--silver-gradient);
    height: 3px;
    border-radius: 1px;
    transition: height 0.3s ease;
}

/* Playing states */
.music-widget.playing .eq-bar {
    animation: equalize 1.2s infinite ease-in-out;
}

.music-widget.playing .bar-1 { animation-delay: 0.1s; }
.music-widget.playing .bar-2 { animation-delay: 0.4s; }
.music-widget.playing .bar-3 { animation-delay: 0.2s; }
.music-widget.playing .bar-4 { animation-delay: 0.6s; }

/* Pulse widget effect */
.music-widget.playing .music-capsule {
    animation: pulseWidget 4s infinite alternate ease-in-out;
}

/* ==========================================================================
   LOCKED / UNLOCKED BODY CONTENT STATE
   ========================================================================== */
.main-content {
    transition: filter 1s ease, opacity 1s ease;
}

.main-content.locked {
    filter: blur(10px);
    opacity: 0.3;
    pointer-events: none;
}

/* ==========================================================================
   HERO / COVER SECTION
   ========================================================================== */
.section-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 20px;
}

.hero-container {
    max-width: 800px;
    position: relative;
    z-index: 10;
    animation: zoomHero 1.8s ease-out;
}

.hero-celebrant-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--silver-light);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-name {
    font-family: var(--font-heading-deco);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

.hero-phrase {
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Countdown Timer */
.countdown-wrapper {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    display: inline-block;
}

.countdown-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.detail-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--silver-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.countdown-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-item .time {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.countdown-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 5px;
}

.countdown-divider {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

/* Scroll Down Link */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    transition: var(--transition-smooth);
}

.scroll-down:hover {
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.arrow-down {
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    animation: scrollIndicator 1.5s infinite;
}

/* ==========================================================================
   CEREMONY & RECEPTION SECTION
   ========================================================================== */
.section-details {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.details-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.details-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--silver-gradient);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.details-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
}

.details-card:hover::before {
    height: 5px;
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.05);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.details-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.detail-time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.detail-place {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--silver-light);
    margin-bottom: 5px;
}

.detail-address {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 300;
}

/* ==========================================================================
   PHOTO GALLERY SECTION
   ========================================================================== */
.section-gallery {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   DRESS CODE & GIFT SECTION
   ========================================================================== */
.section-dress-gifts {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.dress-gifts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}

.card-glass:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-glass h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.dress-style {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.dress-description, .gift-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
}

.gift-options {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.03);
}

.gift-options p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.gift-options strong {
    color: #ffffff;
}

/* ==========================================================================
   RSVP / CONFIRMATION SECTION
   ========================================================================== */
.section-rsvp {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.rsvp-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.rsvp-deadline {
    font-style: italic;
    font-weight: 300;
    color: var(--silver-light);
    margin-top: -5px;
    font-size: 0.95rem;
}

.rsvp-text {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.8;
    font-weight: 300;
}

.btn-rsvp {
    display: inline-block;
    text-decoration: none;
    line-height: 1.2;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    padding: 60px 0;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-note {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.footer-credits {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   LIGHTBOX DIALOG (IMAGE SLIDER / ZOOM PREVIEW)
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--silver-light);
    transform: scale(1.1);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInIntro {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.25); text-shadow: 0 0 12px rgba(255, 255, 255, 1); }
}

@keyframes scrollIndicator {
    0% { opacity: 0; transform: translateY(-5px) rotate(45deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px) rotate(45deg); }
}

@keyframes equalize {
    0%, 100% { height: 3px; }
    50% { height: 14px; }
}

@keyframes pulseWidget {
    0% { box-shadow: var(--glass-shadow), 0 0 10px rgba(255, 255, 255, 0.05); }
    100% { box-shadow: var(--glass-shadow), 0 0 25px rgba(255, 255, 255, 0.25); }
}

@keyframes zoomHero {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reveal on Scroll styling */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   POEM / FINAL THOUGHT SECTION
   ========================================================================== */
.section-poem {
    padding: 100px 0 60px;
    background-color: var(--bg-primary);
    text-align: center;
}

.poem-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: var(--glass-shadow);
}

.poem-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.poem-verse {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    font-weight: 300;
}

.poem-verse:last-child {
    margin-bottom: 0;
}

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

/* ==========================================================================
   FAMILY & GODPARENTS SECTION
   ========================================================================== */
.section-family {
    padding: 100px 0 60px;
    background-color: var(--bg-primary);
    text-align: center;
}

.family-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--glass-shadow);
}

.family-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.family-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-name {
        font-size: 4rem;
    }
    .details-grid, .dress-gifts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .hero-name {
        font-size: 3.2rem;
    }
    .hero-phrase {
        font-size: 0.95rem;
    }
    .section-details, .section-gallery, .section-dress-gifts, .section-rsvp {
        padding: 70px 0;
    }
    .details-card, .card-glass, .rsvp-card {
        padding: 40px 20px;
    }
    .countdown-item {
        min-width: 55px;
    }
    .countdown-item .time {
        font-size: 1.8rem;
    }
    .music-widget {
        bottom: 15px;
        right: 15px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    .hero-name {
        font-size: 2.6rem;
    }
    .hero-celebrant-label {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
    }
    .countdown {
        gap: 8px;
    }
    .countdown-item {
        min-width: 45px;
    }
    .countdown-item .time {
        font-size: 1.5rem;
    }
    .countdown-divider {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
