/* ==========================================
   CSS Variables - Paleta de Colores y Tipografía
   ========================================== */
:root {
    /* Colores - Temática Bosque Verde Eucalipto */
    --color-eucalyptus-primary: #8b9477;
    --color-eucalyptus-secondary: #6d7a5e;
    --color-eucalyptus-dark: #5a6549;
    --color-eucalyptus-light: #9ba886;
    --color-background: #F5F2ED;
    --color-background-alt: #FAF8F5;
    --color-white: #FFFFFF;

    /* Tipografía */
    --font-cursive: 'Parisienne', cursive;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Professional Typography Scale (8 sizes) */
    --text-xs: 0.75rem;      /* 12px - Small labels, fine print */
    --text-sm: 0.875rem;     /* 14px - Secondary text, captions */
    --text-base: 1rem;       /* 16px - Body text, descriptions */
    --text-lg: 1.125rem;     /* 18px - Emphasized body text */
    --text-xl: 1.5rem;       /* 24px - Section subtitles */
    --text-2xl: 2rem;        /* 32px - Medium headings */
    --text-3xl: 3rem;        /* 48px - Large headings */
    --text-4xl: 4rem;        /* 64px - Hero text, display */

    /* Tamaños */
    --decoration-size: 200px;
    --logo-size: 280px;
    --button-size: 80px;
}

/* ==========================================
   Reset y Configuración Base
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: url('../elements/background.png') center top repeat-y;
    background-size: 100% auto;
    background-attachment: scroll;
    background-color: var(--color-background);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Subtle blending overlay for background seams */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0%,
        transparent 35%,
        rgba(245, 242, 237, 0.1) 42%,
        rgba(245, 242, 237, 0.25) 50%,
        rgba(245, 242, 237, 0.1) 58%,
        transparent 65%,
        transparent 100%
    );
    background-size: 100% 60vh;
    pointer-events: none;
    z-index: 1;
}

/* ==========================================
   Section Card - Card decorativa en cada sección
   ========================================== */
.section-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    width: 85%;
    max-width: 1100px;
    height: auto;
}

.section-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

/* Asegurar que los wrappers tengan position relative */
.countdown-wrapper,
.date-wrapper,
.ceremony-wrapper,
.location-wrapper,
.dresscode-wrapper,
.rsvp-wrapper,
.info-wrapper,
.emergency-fund-wrapper,
.playlist-wrapper {
    position: relative;
}

/* Asegurar que el contenido esté sobre la card */
.countdown-wrapper > *:not(.section-card),
.date-wrapper > *:not(.section-card),
.ceremony-wrapper > *:not(.section-card),
.location-wrapper > *:not(.section-card),
.dresscode-wrapper > *:not(.section-card),
.rsvp-wrapper > *:not(.section-card),
.info-wrapper > *:not(.section-card),
.emergency-fund-wrapper > *:not(.section-card),
.playlist-wrapper > *:not(.section-card) {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Scroll Arrow
   ========================================== */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-eucalyptus-primary);
    transition: color 0.3s ease;
    outline: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -20px;
}

.scroll-arrow:hover {
    color: var(--color-eucalyptus-dark);
}

.scroll-arrow:active {
    color: var(--color-eucalyptus-primary);
}

