/* ==========================================================================
   WEDDING INVITATION — AVAZBEK & IRODA
   Design: Royal White Marble & Pure Gold Leaf (Белый мрамор и сусальное золото)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-base: #fcfbf9;
    --bg-card: rgba(255, 255, 255, 0.88);
    --bg-card-hover: rgba(255, 255, 255, 0.96);
    --bg-card-inner: rgba(253, 251, 247, 0.95);
    
    /* Gold Foil Palette */
    --gold-primary: #B8860B;
    --gold-accent: #C59B27;
    --gold-light: #EBD59B;
    --gold-bright: #9E7422;
    --gold-dark: #6D4C0C;
    --gold-gradient: linear-gradient(135deg, #966C1E 0%, #D4AF37 35%, #8B6515 65%, #CBA135 100%);
    --gold-gradient-soft: linear-gradient(135deg, #a37926 0%, #f7e7be 50%, #8c6219 100%);
    --gold-border: rgba(184, 134, 11, 0.4);
    --gold-border-glow: rgba(212, 175, 55, 0.8);
    --gold-glow: 0 0 25px rgba(197, 155, 39, 0.2);
    
    /* Text Colors */
    --text-main: #24201b;
    --text-body: #3d352e;
    --text-muted: #6e6459;
    --text-light: #8a7e70;
    
    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-script: 'Alex Brush', cursive;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    /* Luxury Marble Vein Pattern Simulation */
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(184, 134, 11, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 70%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        linear-gradient(120deg, rgba(245, 240, 230, 0.6) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(245, 240, 230, 0.6) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.65;
    position: relative;
}

/* Background Canvas for Golden Stardust Particles */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.site-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}

/* ==========================================================================
   GOLD TYPOGRAPHY & EFFECTS (LIGHT THEME)
   ========================================================================== */

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-shimmer {
    background: linear-gradient(90deg, #875c12 0%, #d4af37 25%, #734c07 50%, #d4af37 75%, #875c12 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s linear infinite;
    display: inline-block;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.gold-highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Corner Ornaments */
.header-ornament, .site-footer {
    position: relative;
}

.gold-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    pointer-events: none;
    opacity: 0.85;
}

.gold-corner.top-left {
    top: 15px;
    left: 10px;
    border-top: 2px solid var(--gold-accent);
    border-left: 2px solid var(--gold-accent);
}

.gold-corner.top-right {
    top: 15px;
    right: 10px;
    border-top: 2px solid var(--gold-accent);
    border-right: 2px solid var(--gold-accent);
}

.gold-corner.bottom-left {
    bottom: 15px;
    left: 10px;
    border-bottom: 2px solid var(--gold-accent);
    border-left: 2px solid var(--gold-accent);
}

.gold-corner.bottom-right {
    bottom: 15px;
    right: 10px;
    border-bottom: 2px solid var(--gold-accent);
    border-right: 2px solid var(--gold-accent);
}

/* Gold Divider */
.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    color: var(--gold-primary);
}

.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.flourish {
    font-size: 1.2rem;
    color: var(--gold-accent);
}

.flourish-center {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
}

/* ==========================================================================
   FLOATING MUSIC PLAYER
   ========================================================================== */

.music-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.music-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-dark);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
}

.music-toggle-btn:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.35);
    background: #fff;
}

.music-icon {
    display: flex;
    align-items: center;
    color: var(--gold-primary);
}

.music-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.music-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 14px;
}

.music-waves span {
    width: 3px;
    height: 4px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.music-playing .music-waves span:nth-child(1) { animation: wave 1s infinite 0.1s; }
.music-playing .music-waves span:nth-child(2) { animation: wave 1s infinite 0.3s; }
.music-playing .music-waves span:nth-child(3) { animation: wave 1s infinite 0.2s; }
.music-playing .music-waves span:nth-child(4) { animation: wave 1s infinite 0.4s; }

@keyframes wave {
    0%, 100% { height: 4px; }
    50% { height: 14px; }
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0 40px;
    position: relative;
}

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

.monogram-wrapper {
    margin-bottom: 25px;
}

.monogram-circle {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.18), inset 0 0 20px rgba(212, 175, 55, 0.1);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 233, 0.8) 100%);
}

.monogram-inner-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px dashed rgba(184, 134, 11, 0.5);
    animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.monogram-text {
    font-family: var(--font-script);
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.monogram-text .ampersand {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-style: italic;
}

.hero-pretitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 20px;
}

.couple-names {
    margin-bottom: 25px;
}

.groom-name, .bride-name {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.names-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 8px 0;
}

.names-separator .ornament-line {
    width: 60px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.names-separator .heart-symbol {
    color: var(--gold-primary);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
}

.hero-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--gold-border);
    border-radius: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.15);
}

.date-badge .day {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.date-badge .month {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-main);
}

.date-badge .year {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.hero-venue {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-venue .location-pin {
    color: var(--gold-primary);
}

.scroll-down-btn {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.scroll-down-btn:hover {
    opacity: 1;
    transform: translateY(3px);
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-arrow {
    font-size: 1.3rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* ==========================================================================
   SECTION 2: TABLE VIP BADGE (Персональный стол)
   ========================================================================== */

.table-section {
    padding: 20px 0 40px;
}

.table-vip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 246, 238, 0.98) 100%);
    border: 1.5px solid var(--gold-border-glow);
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15), var(--gold-glow);
    backdrop-filter: blur(12px);
}

.table-card-badge {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 20px;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 15px;
}

.guest-greeting-name {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.table-intro-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

.table-highlight-box {
    background: #ffffff;
    border: 1.5px solid var(--gold-border-glow);
    border-radius: 14px;
    padding: 22px 35px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 270px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.12);
}

.table-icon-ornament {
    font-size: 2.3rem;
    margin-bottom: 6px;
}

.table-number-title {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 2px;
}

.table-desc-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-primary);
    margin-top: 4px;
    font-weight: 600;
}

