/* ====================================
   ELEGANT XV AÑOS INVITATION STYLES
   Victoria's Quinceañera - Proto V2
   Clean, Elegant & Sophisticated Design
==================================== */

/* CSS Variables - Elegant Color Palette */
:root {
    /* Primary Colors - Sophisticated Navy & Gold */
    --primary-navy: #1a2332;
    --secondary-navy: #2c3e50;
    --accent-gold: #d4af37;
    --light-gold: #f4e4a6;
    --rose-gold: #e8b4a0;
    
    /* Neutral Colors */
    --cream: #faf8f3;
    --ivory: #f9f6f1;
    --warm-white: #fefdfb;
    --soft-gray: #f5f5f5;
    --charcoal: #2c3e50;
    --silver: #c0c5ce;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --text-light: #f9f6f1;
    --text-gold: #d4af37;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
    --gradient-rose: linear-gradient(135deg, #e8b4a0 0%, #d4af37 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.8) 100%);
    
    /* Shadows */
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-elegant: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-dancing: 'Dancing Script', cursive;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-elegant: 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

/* ====================================
   RESET & BASE STYLES
==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

/* ====================================
   TYPOGRAPHY CLASSES
==================================== */
.elegant-serif { font-family: var(--font-display); }
.elegant-script { font-family: var(--font-script); }
.elegant-cinzel { font-family: var(--font-elegant); }
.elegant-dancing { font-family: var(--font-dancing); }
.elegant-garamond { font-family: var(--font-serif); }

/* ====================================
   LAYOUT & CONTAINER
==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ====================================
   NAVIGATION
==================================== */
.elegant-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-medium);
}

.elegant-nav.scrolled {
    background: rgba(26, 35, 50, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-elegant);
    color: var(--accent-gold);
    z-index: 1001;
}

.logo-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sparkleRotate 8s linear infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
}

.logo-text-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
}

.logo-v {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    background: linear-gradient(135deg, #f4e4c1 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.4));
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: var(--font-serif);
    color: var(--text-light);
}

.logo-subtitle {
    position: absolute;
    bottom: -18px;
    left: 38px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent-gold);
    opacity: 0.8;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2vw, 2rem);
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-elegant);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.nav-menu a span {
    position: relative;
}

.nav-menu a i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--rose-gold));
    transition: width var(--transition-elegant);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover i {
    opacity: 1;
    transform: scale(1.15) translateY(-2px);
}

/* CTA Button en navbar */
.nav-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(232, 180, 160, 0.15));
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    padding: 0.6rem 1.25rem !important;
    color: var(--accent-gold) !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--rose-gold));
    color: var(--warm-white) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.nav-cta:hover i {
    transform: scale(1.1);
    color: var(--warm-white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* ====================================
   HERO SECTION
==================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hero-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(212,175,55,0.1)"/><circle cx="15" cy="15" r="0.8" fill="rgba(232,180,160,0.08)"/><circle cx="45" cy="45" r="1" fill="rgba(244,228,166,0.06)"/></pattern></defs><rect width="60" height="60" fill="url(%23hero-pattern)"/></svg>');
    animation: patternFloat 20s ease-in-out infinite;
}

/* Floating Decorative Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    left: var(--x);
    top: var(--y);
    animation: floatAndFade var(--duration) ease-in-out infinite var(--delay);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    pointer-events: none;
}

@keyframes floatAndFade {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.8);
    }
    25% {
        opacity: 0.5;
        transform: translateY(-10px) translateX(5px) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-5px) translateX(-5px) scale(0.95);
    }
    75% {
        opacity: 0.2;
        transform: translateY(5px) translateX(3px) scale(0.9);
    }
    100% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.8);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg) scale(1.2);
    }
    75% {
        transform: translateY(-15px) rotate(3deg) scale(1.1);
    }
}

/* Countdown Timer - Starry Night Design */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin: var(--spacing-lg) 0;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.countdown-item {
    text-align: center;
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.85), rgba(26, 35, 50, 0.9));
    backdrop-filter: blur(15px);
    padding: clamp(0.9rem, 2.5vw, 1.5rem);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.5);
    min-width: clamp(75px, 20vw, 110px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: constellation 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(145deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.9));
    box-shadow: 
        0 8px 35px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.8);
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
    animation: twinkle 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.countdown-label {
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: var(--accent-gold);
    opacity: 1;
    letter-spacing: clamp(0.5px, 0.1vw, 1.5px);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Music Player */
.music-player {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
}

.music-toggle {
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.music-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.music-toggle:hover::before {
    width: 200px;
    height: 200px;
}

.music-toggle:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        0 0 15px rgba(212, 175, 55, 0.3);
}

.music-toggle.playing {
    background: var(--gradient-rose);
    animation: musicPulse 1.5s ease-in-out infinite;
}

.music-toggle i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.music-toggle.playing i {
    animation: musicIconBounce 0.8s ease-in-out infinite;
}

@keyframes musicPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes musicIconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes patternFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 35, 50, 0.3) 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: var(--spacing-md);
}