.scroll-arrow:focus-visible {
    outline: 2px solid var(--color-eucalyptus-primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.scroll-arrow svg {
    width: 40px;
    height: 40px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ==========================================
   Countdown Section
   ========================================== */
.countdown-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.countdown-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.countdown-subtitle {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 650px;
    margin-top: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(122, 155, 142, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(122, 155, 142, 0.25);
}

.countdown-number {
    font-family: var(--font-sans);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-eucalyptus-primary);
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-eucalyptus-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   Hero Section - Contenido Principal
   ========================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ==========================================
   Hero Top Image - Fullscreen Flowers
   ========================================== */
.hero-top-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.top-flowers {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 80%;
}

/* ==========================================
   Footer Image - Fullscreen Flowers Rotated (in Wedshoots)
   ========================================== */
.footer-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 30vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bottom-flowers {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transform: rotate(180deg);
}

/* ==========================================
   Logo
   ========================================== */
.logo-container {
    width: var(--logo-size);
    height: auto;
    max-width: 90%;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(90, 122, 109, 0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* ==========================================
   Texto Principal
   ========================================== */
.main-text {
    font-family: var(--font-cursive);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

/* ==========================================
   Date Section
   ========================================== */
.date-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.date-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.rings-icon {
    width: 63px;
    height: auto;
    color: var(--color-eucalyptus-dark);
    margin-bottom: 0.25rem;
}

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

.date-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.date-description {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0;
}

.date-display {
    margin: 0.5rem 0;
}

.date-large {
    font-family: var(--font-sans);
    font-size: var(--text-3xl);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
}

.date-year {
    font-family: var(--font-sans);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    line-height: 1.1;
    margin: 0.25rem 0 0 0;
    letter-spacing: 0.05em;
}

.date-message {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    font-style: italic;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

/* ==========================================
   Ceremony Section
   ========================================== */
.ceremony-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.ceremony-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.church-icon {
    width: 45px;
    height: auto;
    margin-bottom: 0.25rem;
}

.church-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.ceremony-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.ceremony-divider {
    width: 60%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0;
}

.ceremony-time {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-eucalyptus-dark);
    margin: 0.25rem 0;
}

.ceremony-venue {
    font-family: var(--font-sans);
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    letter-spacing: 0.05em;
    margin: 0.5rem 0 0.25rem 0;
}

.ceremony-address {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    font-style: italic;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.25rem 0 0.75rem 0;
}

.ceremony-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: var(--color-eucalyptus-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 148, 119, 0.3);
    margin: 0.25rem 0;
}

.ceremony-button:hover {
    background-color: var(--color-eucalyptus-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 148, 119, 0.4);
}

.ceremony-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 148, 119, 0.3);
}

/* ==========================================
   Location Section
   ========================================== */
.location-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.champagne-icon {
    width: 45px;
    height: auto;
    margin-bottom: 0.25rem;
}

.champagne-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.location-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.location-divider {
    width: 60%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0;
}

.location-time {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-eucalyptus-dark);
    margin: 0.25rem 0;
}

.location-venue {
    font-family: var(--font-sans);
    font-size: var(--text-xl);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    letter-spacing: 0.05em;
    margin: 0.5rem 0 0.25rem 0;
}

.location-address {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    font-style: italic;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.25rem 0 0.75rem 0;
}

.location-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: var(--color-eucalyptus-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 148, 119, 0.3);
    margin: 0.25rem 0;
}

.location-button:hover {
    background-color: var(--color-eucalyptus-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 148, 119, 0.4);
}

.location-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 148, 119, 0.3);
}

.location-note {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 300;
    font-style: italic;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

/* ==========================================
   Dress Code Section
   ========================================== */
.dresscode-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.dresscode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.bow-icon {
    width: 47px;
    height: auto;
    margin-bottom: 0.25rem;
}

.bow-icon img {
    width: 100%;
    height: auto;
    filter: brightness(0) saturate(100%) invert(52%) sepia(11%) saturate(806%) hue-rotate(52deg) brightness(95%) contrast(87%);
}

.dresscode-title {
    font-family: var(--font-sans);
    font-size: var(--text-2xl);
    font-weight: 300;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
}

.dresscode-divider {
    width: 50%;
    max-width: 350px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0;
}

.dresscode-subtitle {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0.5rem 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.dresscode-description {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.5;
    margin: 0.5rem 0;
}

.dresscode-description em {
    font-style: italic;
    font-weight: 300;
}

.dresscode-note {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

.dresscode-stars {
    width: 50px;
    height: auto;
    color: var(--color-eucalyptus-dark);
    margin-top: 1rem;
}

.dresscode-stars svg {
    width: 100%;
    height: auto;
}

/* ==========================================
   RSVP Section
   ========================================== */
.rsvp-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.rsvp-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.rsvp-stars {
    width: 216px;
    height: auto;
    color: var(--color-eucalyptus-dark);
    margin-bottom: 0.25rem;
}

.rsvp-stars svg {
    width: 100%;
    height: auto;
}

.rsvp-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.rsvp-divider {
    width: 50%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0;
}

.rsvp-phrase {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 300;
    font-style: italic;
    color: var(--color-eucalyptus-dark);
    line-height: 1.4;
    margin: 0.5rem 0;
}

.rsvp-description {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.25rem 0 0.75rem 0;
}

.rsvp-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: var(--color-eucalyptus-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 148, 119, 0.3);
    margin: 0.25rem 0;
}

.rsvp-button:hover {
    background-color: var(--color-eucalyptus-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 148, 119, 0.4);
}

.rsvp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 148, 119, 0.3);
}