/* ==========================================================================
   SECTION 3: COUNTDOWN TIMER
   ========================================================================== */

.countdown-section {
    padding: 30px 0 50px;
    text-align: center;
}

.timer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 25px 0 15px;
}

.timer-card {
    background: var(--bg-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 14px;
    padding: 18px 14px;
    min-width: 95px;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.12);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.timer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.timer-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.25);
    background: #fff;
}

.timer-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.timer-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.8;
}

.timer-subtext {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 10px;
}

/* ==========================================================================
   SECTION 4: INVITATION LETTER
   ========================================================================== */

.invitation-section {
    padding: 40px 0 60px;
}

.ornate-card {
    background: var(--bg-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 18px;
    padding: 45px 35px;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15), var(--gold-glow);
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
}

.card-ornament {
    display: flex;
    justify-content: center;
    width: 100%;
}

.card-ornament.top { margin-bottom: 20px; }
.card-ornament.bottom { margin-top: 25px; }

.ornament-svg {
    width: 180px;
    height: 35px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.invitation-text {
    max-width: 620px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.85;
    color: var(--text-body);
}

.invitation-text p {
    margin-bottom: 18px;
}

.lead-quote {
    font-style: italic;
    color: var(--gold-dark);
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0 10px;
    margin-bottom: 24px !important;
}

.signature-block {
    margin-top: 30px;
}

.signature-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 5px;
}

.signature-names {
    font-family: var(--font-script);
    font-size: 3.4rem;
    line-height: 1.2;
}

/* ==========================================================================
   SECTION 5: VENUE & LOCATION
   ========================================================================== */

.venue-section {
    padding: 40px 0 60px;
}

.venue-card {
    background: var(--bg-card);
    border: 1.5px solid var(--gold-border);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
    backdrop-filter: blur(12px);
}

.venue-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.venue-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.venue-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.venue-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(184, 134, 11, 0.25);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.08);
}

.detail-box:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.18);
}

.detail-icon {
    font-size: 1.6rem;
}

.detail-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* Map Box Visual */
.map-container {
    margin-bottom: 30px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--gold-border);
}

.map-placeholder {
    background: linear-gradient(145deg, #ffffff 0%, #f7f3eb 100%);
    padding: 45px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-decor-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px dashed rgba(184, 134, 11, 0.4);
    animation: pulseRing 3s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.8; }
}

.map-marker-pin {
    font-size: 2.4rem;
    margin-bottom: 12px;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(184, 134, 11, 0.4));
    animation: bouncePin 2s infinite ease-in-out;
}

@keyframes bouncePin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-venue-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 8px;
    z-index: 2;
}

.map-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 380px;
    z-index: 2;
}

/* Navigation Action Buttons */
.navigation-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    background: #ffffff;
    border: 1.5px solid var(--gold-border);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
}

.nav-btn:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.25);
    color: var(--gold-dark);
}

.btn-icon {
    font-size: 1.15rem;
}

/* ==========================================================================
   SECTION 6: SAVE THE DATE (Календарь)
   ========================================================================== */

.calendar-section {
    padding: 20px 0 50px;
}

.calendar-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 243, 233, 0.95) 100%);
    border: 1.5px solid var(--gold-border);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.12);
}

.calendar-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.calendar-desc {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.calendar-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--gold-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35);
    transition: var(--transition-smooth);
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.5);
    filter: brightness(1.08);
}

.gold-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: #ffffff;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--gold-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.1);
}

.gold-btn-outline:hover {
    background: rgba(184, 134, 11, 0.1);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    border-top: 1.5px solid rgba(184, 134, 11, 0.25);
    margin-top: 40px;
}

.footer-monogram {
    font-family: var(--font-script);
    font-size: 3.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.footer-names {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 2px;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.footer-date {
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
}

.gold-stars {
    color: var(--gold-primary);
    letter-spacing: 8px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-dark);
    font-weight: 600;
}

.footer-admin-link {
    margin-top: 25px;
}

.admin-entry-link {
    color: #999;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 4px;
}

.admin-entry-link:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

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

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-in-down {
    animation: fadeInDown 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@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); }
}

/* ==========================================================================
   RESPONSIVE STYLES (Mobile First Breakpoints)
   ========================================================================== */

@media (max-width: 768px) {
    .groom-name, .bride-name {
        font-size: 2.8rem;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }

    .timer-grid {
        gap: 8px;
    }

    .timer-card {
        min-width: 70px;
        padding: 14px 8px;
    }

    .timer-num {
        font-size: 1.8rem;
    }

    .timer-separator {
        font-size: 1.5rem;
    }

    .ornate-card {
        padding: 35px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .invitation-text {
        font-size: 1.15rem;
    }

    .lead-quote {
        font-size: 1.2rem;
    }

    .venue-title {
        font-size: 2rem;
    }

    .venue-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .navigation-actions {
        grid-template-columns: 1fr;
    }

    .calendar-buttons {
        flex-direction: column;
        width: 100%;
    }

    .gold-btn, .gold-btn-outline {
        width: 100%;
    }

    .music-widget {
        top: 12px;
        right: 12px;
    }

    .music-toggle-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .groom-name, .bride-name {
        font-size: 2.2rem;
    }

    .signature-names {
        font-size: 2.6rem;
    }

    .guest-greeting-name {
        font-size: 1.8rem;
    }

    .table-number-title {
        font-size: 1.8rem;
    }

    .timer-card {
        min-width: 62px;
        padding: 10px 5px;
    }

    .timer-num {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}