.hero-ornament {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto var(--spacing-md);
    position: relative;
}

.hero-ornament::before,
.hero-ornament::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: -3px;
}

.hero-ornament::before { left: -10px; }
.hero-ornament::after { right: -10px; }

.hero-ornament.bottom {
    margin: var(--spacing-md) auto 0;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    animation: fadeInUp 1s ease var(--transition-fast);
}

.hero-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.3s both, starShimmer 4s ease-in-out infinite;
}

.hero-name {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 400;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease 0.6s both, starGlow 3s ease-in-out infinite;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0;
    animation: fadeInUp 1s ease 0.9s both;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.divider-ornament {
    margin: 0 var(--spacing-md);
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.hero-date {
    color: var(--text-light);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 1.2s both;
}

.date-day {
    display: block;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.date-number {
    display: inline;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 var(--spacing-sm);
    color: var(--accent-gold);
    animation: twinkle 2s ease-in-out infinite;
}

.date-month {
    display: inline;
    font-weight: 400;
}

.date-year {
    display: block;
    font-weight: 300;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease 1.5s both, float 3s ease-in-out infinite 2s;
}

.scroll-indicator i {
    display: block;
    margin-top: var(--spacing-xs);
    animation: bounce 2s infinite;
}

/* ====================================
   SECTION TITLES
==================================== */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    background: linear-gradient(45deg, var(--text-primary) 0%, var(--accent-gold) 50%, var(--text-primary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 6s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-title.centered {
    text-align: center;
}

.section-title.light {
    background: linear-gradient(45deg, var(--text-light) 0%, var(--accent-gold) 50%, var(--text-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 6s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

/* ====================================
   GODPARENTS SECTION
==================================== */
.godparents {
    padding: var(--spacing-xxl) 0;
    background: var(--soft-gray);
    position: relative;
}

.godparents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(232, 180, 160, 0.05) 100%);
    pointer-events: none;
}

.godparents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.godparent-card {
    background: var(--warm-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.godparent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.godparent-card:hover::before {
    left: 100%;
}

.godparent-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.godparent-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-navy);
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-medium);
    position: relative;
}

.godparent-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.godparent-card:hover .godparent-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.godparent-card:hover .godparent-icon::after {
    opacity: 1;
    animation: rippleEffect 1.5s ease-out infinite;
}

.godparent-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.godparent-names {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--accent-gold);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.godparent-decoration {
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto;
    position: relative;
}

.godparent-decoration::before,
.godparent-decoration::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: -2px;
}

.godparent-decoration::before { left: -8px; }
.godparent-decoration::after { right: -8px; }

/* ====================================
   PARENTS SECTION - Enhanced Elegant Design 
==================================== */
.parents-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #faf8f3 0%, #f9f6f1 50%, #fefdfb 100%);
    position: relative;
    overflow: hidden;
}

.parents-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(232, 180, 160, 0.08) 0%, transparent 50%);
    animation: rotate 40s linear infinite;
}

.parents-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.02) 50px,
            rgba(212, 175, 55, 0.02) 51px
        );
    pointer-events: none;
}

.parents-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.parent-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefdfb 100%);
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.parent-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4af37 0%, #e8b4a0 50%, #d4af37 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.parent-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.parent-card:hover::before {
    opacity: 1;
}

.parent-card:hover::after {
    left: 100%;
}

.parent-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(212, 175, 55, 0.3);
}