.rsvp-button:focus {
    outline: 3px solid var(--color-eucalyptus-light);
    outline-offset: 4px;
}

.rsvp-form-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    width: 100%;
    position: relative;
}

.rsvp-form-container.active {
    max-height: 850px;
}

.iframe-loading {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--color-eucalyptus-dark);
    font-family: var(--font-sans);
    font-size: var(--text-base);
}

.rsvp-form-container.active .iframe-loading {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.rsvp-form-container.active .rsvp-form.loaded ~ .iframe-loading {
    display: none;
}

.rsvp-form {
    width: 100%;
    max-width: 700px;
    height: 800px;
    border: none;
    margin: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 148, 119, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.rsvp-form.loaded {
    opacity: 1;
}

.rsvp-note {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 300;
    color: var(--color-eucalyptus-secondary);
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
}

/* ==========================================
   Info Section
   ========================================== */
.info-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 148, 119, 0.8);
    z-index: 1;
    pointer-events: none;
}

.info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.info-top-left-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: auto;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.info-stars {
    width: 99px;
    height: auto;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 0.25rem;
}

.info-stars svg {
    width: 100%;
    height: auto;
}

.info-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.info-divider {
    width: 50%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0 0.75rem 0;
}

.info-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 650px;
    margin-top: 0.5rem;
}

.info-button-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.info-circle-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--color-eucalyptus-primary);
    border: 3px solid rgba(250, 248, 245, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(139, 148, 119, 0.4);
    transition: all 0.3s ease;
    outline: none;
}

.info-circle-button:hover {
    background-color: var(--color-eucalyptus-dark);
    border-color: var(--color-white);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(139, 148, 119, 0.5);
    transform: translateY(-4px) scale(1.05);
}

.info-circle-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 16px rgba(139, 148, 119, 0.4);
}

.info-circle-button:focus {
    outline: 3px solid var(--color-white);
    outline-offset: 4px;
}

.info-circle-button svg,
.info-circle-button img {
    width: 36px;
    height: 36px;
}

.info-button-label {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.08em;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   Emergency Fund Section
   ========================================== */
.emergency-fund-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.emergency-fund-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.gift-icon {
    width: 47px;
    height: auto;
    color: var(--color-eucalyptus-dark);
    margin-bottom: 0.25rem;
}

.gift-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.emergency-fund-title {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.emergency-fund-divider {
    width: 50%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-eucalyptus-secondary), transparent);
    margin: 0.25rem 0 0.5rem 0;
}

.emergency-fund-description {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
}

.alias-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 500px;
    margin-top: 0.5rem;
}

.alias-box {
    background-color: var(--color-eucalyptus-primary);
    border-radius: 50px;
    padding: 0.85rem 2rem;
    box-shadow: 0 2px 8px rgba(139, 148, 119, 0.15);
    transition: all 0.3s ease;
    cursor: text;
}

.alias-box:hover {
    box-shadow: 0 6px 20px rgba(139, 148, 119, 0.3);
    transform: translateY(-2px);
}

.alias-text {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    user-select: text;
    letter-spacing: 0.03em;
}

/* ==========================================
   Playlist Section
   ========================================== */
.playlist-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.playlist-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
}

.music-icon {
    width: 54px;
    height: auto;
    color: var(--color-eucalyptus-dark);
    margin-bottom: 0.25rem;
}

.music-icon svg,
.music-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.playlist-title {
    font-family: var(--font-sans);
    font-size: var(--text-xl);
    font-weight: 300;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 0.05em;
}

.playlist-subtitle {
    font-family: var(--font-cursive);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 8px rgba(90, 122, 109, 0.1);
    letter-spacing: 0;
}

.heart-icon {
    width: 25px;
    height: auto;
    color: var(--color-eucalyptus-primary);
    margin: 0.25rem 0;
}

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

.playlist-description {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--color-eucalyptus-dark);
    line-height: 1.4;
    margin: 0.5rem 0 1rem 0;
}

