/* ============================================
   Quinceañera Invitation - Azul Marino & Dorado
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Navy Blue Theme */
    --primary-color: #152542;
    --primary-light: #1e3a5f;
    --primary-dark: #0d1829;
    --primary-gradient: linear-gradient(135deg, #152542 0%, #1e3a5f 50%, #2a4a6d 100%);

    /* Accent Colors - Gold */
    --gold: #D4AF37;
    --gold-light: #E8C966;
    --gold-dark: #B8952F;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #E8C966 50%, #F4D675 100%);
    --rose-gold: #E8B4B8;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --cream: #FBF9F3;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Fonts */
    --font-display: 'Great Vibes', cursive;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max: 1200px;

    /* Shadows - Updated for navy/gold theme */
    --shadow-sm: 0 2px 8px rgba(21, 37, 66, 0.15);
    --shadow-md: 0 8px 30px rgba(21, 37, 66, 0.2);
    --shadow-lg: 0 15px 50px rgba(21, 37, 66, 0.25);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(odd) {
    background: var(--gold-light);
    animation-duration: 20s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Section Container */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #152542 0%, #1e3a5f 30%, #0d1829 70%, #152542 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.invitation-badge {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-glow);
    animation: pulse 3s infinite ease-in-out;
}

.invitation-badge i {
    font-size: 2.5rem;
    color: var(--white);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-glow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(135, 206, 235, 0.6);
    }
}

/* Quinceañera Photo Styles */
.quince-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.quince-photo-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    box-shadow:
        0 10px 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: photoGlow 4s infinite ease-in-out;
    position: relative;
    z-index: 2;
}

@keyframes photoGlow {

    0%,
    100% {
        box-shadow:
            0 10px 40px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow:
            0 15px 50px rgba(212, 175, 55, 0.5),
            0 0 80px rgba(212, 175, 55, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.quince-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--white);
}

.photo-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.photo-decoration-1 {
    width: 340px;
    height: 340px;
    border: 2px dashed var(--primary-light);
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

.photo-decoration-2 {
    width: 380px;
    height: 380px;
    border: 1px solid var(--gold-light);
    opacity: 0.3;
    animation: rotate 30s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive photo */
@media (max-width: 768px) {
    .quince-photo-frame {
        width: 180px;
        height: 180px;
    }

    .photo-decoration-1 {
        width: 220px;
        height: 220px;
    }

    .photo-decoration-2 {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .quince-photo-frame {
        width: 150px;
        height: 150px;
    }

    .photo-decoration-1 {
        width: 190px;
        height: 190px;
    }

    .photo-decoration-2 {
        width: 230px;
        height: 230px;
    }
}

.invitation-text {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--gold-light);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 8px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        text-shadow: 4px 4px 8px rgba(212, 175, 55, 0.3);
    }

    50% {
        text-shadow: 4px 4px 20px rgba(212, 175, 55, 0.5), 0 0 40px rgba(232, 201, 102, 0.4);
    }
}

.name-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.quinceañera-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
    letter-spacing: 3px;
    word-spacing: 8px;
}

.invitation-date {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 50px;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--gold);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

/* ============================================
   Countdown Section
   ============================================ */
.countdown-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

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

.countdown-item {
    background: var(--primary-gradient);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 100px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-number {
    font-family: var(--font-elegant);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    display: block;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 300;
}

/* ============================================
   Message Section
   ============================================ */
.message-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.message-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
    top: 30px;
    left: 30px;
}

.quote-icon.right {
    top: auto;
    left: auto;
    bottom: 30px;
    right: 30px;
}

.message-text {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--gray-600);
    line-height: 2;
    font-style: italic;
}

/* ============================================
   Event Sections
   ============================================ */
.event-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.event-section.reception {
    background: var(--white);
}

.event-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.event-section.reception .event-card {
    background: var(--cream);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.event-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-sm);
}

.event-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.event-name {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.event-address,
.event-time {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.event-address i,
.event-time i {
    color: var(--primary-dark);
    margin-right: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    margin-top: 20px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* ============================================
   Dress Code Section
   ============================================ */
.dress-code-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.dress-code-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.dress-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.dress-item:hover {
    transform: translateY(-5px);
}

.dress-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dress-icon i {
    font-size: 2rem;
    color: var(--white);
}

.dress-item h4 {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.dress-item p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.color-restriction {
    text-align: center;
    padding: 30px;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.color-restriction p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.color-restriction i {
    color: var(--primary-dark);
}

.reserved-color {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.5), 0 4px 15px rgba(135, 206, 235, 0.4);
}

.color-restriction span {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* ============================================
   Gift Section
   ============================================ */
.gift-section {
    padding: var(--section-padding);
    background: var(--white);
}

.gift-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.gift-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gift-icon i {
    font-size: 2rem;
    color: var(--white);
}

.gift-card h4 {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.gift-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

/* ============================================
   RSVP Section
   ============================================ */
.rsvp-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid var(--gray-200);
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--white);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(135, 206, 235, 0.2);
}

.form-group>label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

/* Reset for radio-group - it should not inherit form-group positioning */
.form-group.radio-group {
    position: static;
}

.form-group.radio-group>p {
    position: static;
    transform: none;
}

.form-group select {
    padding-left: 20px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.radio-group {
    margin-bottom: 30px;
}

.radio-group>p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gray-600);
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.radio-label:hover {
    background: rgba(135, 206, 235, 0.15);
    border-color: var(--primary-light);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: var(--white);
}

.radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.radio-label input[type="radio"]:checked+.radio-custom {
    border-color: var(--primary-color);
    background: var(--white);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    transform: scale(1);
}

.radio-label:has(input[type="radio"]:checked) {
    background: rgba(135, 206, 235, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-dark);
    font-weight: 500;
}

.rsvp-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(21, 37, 66, 0.15);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Fourth image - horizontal, full width */
.gallery-item:nth-child(4) {
    grid-column: span 2;
}

/* Responsive gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.gallery-placeholder span {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--primary-color) 100%);
    text-align: center;
}

.footer-decoration {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-md);
}

.footer-decoration i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-text {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-date {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   Music Toggle
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 100;
    transition: all var(--transition-normal);
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.music-toggle.playing {
    animation: musicPulse 1s infinite;
}

@keyframes musicPulse {

    0%,
    100% {
        box-shadow: var(--shadow-md);
    }

    50% {
        box-shadow: 0 0 30px rgba(135, 206, 235, 0.6);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 15px;
    }

    .countdown-container {
        gap: 10px;
    }

    .countdown-item {
        padding: 20px 15px;
        min-width: 70px;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .message-card {
        padding: 40px 25px;
    }

    .quote-icon {
        font-size: 1.5rem;
        top: 20px;
        left: 20px;
    }

    .quote-icon.right {
        bottom: 20px;
        right: 20px;
    }

    .event-card {
        padding: 40px 25px;
    }

    .rsvp-form {
        padding: 40px 25px;
    }

    .decorative-line {
        width: 40px;
    }

    .name-container {
        gap: 15px;
    }

    .music-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 8px;
    }

    .countdown-item {
        padding: 15px 10px;
        min-width: 60px;
        border-radius: 15px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

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

    .radio-options {
        flex-direction: column;
    }
}

/* ============================================
   Animations on Scroll
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}