.parent-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #e8b4a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: white;
    font-size: 2.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: pulse-soft 3s ease-in-out infinite;
    position: relative;
}

.parent-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: ripple 2s ease-out infinite;
}

.parent-card:hover .parent-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.6),
        inset 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.parent-card h3 {
    font-family: var(--font-elegant);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.parent-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.parent-name {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-md);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
    line-height: 1.4;
}

.parent-message {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    max-width: 320px;
    margin: var(--spacing-md) auto 0;
    position: relative;
    padding: 0 var(--spacing-md);
}

.parent-message::before,
.parent-message::after {
    content: '"';
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.3);
    font-family: Georgia, serif;
    position: absolute;
}

.parent-message::before {
    top: -10px;
    left: 0;
}

.parent-message::after {
    bottom: -20px;
    right: 0;
}

.parent-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--accent-gold);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.parent-divider::before,
.parent-divider::after {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
    position: absolute;
}

.parent-divider::before {
    top: -50px;
}

.parent-divider::after {
    bottom: -50px;
}

@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ====================================
   DRESS CODE SECTION
==================================== */
.dress-code {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    position: relative;
    overflow: hidden;
}

.dress-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dress-pattern" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="40" cy="40" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(232,180,160,0.08)"/><circle cx="60" cy="60" r="1.5" fill="rgba(244,228,166,0.06)"/></pattern></defs><rect width="80" height="80" fill="url(%23dress-pattern)"/></svg>');
    opacity: 0.6;
}

.dress-code .section-subtitle.light {
    color: rgba(255, 255, 255, 0.9);
}

.dress-code-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.dress-code-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.dress-code-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 180, 160, 0.1));
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.dress-code-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
    opacity: 0;
}

.dress-code-card:hover::before {
    opacity: 1;
    animation: shimmer 2s ease-in-out;
}

.dress-code-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.dress-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-navy);
    font-size: 2rem;
    transition: all var(--transition-elegant);
    box-shadow: var(--shadow-medium);
}

.dress-code-card:hover .dress-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-gold);
}

.dress-code-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.dress-details {
    margin-bottom: var(--spacing-lg);
}

.dress-details p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.dress-details strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--warm-white);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: var(--shadow-medium);
}

.dress-preview {
    margin-top: var(--spacing-md);
}

.dress-silhouette {
    font-size: 4rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
    animation: silhouetteFloat 3s ease-in-out infinite;
}

@keyframes silhouetteFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

/* ====================================
   INTRODUCTION SECTION
==================================== */
.introduction {
    padding: var(--spacing-xxl) 0;
    background: var(--ivory);
    position: relative;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="intro-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M50 10 L60 40 L90 40 L68 58 L78 90 L50 70 L22 90 L32 58 L10 40 L40 40 Z" fill="rgba(212,175,55,0.05)" transform="rotate(12 50 50)"/></pattern></defs><rect width="100" height="100" fill="url(%23intro-pattern)"/></svg>');
    opacity: 0.6;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ====================================
   QUINCEAÑERA HERO SECTION
==================================== */
.quinceañera-hero {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.quinceañera-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 180, 160, 0.1) 0%, transparent 50%);
    animation: subtleFloat 20s ease-in-out infinite;
}

.quinceañera-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xxl);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.photo-circle-container {
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.photo-circle-border {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4c1 50%, #e8b4a0 100%);
    padding: 8px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(212, 175, 55, 0.4),
        inset 0 0 40px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.photo-circle-border::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #f4e4c1, #e8b4a0, #d4af37);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-circle-container:hover .photo-circle-border::before {
    opacity: 1;
    animation: gentleGlow 2s ease-in-out infinite;
}

.photo-circle-container:hover .photo-circle-border {
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(212, 175, 55, 0.6);
}

.photo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--warm-white);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.quinceañera-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.95) contrast(1.05);
}

.photo-circle-container:hover .quinceañera-main-photo {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.sparkle-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    animation: floatAndTwinkle 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    opacity: 0.7;
}

.sparkle:nth-child(1) {
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    animation-delay: 1s;
}

.sparkle:nth-child(3) {
    animation-delay: 2s;
}

.sparkle:nth-child(4) {
    animation-delay: 3s;
}