.spotify-embed-container {
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed-container iframe {
    display: block;
    border-radius: 12px;
}

.playlist-button {
    display: inline-block;
    padding: 0.6rem 2rem;
    background-color: var(--color-eucalyptus-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 148, 119, 0.15);
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.playlist-button:hover {
    background-color: var(--color-eucalyptus-dark);
    box-shadow: 0 6px 20px rgba(139, 148, 119, 0.3);
    transform: translateY(-2px);
}

.playlist-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(139, 148, 119, 0.2);
}

.playlist-button:focus {
    outline: 3px solid var(--color-eucalyptus-light);
    outline-offset: 4px;
}

/* ==========================================
   Wedshoots Section
   ========================================== */
.wedshoots-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
    scroll-snap-align: start;
}

.wedshoots-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.camera-icon {
    width: 63px;
    height: auto;
    color: #8B9477;
    margin-bottom: 1rem;
}

.camera-icon svg,
.camera-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.wedshoots-text {
    font-family: var(--font-sans);
    font-size: var(--text-xl);
    font-weight: 300;
    color: #8B9477;
    line-height: 1.4;
    margin: 0.25rem 0;
    letter-spacing: 0.02em;
}

.wedshoots-title {
    font-family: var(--font-cursive);
    font-size: var(--text-4xl);
    font-weight: 400;
    color: #8B9477;
    line-height: 1.2;
    margin: 1rem 0 2rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0;
}

.wedshoots-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.wedshoots-link {
    display: inline-block;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.wedshoots-link:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

.wedshoots-link:active {
    transform: translateY(-2px);
}

.wedshoots-logo {
    width: 120px;
    height: auto;
}

.wedshoots-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.wedshoots-download {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 400;
    color: #8B9477;
    margin: 0;
    letter-spacing: 0.02em;
}

.wedshoots-code {
    font-family: var(--font-sans);
    font-size: var(--text-lg);
    font-weight: 300;
    color: #8B9477;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --decoration-size: 150px;
        --logo-size: 220px;
        --button-size: 70px;

        /* Responsive Typography - Tablet */
        --text-xs: 0.75rem;
        --text-sm: 0.875rem;
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.5rem;
        --text-2xl: 2rem;
        --text-3xl: 3rem;
        --text-4xl: 3.5rem;
    }

    .hero-top-image {
        max-height: 40vh;
    }

    .footer-image {
        max-height: 40vh;
    }

    .countdown-timer {
        gap: 1.5rem;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .info-buttons {
        gap: 2rem;
    }

    .info-circle-button {
        width: 100px;
        height: 100px;
    }

    .info-circle-button svg,
    .info-circle-button img {
        width: 41px;
        height: 41px;
    }

    .playlist-button {
        padding: 0.7rem 2.25rem;
    }

    .wedshoots-logo {
        width: 100px;
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --decoration-size: 120px;
        --logo-size: 180px;
        --button-size: 60px;

        /* Responsive Typography - Mobile */
        --text-xs: 0.75rem;
        --text-sm: 0.875rem;
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.5rem;
        --text-2xl: 2rem;
        --text-3xl: 2.75rem;
        --text-4xl: 3rem;
    }

    .hero-top-image {
        max-height: 50vh;
    }

    .footer-image {
        max-height: 50vh;
    }

    .section-card {
        width: 90%;
        max-width: 700px;
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }

    .countdown-section {
        padding: 1.5rem;
    }

    .countdown-wrapper {
        gap: 1.5rem;
    }

    .countdown-title {
        font-size: 3rem;
    }

    .countdown-subtitle {
        font-size: 1rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem;
    }

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

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

    .hero-section {
        padding: 1.5rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .main-text {
        font-size: 2.8rem;
    }

    .hero-top-image {
        height: auto;
    }

    .top-flowers {
        height: auto;
        object-position: center top;
    }

    .scroll-arrow {
        bottom: 1.5rem;
    }

    .scroll-arrow svg {
        width: 32px;
        height: 32px;
    }

    .rings-icon {
        width: 72px;
    }

    .date-title {
        font-size: 2.5rem;
    }

    .date-description {
        font-size: 1rem;
    }

    .date-large {
        font-size: 2.5rem;
    }

    .date-year {
        font-size: 2rem;
    }

    .date-message {
        font-size: 1rem;
    }

    .ceremony-section {
        padding: 1.5rem;
    }

    .ceremony-title {
        font-size: 2.5rem;
    }

    .ceremony-venue {
        font-size: 1.5rem;
    }

    .ceremony-time {
        font-size: 1.25rem;
    }

    .ceremony-address {
        font-size: 0.95rem;
    }

    .ceremony-button {
        padding: 0.65rem 2rem;
        font-size: 1rem;
    }

    .church-icon {
        width: 45px;
    }

    .location-section {
        padding: 1.5rem;
    }

    .location-title {
        font-size: 2.5rem;
    }

    .location-venue {
        font-size: 1.5rem;
    }

    .location-time {
        font-size: 1.25rem;
    }

    .location-address {
        font-size: 0.95rem;
    }

    .location-button {
        padding: 0.65rem 2rem;
        font-size: 1rem;
    }

    .location-note {
        font-size: 0.9rem;
    }

    .champagne-icon {
        width: 45px;
    }

    .dresscode-section {
        padding: 1.5rem;
    }

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

    .dresscode-subtitle {
        font-size: 3rem;
    }

    .dresscode-description {
        font-size: 1.1rem;
    }

    .dresscode-note {
        font-size: 0.95rem;
    }

    .bow-icon {
        width: 54px;
    }

    .dresscode-stars {
        width: 40px;
    }

    .rsvp-section {
        padding: 1.5rem;
    }

    .rsvp-title {
        font-size: 3rem;
    }

    .rsvp-phrase {
        font-size: 1.1rem;
    }

    .rsvp-description {
        font-size: 1rem;
    }

    .rsvp-form-container.active {
        max-height: 750px;
    }

    .rsvp-form {
        height: 700px;
    }

    .rsvp-note {
        font-size: 0.9rem;
    }

    .rsvp-stars {
        width: 54px;
    }

    .info-section {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 3rem;
    }

    .info-buttons {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
    }

    .info-circle-button {
        width: 100px;
        height: 100px;
    }

    .info-circle-button svg,
    .info-circle-button img {
        width: 41px;
        height: 41px;
    }

    .info-button-label {
        font-size: 1rem;
    }

    .info-stars {
        width: 54px;
    }

    .info-top-left-image {
        width: 400px;
        top: 0;
        left: 0;
    }

    .emergency-fund-section {
        padding: 1.5rem;
    }

    .emergency-fund-title {
        font-size: 3rem;
    }

    .emergency-fund-description {
        font-size: 1.1rem;
    }

    .alias-container {
        max-width: 400px;
    }

    .alias-box {
        padding: 1rem 2rem;
    }

    .alias-text {
        font-size: 1.05rem;
    }

    .playlist-section {
        padding: 1.5rem;
    }

    .playlist-title {
        font-size: 1.5rem;
    }

    .playlist-subtitle {
        font-size: 3rem;
    }

    .playlist-description {
        font-size: 1.1rem;
    }

    .playlist-button {
        font-size: 1rem;
        padding: 0.65rem 2rem;
    }

    .music-icon {
        width: 54px;
    }

    .heart-icon {
        width: 27px;
    }

    .spotify-embed-container {
        margin: 1rem auto;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .spotify-embed-container iframe {
        height: 280px !important;
        box-shadow: 0 2px 8px rgba(139, 148, 119, 0.15);
    }

    .spotify-embed-container iframe:hover {
        box-shadow: 0 4px 12px rgba(139, 148, 119, 0.25);
    }

    .wedshoots-section {
        padding: 1.5rem;
    }

    .wedshoots-text {
        font-size: 1.2rem;
    }

    .wedshoots-title {
        font-size: 3rem;
    }

    .wedshoots-info-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wedshoots-text-container {
        align-items: center;
        text-align: center;
    }

    .wedshoots-logo {
        width: 90px;
    }

    .wedshoots-download {
        font-size: 1.05rem;
    }

    .wedshoots-code {
        font-size: 0.95rem;
    }

    .camera-icon {
        width: 50px;
        margin-bottom: 0;
    }

    .wedshoots-wrapper {
        gap: 0.25rem;
    }

    /* Decoraciones más sutiles en móvil */
    .eucalyptus-decoration {
        opacity: 0.5;
    }
}

/* Mobile pequeño (320px - 480px) */
@media (max-width: 480px) {
    :root {
        --decoration-size: 100px;
        --logo-size: 150px;
        --button-size: 55px;

        /* Responsive Typography - Small Mobile */
        --text-xs: 0.75rem;
        --text-sm: 0.875rem;
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.5rem;
        --text-2xl: 1.75rem;
        --text-3xl: 2.5rem;
        --text-4xl: 2.5rem;
    }

    .section-card {
        width: 92%;
        max-width: 500px;
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    .countdown-title {
        font-size: 2.5rem;
    }

    .countdown-subtitle {
        font-size: 0.9rem;
    }

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

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

    .rings-icon {
        width: 63px;
    }

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

    .date-description {
        font-size: 0.9rem;
    }

    .date-large {
        font-size: 2rem;
    }

    .date-year {
        font-size: 1.75rem;
    }

    .date-message {
        font-size: 0.9rem;
    }

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

    .ceremony-venue {
        font-size: 1.3rem;
    }

    .ceremony-time {
        font-size: 1.1rem;
    }

    .ceremony-address {
        font-size: 0.85rem;
    }

    .ceremony-button {
        padding: 0.6rem 1.75rem;
        font-size: 0.95rem;
    }

    .church-icon {
        width: 41px;
    }

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

    .location-venue {
        font-size: 1.3rem;
    }

    .location-time {
        font-size: 1.1rem;
    }

    .location-address {
        font-size: 0.85rem;
    }

    .location-button {
        padding: 0.6rem 1.75rem;
        font-size: 0.95rem;
    }

    .location-note {
        font-size: 0.85rem;
    }

    .champagne-icon {
        width: 41px;
    }

    .dresscode-title {
        font-size: 1.75rem;
    }

    .dresscode-subtitle {
        font-size: 2.5rem;
    }

    .dresscode-description {
        font-size: 1rem;
    }

    .dresscode-note {
        font-size: 0.85rem;
    }

    .bow-icon {
        width: 47px;
    }

    .dresscode-stars {
        width: 35px;
    }

    .rsvp-title {
        font-size: 2.5rem;
    }

    .rsvp-phrase {
        font-size: 1rem;
    }

    .rsvp-description {
        font-size: 0.95rem;
    }

    .rsvp-form-container.active {
        max-height: 650px;
    }

    .rsvp-form {
        height: 600px;
    }

    .rsvp-note {
        font-size: 0.85rem;
    }

    .rsvp-stars {
        width: 45px;
    }

    .info-title {
        font-size: 2.5rem;
    }

    .info-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 250px;
    }

    .info-circle-button {
        width: 90px;
        height: 90px;
    }

    .info-circle-button svg,
    .info-circle-button img {
        width: 36px;
        height: 36px;
    }

    .info-button-label {
        font-size: 0.95rem;
    }

    .info-stars {
        width: 45px;
    }

    .info-top-left-image {
        width: 320px;
        top: 0;
        left: 0;
    }

    .emergency-fund-title {
        font-size: 2.5rem;
    }

    .emergency-fund-description {
        font-size: 1rem;
    }

    .alias-container {
        max-width: 350px;
    }

    .alias-box {
        padding: 0.9rem 1.75rem;
    }

    .alias-text {
        font-size: 1rem;
    }

    .playlist-title {
        font-size: 1.3rem;
    }

    .playlist-subtitle {
        font-size: 2.5rem;
    }

    .playlist-description {
        font-size: 1rem;
    }

    .playlist-button {
        font-size: 0.95rem;
        padding: 0.6rem 1.75rem;
    }

    .music-icon {
        width: 50px;
    }

    .heart-icon {
        width: 25px;
    }

    .spotify-embed-container {
        margin: 0.75rem auto;
        max-width: 100%;
        padding: 0 0.25rem;
    }

    .spotify-embed-container iframe {
        height: 240px !important;
        box-shadow: 0 2px 6px rgba(139, 148, 119, 0.12);
    }

    .spotify-embed-container iframe:hover {
        box-shadow: 0 3px 10px rgba(139, 148, 119, 0.2);
    }

    .wedshoots-text {
        font-size: 1.1rem;
    }

    .wedshoots-title {
        font-size: 2.5rem;
    }

    .wedshoots-logo {
        width: 80px;
    }

    .wedshoots-download {
        font-size: 1rem;
    }

    .wedshoots-code {
        font-size: 0.9rem;
    }

    .camera-icon {
        width: 45px;
        margin-bottom: 0;
    }

    .wedshoots-wrapper {
        gap: 0.15rem;
    }

    .scroll-arrow {
        bottom: 1rem;
    }

    .scroll-arrow svg {
        width: 28px;
        height: 28px;
    }

    .main-text {
        font-size: 2.2rem;
    }

    .content-wrapper {
        gap: 1.2rem;
    }
}

/* Desktop grande (1440px+) */
@media (min-width: 1440px) {
    :root {
        --decoration-size: 250px;
        --logo-size: 320px;
        --button-size: 90px;

        /* Responsive Typography - Large Desktop */
        --text-xs: 0.875rem;
        --text-sm: 1rem;
        --text-base: 1.125rem;
        --text-lg: 1.25rem;
        --text-xl: 1.75rem;
        --text-2xl: 2.5rem;
        --text-3xl: 4rem;
        --text-4xl: 5rem;
    }

    .section-card {
        max-width: 1300px;
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }

    .countdown-title {
        font-size: 5.5rem;
    }

    .countdown-subtitle {
        font-size: 1.35rem;
    }

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

    .date-title {
        font-size: 4rem;
    }

    .date-large {
        font-size: 4.5rem;
    }

    .date-year {
        font-size: 3.5rem;
    }

    .ceremony-title {
        font-size: 4rem;
    }

    .ceremony-venue {
        font-size: 2.25rem;
    }

    .ceremony-time {
        font-size: 1.65rem;
    }

    .location-title {
        font-size: 4rem;
    }

    .location-venue {
        font-size: 2.25rem;
    }

    .location-time {
        font-size: 1.65rem;
    }

    .dresscode-title {
        font-size: 3.5rem;
    }

    .dresscode-subtitle {
        font-size: 4.5rem;
    }

    .rsvp-title {
        font-size: 4.5rem;
    }

    .main-text {
        font-size: 4.5rem;
    }

    .content-wrapper {
        gap: 3rem;
    }

    .info-title {
        font-size: 5rem;
    }

    .info-circle-button {
        width: 140px;
        height: 140px;
    }

    .info-circle-button svg,
    .info-circle-button img {
        width: 54px;
        height: 54px;
    }

    .info-button-label {
        font-size: 1.2rem;
    }

    .emergency-fund-title {
        font-size: 5rem;
    }

    .emergency-fund-description {
        font-size: 1.35rem;
    }

    .alias-text {
        font-size: 1.3rem;
    }

    .playlist-title {
        font-size: 2.25rem;
    }

    .playlist-subtitle {
        font-size: 5rem;
    }

    .playlist-description {
        font-size: 1.35rem;
    }

    .playlist-button {
        font-size: 1.2rem;
        padding: 0.85rem 2.75rem;
    }

    .wedshoots-text {
        font-size: 1.6rem;
    }

    .wedshoots-title {
        font-size: 5rem;
    }

    .wedshoots-logo {
        width: 140px;
    }

    .wedshoots-download {
        font-size: 1.3rem;
    }

    .wedshoots-code {
        font-size: 1.2rem;
    }
}

/* ==========================================
   Animaciones y Transiciones
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.countdown-title,
.countdown-subtitle,
.countdown-timer,
.logo-container,
.main-text,
.scroll-arrow,
.rings-icon,
.date-title,
.date-description,
.date-display,
.date-message,
.church-icon,
.ceremony-title,
.ceremony-divider,
.ceremony-time,
.ceremony-venue,
.ceremony-address,
.ceremony-button,
.champagne-icon,
.location-title,
.location-divider,
.location-time,
.location-venue,
.location-address,
.location-button,
.location-note,
.bow-icon,
.dresscode-title,
.dresscode-divider,
.dresscode-subtitle,
.dresscode-description,
.dresscode-note,
.dresscode-stars,
.rsvp-stars,
.rsvp-title,
.rsvp-divider,
.rsvp-phrase,
.rsvp-description,
.rsvp-button,
.rsvp-note,
.info-stars,
.info-title,
.info-divider,
.info-buttons,
.gift-icon,
.emergency-fund-title,
.emergency-fund-divider,
.emergency-fund-description,
.alias-container,
.music-icon,
.playlist-title,
.playlist-subtitle,
.heart-icon,
.playlist-description,
.playlist-button,
.camera-icon,
.wedshoots-text,
.wedshoots-title,
.wedshoots-info-container {
    animation: fadeIn 0.8s ease-out forwards;
}

.countdown-title {
    animation-delay: 0.1s;
}

.countdown-subtitle {
    animation-delay: 0.3s;
}

.countdown-timer {
    animation-delay: 0.5s;
}


.logo-container {
    animation-delay: 0.1s;
}

.main-text {
    animation-delay: 0.3s;
}

.scroll-arrow {
    animation-delay: 0.5s;
}

.rings-icon {
    animation-delay: 0.1s;
}

.date-title {
    animation-delay: 0.3s;
}

.date-description {
    animation-delay: 0.5s;
}

.date-display {
    animation-delay: 0.7s;
}

.date-message {
    animation-delay: 0.9s;
}

.church-icon {
    animation-delay: 0.1s;
}

.ceremony-title {
    animation-delay: 0.3s;
}

.ceremony-divider {
    animation-delay: 0.4s;
}

.ceremony-time {
    animation-delay: 0.5s;
}

.ceremony-venue {
    animation-delay: 0.6s;
}

.ceremony-address {
    animation-delay: 0.7s;
}

.ceremony-button {
    animation-delay: 0.8s;
}

.champagne-icon {
    animation-delay: 0.1s;
}

.location-title {
    animation-delay: 0.3s;
}

.location-divider {
    animation-delay: 0.4s;
}

.location-time {
    animation-delay: 0.5s;
}

.location-venue {
    animation-delay: 0.6s;
}

.location-address {
    animation-delay: 0.7s;
}

.location-button {
    animation-delay: 0.8s;
}

.location-note {
    animation-delay: 0.9s;
}

.bow-icon {
    animation-delay: 0.1s;
}

.dresscode-title {
    animation-delay: 0.3s;
}

.dresscode-divider {
    animation-delay: 0.4s;
}

.dresscode-subtitle {
    animation-delay: 0.5s;
}

.dresscode-description {
    animation-delay: 0.7s;
}

.dresscode-note {
    animation-delay: 0.8s;
}

.dresscode-stars {
    animation-delay: 0.9s;
}

.rsvp-stars {
    animation-delay: 0.1s;
}

.rsvp-title {
    animation-delay: 0.3s;
}

.rsvp-divider {
    animation-delay: 0.4s;
}

.rsvp-phrase {
    animation-delay: 0.5s;
}

.rsvp-description {
    animation-delay: 0.7s;
}

.rsvp-button {
    animation-delay: 0.8s;
}

.rsvp-note {
    animation-delay: 0.9s;
}

.info-stars {
    animation-delay: 0.1s;
}

.info-title {
    animation-delay: 0.3s;
}

.info-divider {
    animation-delay: 0.4s;
}

.info-buttons {
    animation-delay: 0.6s;
}

.gift-icon {
    animation-delay: 0.1s;
}

.emergency-fund-title {
    animation-delay: 0.2s;
}

.emergency-fund-divider {
    animation-delay: 0.3s;
}

.emergency-fund-description {
    animation-delay: 0.5s;
}

.alias-container {
    animation-delay: 0.7s;
}

.music-icon {
    animation-delay: 0.1s;
}

.playlist-title {
    animation-delay: 0.3s;
}

.playlist-subtitle {
    animation-delay: 0.5s;
}

.heart-icon {
    animation-delay: 0.6s;
}

.playlist-description {
    animation-delay: 0.7s;
}

.playlist-button {
    animation-delay: 0.9s;
}

.camera-icon {
    animation-delay: 0.1s;
}

.wedshoots-text:nth-of-type(1) {
    animation-delay: 0.3s;
}

.wedshoots-text:nth-of-type(2) {
    animation-delay: 0.5s;
}

.wedshoots-title {
    animation-delay: 0.7s;
}

.wedshoots-info-container {
    animation-delay: 0.9s;
}

/* ==========================================
   Accesibilidad
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-arrow {
        animation: none !important;
    }
}

/* Focus visible para navegación con teclado */
:focus-visible {
    outline: 3px solid var(--color-eucalyptus-primary);
    outline-offset: 4px;
}