.quinceañera-hero-text {
    text-align: center;
    max-width: 500px;
    animation: smoothFadeInUp 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.ornamental-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.ornamental-divider .icon {
    font-size: 2rem;
    animation: gentleBounce 3s ease-in-out infinite;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--accent-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.hero-name-fancy {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--warm-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.6;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) scale(1.02);
        opacity: 0.9;
    }
}

@keyframes floatAndTwinkle {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translateY(-15px) scale(1.3) rotate(90deg);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-5px) scale(0.9) rotate(180deg);
    }
    75% {
        opacity: 0.9;
        transform: translateY(-10px) scale(1.2) rotate(270deg);
    }
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(-5deg) scale(1.1);
    }
    50% {
        transform: translateY(-12px) rotate(0deg) scale(1.15);
    }
    75% {
        transform: translateY(-8px) rotate(5deg) scale(1.1);
    }
}

@keyframes gentleGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes smoothFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    60% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.intro-quote {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    position: relative;
}

.intro-quote::before,
.intro-quote::after {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--rose-gold);
    position: absolute;
    top: -20px;
}

.intro-quote::before {
    content: '"';
    left: -30px;
}

.intro-quote::after {
    content: '"';
    right: -30px;
}

.intro-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.intro-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.signature-name {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* ====================================
   EVENT DETAILS SECTION
==================================== */
.event-details {
    padding: var(--spacing-xxl) 0;
    background: var(--warm-white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.detail-card {
    background: var(--ivory);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.08), transparent);
    transition: height 0.4s ease;
}

.detail-card:hover::before {
    height: 100%;
}

.detail-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-navy);
    font-size: 1.8rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.card-content {
    line-height: 1.6;
}

.detail-main {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-xs);
}

.detail-sub {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.detail-address {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ====================================
   TIMELINE SECTION
==================================== */
.timeline {
    padding: var(--spacing-xxl) 0;
    background: var(--soft-gray);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%, rgba(232, 180, 160, 0.05) 100%);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-lg);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-time {
    flex: 0 0 clamp(110px, 16vw, 140px);
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    font-weight: 700;
    color: var(--primary-navy);
    background: linear-gradient(135deg, 
        #f4e4c1 0%, 
        #d4af37 50%,
        #f4e4c1 100%);
    padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1.2rem, 2.5vw, 1.6rem);
    border-radius: 18px;
    box-shadow: 
        0 8px 20px rgba(212, 175, 55, 0.35),
        0 2px 8px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(184, 134, 11, 0.3),
        0 0 25px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 3;
    border: 2px solid rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
}

.timeline-time:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, 
        #f9ecc9 0%, 
        #e8b84a 30%,
        #d4af37 50%,
        #e8b84a 70%,
        #f9ecc9 100%);
    color: var(--primary-navy);
    border-color: #b8860b;
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.5),
        0 5px 20px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(184, 134, 11, 0.5),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.timeline-card {
    flex: 1;
    background: linear-gradient(145deg, 
        #fffef9 0%, 
        #fdf8f0 50%, 
        #faf5eb 100%);
    padding: clamp(2rem, 4vw, 2.8rem) clamp(1.8rem, 3.5vw, 2.5rem);
    border-radius: 24px;
    box-shadow: 
        0 10px 35px rgba(26, 35, 50, 0.08),
        0 4px 15px rgba(26, 35, 50, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 0 60px rgba(212, 175, 55, 0.05);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: visible;
}

/* Línea superior dorada */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--accent-gold) 30%,
        var(--rose-gold) 50%,
        var(--accent-gold) 70%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-card:hover::before {
    opacity: 1;
}

/* Esquinas ornamentales */
.timeline-card::after {
    content: '✦';
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 1.2rem;
    color: var(--accent-gold);
    opacity: 0.4;
    animation: sparkleGlow 3s ease-in-out infinite;
}

/* Decoración esquina superior derecha */
.timeline-item:nth-child(1) .timeline-card::after { content: '✦'; }
.timeline-item:nth-child(2) .timeline-card::after { content: '❋'; }
.timeline-item:nth-child(3) .timeline-card::after { content: '✦'; }
.timeline-item:nth-child(4) .timeline-card::after { content: '❋'; }
.timeline-item:nth-child(5) .timeline-card::after { content: '✦'; }

/* Patrón decorativo de fondo */
.timeline-card {
    background-image: 
        linear-gradient(145deg, #ffffff 0%, #faf8f3 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(212, 175, 55, 0.02) 35px,
            rgba(212, 175, 55, 0.02) 70px
        );
    background-blend-mode: normal;
}

/* Bordes decorativos en las esquinas */
.timeline-card {
    box-shadow: 
        0 10px 35px rgba(26, 35, 50, 0.08),
        0 4px 15px rgba(26, 35, 50, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 3px 3px 0 rgba(212, 175, 55, 0.1),
        inset -3px -3px 0 rgba(212, 175, 55, 0.1);
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, 
        #fffefb 0%, 
        #fefaf4 50%, 
        #fcf6ee 100%);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.3),
        0 8px 25px rgba(26, 35, 50, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 0 80px rgba(212, 175, 55, 0.08);
    border-color: var(--accent-gold);
}

.timeline-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
    transition: all 0.4s ease;
}

.timeline-card:hover .timeline-icon {
    transform: scale(1.15) rotateZ(5deg);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.35));
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-family: var(--font-serif);
    font-style: italic;
}

/* Decoraciones ornamentales en las esquinas */
.card-decoration {
    position: absolute;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--accent-gold);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    animation: sparkleGlow 4s ease-in-out infinite;
}

.card-decoration.top-left {
    top: 12px;
    left: 12px;
}

.card-decoration.top-right {
    top: 12px;
    right: 12px;
}

.card-decoration.bottom-left {
    bottom: 12px;
    left: 12px;
}

.card-decoration.bottom-right {
    bottom: 12px;
    right: 12px;
}

.timeline-card:hover .card-decoration {
    opacity: 0.8;
    animation: sparkleGlow 2s ease-in-out infinite;
}

@keyframes sparkleGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(15deg);
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

/* ====================================
   GALLERY SECTION
==================================== */
.gallery {
    padding: var(--spacing-xxl) 0;
    background: var(--ivory);
}

.gallery-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gradient-gold);
    aspect-ratio: 1;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-elegant);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: all var(--transition-medium);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--rose-gold) 100%);
    color: var(--primary-navy);
}

/* Gallery Image Styles */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
    padding: var(--spacing-lg);
    transform: translateY(100%);
    transition: transform var(--transition-elegant);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.gallery-overlay p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Featured Gallery Item */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ====================================
   RSVP SECTION
==================================== */
.rsvp {
    padding: var(--spacing-xxl) 0;
    background: var(--gradient-primary);
    position: relative;
}

.rsvp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="rsvp-pattern" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="40" cy="40" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(244,228,166,0.08)"/><circle cx="60" cy="60" r="1.5" fill="rgba(232,180,160,0.06)"/></pattern></defs><rect width="80" height="80" fill="url(%23rsvp-pattern)"/></svg>');
}

.rsvp-subtitle {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: var(--soft-gray);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-medium);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.rsvp-button,
.submit-btn-elegant {
    width: 100%;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.rsvp-button::before,
.submit-btn-elegant::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.rsvp-button:hover::before,
.submit-btn-elegant:hover::before {
    width: 300px;
    height: 300px;
}

.rsvp-button:hover,
.submit-btn-elegant:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.rsvp-button:active,
.submit-btn-elegant:active {
    transform: translateY(-1px) scale(0.98);
}

/* ====================================
   FOOTER
==================================== */
.footer {
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    background: var(--primary-navy);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.footer-ornament {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto var(--spacing-lg);
    position: relative;
}

.footer-ornament::before,
.footer-ornament::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    top: -2px;
}

.footer-ornament::before { left: -8px; }
.footer-ornament::after { right: -8px; }

.footer-ornament:last-child {
    margin: var(--spacing-lg) auto 0;
}

.footer-message {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.footer-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-signature span:first-child {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

.footer-signature .signature {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--accent-gold);
}

/* Footer Bottom Section */
.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column {
    text-align: left;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    width: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.social-link:hover i {
    color: var(--primary-navy);
    transform: scale(1.1);
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.copyright-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.copyright-text p {
    margin: var(--spacing-xs) 0;
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
}

.developer-credit i {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.developer-credit .fa-heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.developer-name {
    font-weight: 600;
    color: var(--accent-gold);
    font-family: var(--font-elegant);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.developer-credit:hover .developer-name {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.15);
    }
}

/* ====================================
   ANIMATIONS
==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(300%) rotate(45deg); }
}

@keyframes rippleEffect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
    
    .hero-main {
        font-size: 6rem;
    }
    
    .hero-name {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-main {
        font-size: 4.5rem;
    }
    
    .hero-name {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .godparents-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .parents-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Quinceañera Hero */
    .photo-circle-border {
        width: clamp(200px, 50vw, 280px);
        height: clamp(200px, 50vw, 280px);
    }
    
    .quinceañera-hero {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    /* Footer responsive tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-xl);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        transition: all var(--transition-medium);
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        transform: scale(1.05);
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: calc(var(--spacing-xl) + 60px) 1rem var(--spacing-xl);
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .floating-element {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        gap: clamp(0.5rem, 2vw, 1rem);
        padding: 0 0.5rem;
    }
    
    .countdown-item {
        min-width: clamp(65px, 18vw, 85px);
        padding: clamp(0.75rem, 2vw, 1.25rem);
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Quinceañera Hero Section */
    .quinceañera-hero-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .photo-circle-border {
        width: 280px;
        height: 280px;
    }
    
    .hero-name-fancy {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        padding: 0 var(--spacing-md);
    }
    
    .sparkle {
        font-size: 1.5rem;
    }
    
    /* Introduction */
    .intro-quote {
        font-size: 1.8rem;
        margin: 0 var(--spacing-md);
    }
    
    .intro-quote::before,
    .intro-quote::after {
        font-size: 3rem;
        top: -15px;
    }
    
    .intro-quote::before { left: -20px; }
    .intro-quote::after { right: -20px; }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .godparents-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Parents Section */
    .parents-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .parent-divider {
        transform: rotate(90deg);
        margin: var(--spacing-lg) auto;
        font-size: clamp(1.5rem, 5vw, 2rem);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .parent-divider::before,
    .parent-divider::after {
        display: none;
    }
    
    .parent-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .parent-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .parent-card h3 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .parent-name {
        font-size: 1.5rem;
    }
    
    .parent-message {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    /* Timeline */
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-time {
        position: absolute;
        left: 0;
        flex: none;
        width: auto;
        min-width: 100px;
    }
    
    .timeline-content {
        margin-left: var(--spacing-md);
        margin-right: 0;
        border-left: 4px solid var(--accent-gold) !important;
        border-right: none !important;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Music Player */
    .music-player {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .music-toggle {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .music-text {
        display: none;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
        padding: 2rem 1rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .logo-v {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        padding: calc(var(--spacing-xl) + 60px) 1rem var(--spacing-md);
    }
    
    .hero-content {
        padding: 0.5rem;
        max-width: 100%;
    }
    
    .hero-ornament {
        width: 50px;
        margin: 0 auto 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.6rem;
        padding: 0 0.5rem;
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .countdown-item {
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 0;
        max-width: calc(50% - 0.4rem);
        padding: 1rem 0.5rem;
        margin: 0;
        border-width: 2px;
    }
    
    .countdown-number {
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
        margin-bottom: 0.4rem;
    }
    
    .countdown-label {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem) !important;
        letter-spacing: 0.5px;
    }
    
    /* Floating elements - minimal on mobile */
    .floating-element {
        font-size: 0.9rem;
        opacity: 0.25;
    }
    
    .floating-element:nth-child(n+3) {
        display: none !important;
    }
    
    .floating-elements {
        opacity: 0.5;
    }
    
    /* Quinceañera Hero - Mobile */
    .quinceañera-hero {
        padding: var(--spacing-lg) 1rem;
        min-height: auto;
    }
    
    .quinceañera-hero-content {
        gap: var(--spacing-md);
    }
    
    .photo-circle-container {
        margin-bottom: var(--spacing-md);
    }
    
    .photo-circle-border {
        width: clamp(200px, 60vw, 260px);
        height: clamp(200px, 60vw, 260px);
        border-width: 4px;
    }
    
    .sparkle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .ornamental-divider .line {
        width: 30px;
    }
    
    .ornamental-divider .icon {
        font-size: 1rem;
    }
    
    /* Sections */
    .godparents,
    .dress-code,
    .introduction,
    .event-details,
    .timeline,
    .rsvp,
    .parents-section {
        padding: var(--spacing-xl) 0;
    }
    
    .intro-quote {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin: 0;
        padding: 0 0.5rem;
    }
    
    .intro-quote::before,
    .intro-quote::after {
        position: static;
        display: block;
        line-height: 0.5;
        font-size: 2rem;
    }
    
    .intro-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    /* Cards */
    .detail-card,
    .godparent-card,
    .parent-card,
    .dress-code-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .card-icon,
    .godparent-icon,
    .parent-icon,
    .dress-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .card-title,
    .godparent-card h3,
    .parent-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-main {
        font-size: 1rem;
    }
    
    .detail-sub,
    .detail-address {
        font-size: 0.9rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Timeline */
    .timeline {
        padding: var(--spacing-xl) 0;
    }
    
    .timeline-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    
    .timeline-time {
        flex: 0 0 auto;
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .timeline-card {
        flex: 1;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .timeline-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-card h3 {
        font-size: 1.2rem;
    }
    
    .timeline-card p {
        font-size: 0.95rem;
    }
    
    .timeline-content h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-bottom: 0.75rem;
        color: var(--text-primary);
        font-family: var(--font-display);
        font-weight: 600;
    }
    
    .timeline-content p {
        font-size: clamp(1rem, 3vw, 1.1rem);
        line-height: 1.7;
        color: var(--text-secondary);
    }
    
    /* Forms */
    .rsvp-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .rsvp-button,
    .submit-btn-elegant {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    /* Music Player */
    .music-player {
        bottom: 1rem;
        right: 1rem;
    }
    
    .music-toggle {
        width: 48px;
        height: 48px;
        padding: 0.75rem;
        border-radius: 50%;
    }
    
    .music-toggle .music-text {
        display: none;
    }
    
    /* Scroll to top */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .music-toggle .music-text {
        display: none;
    }
    
    /* Footer responsive mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column:last-child {
        grid-column: 1;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-message {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .footer-signature .signature {
        font-size: 1.8rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .developer-credit {
        font-size: 0.75rem;
    }
    
    .developer-name {
        font-size: 0.8rem;
    }
}

/* Tablet Landscape Extra */
@media (max-width: 900px) {
    .container {
        max-width: 90%;
    }
    
    .hero-main {
        font-size: 3.5rem;
    }
    
    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        padding-left: var(--spacing-xl);
    }
}

/* Mobile Large Plus */
@media (max-width: 600px) {
    .hero-content {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }
    
    .hero-main {
        font-size: 2.8rem;
    }
    
    .hero-name {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem) !important;
        margin-bottom: var(--spacing-md);
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
        padding: 0 1rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: calc(var(--spacing-xl) + 60px) 0.75rem var(--spacing-md);
    }
    
    .hero-content {
        padding: 0.25rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin: 1rem 0;
    }
    
    .countdown-item {
        flex: 1 1 calc(50% - 0.3rem);
        min-width: 0;
        max-width: calc(50% - 0.3rem);
        padding: 0.85rem 0.4rem;
        border-width: 2px;
    }
    
    .countdown-number {
        font-size: 1.6rem !important;
        margin-bottom: 0.35rem;
    }
    
    .countdown-label {
        font-size: 0.7rem !important;
        letter-spacing: 0.3px;
    }
    
    .photo-circle-border {
        width: 180px;
        height: 180px;
    }
    
    .sparkle {
        font-size: 1rem;
    }
    
    .detail-card,
    .godparent-card,
    .parent-card {
        padding: 1rem;
    }
    
    .card-icon,
    .godparent-icon,
    .parent-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .parent-divider {
        font-size: 1.5rem !important;
        margin: 1rem auto !important;
    }
    
    .hero-main {
        font-size: 2.2rem;
    }
    
    .hero-name {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Timeline específico para móviles pequeños */
    .timeline {
        padding: 2rem 0;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-container::before {
        width: 1px;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .countdown-item {
        min-width: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Orientation specific styles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .countdown-timer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin: 1rem 0;
    }
    
    .countdown-item {
        min-width: auto;
        padding: 0.75rem 0.5rem;
    }
    
    .photo-circle-border {
        width: 200px;
        height: 200px;
    }
    
    .quinceañera-hero {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .quinceañera-hero-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .photo-circle-container {
        flex: 0 0 auto;
    }
    
    .quinceañera-hero-text {
        flex: 1;
        text-align: left;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
    }
    
    .godparents,
    .event-details,
    .parents-section,
    .dress-code,
    .timeline,
    .rsvp {
        padding: 2rem 0;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background::after {
        background-size: 3px 3px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-element {
        animation: none !important;
    }
    
    .particle {
        animation: none !important;
        display: none;
    }
}

/* ====================================
   ADDITIONAL MOBILE OPTIMIZATIONS
==================================== */
@media (max-width: 480px) {
    /* Prevent horizontal scroll */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
    }
    
    /* Viewport fixes */
    .hero {
        min-height: -webkit-fill-available;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better readability */
    p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        line-height: 1.6;
    }
    
    /* Sections padding */
    section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Footer */
    .footer-message {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    /* Names responsive */
    .godparent-names,
    .parent-name {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
}

/* ====================================
   ADVANCED VISUAL EFFECTS
==================================== */

/* Enhanced Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect-strong {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Neumorphism Effects */
.neomorphism {
    background: #f0f0f3;
    box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #ffffff;
    border-radius: 20px;
}

.neomorphism-inset {
    background: #f0f0f3;
    box-shadow: inset 20px 20px 60px #bebebe, inset -20px -20px 60px #ffffff;
    border-radius: 20px;
}

/* Enhanced Text Effects */
.text-gradient {
    background: linear-gradient(45deg, var(--accent-gold), var(--rose-gold), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-shadow-elegant {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1),
                 0 0 20px rgba(212, 175, 55, 0.2);
}

.text-glow {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.6),
                 0 0 30px rgba(212, 175, 55, 0.4);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                     0 0 20px rgba(212, 175, 55, 0.6),
                     0 0 30px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 1),
                     0 0 25px rgba(212, 175, 55, 0.8),
                     0 0 35px rgba(212, 175, 55, 0.6);
    }
}

/* Enhanced Typography Hierarchy */
.text-display {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.text-headline {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.text-subheadline {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.text-body-large {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.015em;
    line-height: 1.6;
}

.text-caption {
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Enhanced Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--rose-gold) 100%);
    border: none;
    border-radius: 50px;
    color: var(--primary-navy);
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-elegant);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--accent-gold);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-gold);
    transition: width var(--transition-elegant);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Advanced Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    animation: scaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--primary-navy);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: gentleBounceIn 0.6s ease-out;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.scroll-to-top:hover::before {
    width: 100%;
    height: 100%;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
    animation: arrowBounce 0.8s ease-in-out infinite;
}

@keyframes gentleBounceIn {
    0% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.rotate-in {
    animation: rotateIn 1s ease forwards;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* ================================
   STARRY NIGHT ANIMATIONS
   ================================ */
@keyframes starShimmer {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}

@keyframes starGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.5),
            0 0 20px rgba(212, 175, 55, 0.3),
            0 2px 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.8),
            0 0 40px rgba(212, 175, 55, 0.5),
            0 2px 20px rgba(212, 175, 55, 0.7);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

@keyframes shootingStar {
    0% {
        transform: translateX(-100px) translateY(-100px) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(1000px) translateY(1000px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes constellation {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes cosmicDust {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.2;
    }
}

/* Enhanced Card Interactions */
.interactive-card {
    position: relative;
    transition: all var(--transition-elegant);
    cursor: pointer;
}

.interactive-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    border-radius: inherit;
}

.interactive-card:hover::after {
    opacity: 1;
    animation: cardShimmer 1.5s ease;
}

@keyframes cardShimmer {
    0% { transform: translateX(-100%) skew(-15deg); }
    100% { transform: translateX(200%) skew(-15deg); }
}

.interactive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Particle System Enhancement */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
    opacity: 0.7;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Scroll Indicators */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--rose-gold));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}