:root {
    /* Paleta de colores elegante para boda playera */
    --bg: #f5f0e6;                    /* Blanco cremoso - base principal */
    --text: #514b35;                  /* Marrón oscuro - texto principal */
    --muted: #786e55;                 /* Beige marroncito - texto secundario */
    --gold: #63643c;                  /* Verde militar - acentos dorados */
    --accent: #b4aa96;                /* Beige clarito - elementos destacados */
    --soft: #f0ebe0;                  /* Beige muy claro - fondos suaves */
    --brown-dark: #514b35;            /* Marrón oscuro - títulos importantes */
    --brown-medium: #786e55;          /* Marrón medio - elementos intermedios */
    --green-military: #63643c;        /* Verde militar - botones y enlaces */
    --beige-light: #b4aa96;           /* Beige claro - fondos de secciones */
    --cream: #f5f0e6;                 /* Crema - fondo principal */
    --white: #ffffff;                 /* Blanco puro */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Password Overlay */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./boda.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    color: var(--white);
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.password-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 320px;
    width: 90%;
}

.password-box h2 {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-bottom: 12px;
}

.password-box p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

#passwordInput {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    margin-bottom: 15px;
}

#passwordSubmit {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--green-military);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#passwordSubmit:hover {
    background-color: var(--brown-dark);
}

.password-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

html, body { 
    height: 100%; 
    font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

.container { width: min(940px, 92%); margin: 0 auto; }

/* Tipograf�as elegantes */
.main-title { font-family: "Playfair Display", serif; letter-spacing: 0.08em; color: var(--brown-dark); font-weight: 600; }
.couple-names .name { font-family: "Dancing Script", cursive; font-size: clamp(38px, 9vw, 72px); color: var(--green-military); }
.couple-names .and { margin: 0 8px; color: var(--brown-medium); font-size: clamp(22px, 6vw, 32px); }

/* Hero */
.hero { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 30px; 
    align-items: center; 
    padding: 60px 0 40px; 
    position: relative; 
    overflow: hidden; 
    min-height: 100vh;
    width: 100%;
    opacity: 0; /* Inicialmente oculto para la transición */
}

/* Fade out effect más natural para transición orgánica */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(245, 240, 230, 0.1) 20%,
        rgba(245, 240, 230, 0.3) 40%,
        rgba(245, 240, 230, 0.6) 60%,
        rgba(245, 240, 230, 0.8) 80%,
        rgba(245, 240, 230, 0.95) 95%,
        var(--cream) 100%
    );
    pointer-events: none;
    z-index: 2;
}
.hero-content { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.hero .main-title { font-size: clamp(28px, 6vw, 42px); margin: 0 0 16px; letter-spacing: 0.1em; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.couple-names { margin: 20px 0; }
.blessing { font-style: italic; color: var(--muted); margin-top: 16px; font-size: 16px; }
.hero-image { display: flex; justify-content: center; position: relative; z-index: 1; }
.hero-image img { width: min(680px, 92%); border-radius: 16px; object-fit: cover; box-shadow: 0 12px 32px rgba(0,0,0,.15); transition: transform 0.3s ease; }
.hero-image img:hover { transform: scale(1.02); }

/* Parents */
.parents-section { 
    padding: 60px 0 28px; /* Más padding arriba para mejor transición */
    background: var(--cream);
    margin-top: -80px; /* Mayor solapamiento para transición más suave */
    position: relative;
    z-index: 1;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); /* Sombra sutil para profundidad */
}
.parents-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.parents-group h3 { font-family: "Playfair Display", serif; color: var(--brown-dark); text-align: center; margin: 0 0 10px; }
.parents-group p { text-align: center; margin: 6px 0; color: var(--brown-medium); }

/* Date */
.date-section { padding: 16px 0 6px; text-align: center; }
.date-section h2 { font-family: "Playfair Display", serif; font-weight: 400; color: var(--brown-medium); margin: 0 0 12px; }
.wedding-date { display: inline-flex; gap: 12px; align-items: baseline; font-family: "Dancing Script", cursive; color: var(--green-military); }
.wedding-date .day { font-size: clamp(34px, 10vw, 64px); }
.wedding-date .month { font-size: clamp(28px, 8.5vw, 52px); }
.wedding-date .year { font-size: clamp(26px, 7vw, 44px); }
.wedding-date .separator { color: var(--beige-light); font-family: "Playfair Display", serif; font-size: clamp(18px, 5vw, 24px); }

/* Countdown */
.countdown-section { padding: 4px 0 28px; text-align: center; }
.countdown-section h3 { color: var(--brown-medium); font-weight: 400; margin: 0 0 20px; font-size: 18px; }
.countdown-timer { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; width: min(680px, 94%); margin: 0 auto; }
.time-unit { border: 1px solid var(--beige-light); border-radius: 12px; padding: 16px 8px; background: var(--cream); box-shadow: 0 4px 16px rgba(0,0,0,.08); transition: all 0.3s ease; position: relative; overflow: hidden; }
.time-unit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(99, 100, 60, 0.1), transparent); transition: left 0.5s ease; }
.time-unit:hover::before { left: 100%; }
.time-unit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.time-unit .number { display: block; font-family: "Playfair Display", serif; font-size: clamp(24px, 7vw, 36px); color: var(--brown-dark); font-weight: 600; transition: color 0.3s ease; }
.time-unit:hover .number { color: var(--green-military); }
.time-unit .label { display: block; font-size: 12px; letter-spacing: .2em; color: var(--brown-medium); font-weight: 500; }

.save-date-btn { margin-top: 14px; border: 1px solid var(--beige-light); background: var(--cream); color: var(--brown-dark); padding: 12px 16px; border-radius: 10px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: transform .06s ease, box-shadow .2s ease; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.save-date-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.calendar-icon { font-size: 18px; }

/* Gallery */
.gallery-section { padding: 40px 0; background: var(--soft); }
.gallery-section h2 { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 30px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,.1); transition: transform 0.3s ease; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; padding: 20px 16px 16px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay span { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 600; }

/* Photo sharing */
.photo-sharing { background: linear-gradient(180deg, #fff, var(--soft)); padding: 28px 0; text-align: center; }
.photo-sharing .icon { font-size: 26px; margin-bottom: 6px; }
.photo-sharing h3 { margin: 6px 0; color: var(--brown-medium); font-weight: 500; }
.photo-sharing p { margin: 0; color: var(--muted); }
.photo-sharing .hashtag { margin-top: 10px; font-family: "Playfair Display", serif; color: var(--green-military); }

/* Location */
.location-section { padding: 28px 0; background: #fff; }
.location-section h2 { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 20px; }
.location-content { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.location-info { text-align: center; padding: 20px; background: var(--soft); border-radius: 12px; }
.location-info h3 { font-family: "Playfair Display", serif; color: var(--green-military); margin: 0 0 10px; }
.venue-name { font-weight: 600; color: var(--brown-dark); margin: 5px 0; }
.venue-address { color: var(--muted); margin: 5px 0; }
.venue-time { font-weight: 600; color: var(--green-military); margin: 5px 0; }
.map-btn { display: block; margin: 0 auto; border: 1px solid var(--green-military); background: var(--green-military); color: var(--cream); padding: 12px 20px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; }
.map-btn:hover { background: var(--brown-dark); transform: translateY(-2px); }

/* Schedule */
.schedule-section { padding: 40px 0; background: #fff; }
.schedule-section h2 { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 40px; }

/* Nuevo diseño para el cronograma integrado */
.schedule-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    color: var(--brown-dark);
    margin: 40px 0 30px;
    font-size: 24px;
    font-weight: 600;
}

.schedule-timeline { 
    max-width: 500px; 
    margin: 0 auto; 
    position: relative; 
}

.schedule-timeline::before { 
    content: ''; 
    position: absolute; 
    left: 25px; 
    top: 0; 
    bottom: 0; 
    width: 3px; 
    background: linear-gradient(to bottom, var(--green-military), var(--brown-medium));
    border-radius: 2px;
}

.timeline-item { 
    position: relative; 
    margin-bottom: 25px; 
    padding-left: 60px; 
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::before { 
    content: ''; 
    position: absolute; 
    left: 16px; 
    top: 6px; 
    width: 18px; 
    height: 18px; 
    background: var(--green-military); 
    border-radius: 50%; 
    border: 3px solid var(--cream); 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-time { 
    font-family: "Playfair Display", serif; 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--green-military); 
    margin-bottom: 5px;
}

.timeline-content h4 { 
    font-family: "Playfair Display", serif; 
    color: var(--brown-dark); 
    margin: 0 0 4px; 
    font-size: 18px; 
    font-weight: 600;
}

.timeline-content p { 
    color: var(--muted); 
    margin: 0; 
    font-size: 14px;
    font-style: italic;
}

/* Dress Code */
.dress-code-section { padding: 40px 0; background: var(--soft); }
.dress-code-section h2 { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 30px; }
.dress-code-content { max-width: 600px; margin: 0 auto; }
.dress-code-main { background: var(--cream); border-radius: 16px; padding: 30px; box-shadow: 0 8px 24px rgba(0,0,0,.08); margin-bottom: 20px; }
.dress-code-main h3 { text-align: center; font-family: "Playfair Display", serif; color: var(--green-military); font-size: 24px; margin: 0 0 25px; letter-spacing: 0.1em; }
.dress-requirements { display: grid; grid-template-columns: 1fr; gap: 20px; }
.dress-item { display: flex; align-items: center; gap: 15px; padding: 15px; background: var(--soft); border-radius: 12px; }
.dress-icon { font-size: 32px; }
.dress-text h4 { font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 5px; font-size: 18px; }
.dress-text p { color: var(--muted); margin: 0; }
.dress-code-note { background: var(--cream); border-radius: 12px; padding: 20px; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.dress-code-note p { color: var(--brown-medium); margin: 0; font-style: italic; }

/* Gifts */
.gifts-section { padding: 20px 0 30px; }
.gifts-title { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 14px; }
.gifts-content { width: min(680px, 92%); margin: 0 auto; border-radius: 12px; padding: 16px 18px; background: var(--cream); border: 1px solid var(--beige-light); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.gifts-content .icon { font-size: 22px; margin-bottom: 8px; text-align: center; }
.gift-link { color: var(--green-military); text-decoration: underline; }

/* RSVP */
.rsvp-section { background: var(--soft); padding: 26px 0 38px; }
.rsvp-section h2 { text-align: center; font-family: "Playfair Display", serif; color: var(--brown-dark); margin: 0 0 14px; }
.rsvp-form { width: min(720px, 94%); margin: 0 auto; background: var(--cream); border: 1px solid var(--beige-light); border-radius: 12px; padding: 18px; box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; letter-spacing: .08em; color: var(--brown-medium); margin-bottom: 6px; }
.table-number { font-weight: 600; color: var(--brown-dark); }
input[type="number"], input[type="text"] { width: 100%; padding: 12px 10px; border: 1px solid var(--beige-light); border-radius: 10px; font-size: 15px; background: var(--cream); color: var(--brown-dark); }
.checkbox-group { margin-top: 10px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; color: var(--brown-medium); }
.checkbox-label input { width: 18px; height: 18px; }

.companions-section { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
.companion-input label { font-size: 12px; color: var(--brown-medium); margin-bottom: 6px; display: block; }

.submit-btn { margin-top: 10px; width: 100%; padding: 12px 16px; background: var(--green-military); color: var(--cream); border: 0; border-radius: 10px; font-weight: 600; cursor: pointer; }
.submit-btn:hover { background: var(--brown-dark); }

/* Footer */
.footer { padding: 22px 0; text-align: center; color: var(--brown-medium); }
.footer .social-link { color: var(--green-military); }

/* Responsive */
@media (min-width: 760px) {
    .hero { grid-template-columns: 1.1fr .9fr; padding: 80px 0 50px; }
    .hero-content { text-align: left; padding-left: 24px; }
    .parents-grid { grid-template-columns: repeat(2, 1fr); }
    .location-content { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .companions-section { grid-template-columns: repeat(2, 1fr); }
    .schedule-timeline::before { left: 50px; }
    .timeline-item { padding-left: 90px; }
    .timeline-item::before { left: 40px; }
    .dress-requirements { grid-template-columns: repeat(2, 1fr); }
}

/* Audio Player */
.audio-player {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(81, 75, 53, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 20px;
    margin: 0 auto 40px;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.audio-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.play-pause-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.play-icon, .pause-icon {
    display: none;
}

.play-icon.active, .pause-icon.active {
    display: block;
}

.time-display {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    min-width: 35px;
    text-align: center;
}

.progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    margin: 0 10px;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.progress-container:hover .progress-handle {
    opacity: 1;
}

/* Invitation Section */
.invitation-section {
    background: var(--white);
    padding: 60px 0;
    text-align: center;
}

.invitation-title {
    font-family: "Dancing Script", cursive;
    font-size: clamp(36px, 8vw, 56px);
    color: var(--brown-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.invitation-text {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--brown-medium);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-style: italic;
}

.couple-photo {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.couple-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Location Section */
.location-section {
    background: var(--white);
    padding: 60px 0;
    text-align: center;
}

.location-header {
    margin-bottom: 40px;
}

.rings-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.location-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--brown-dark);
    font-weight: 600;
}

.location-content {
    max-width: 900px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.location-item {
    margin-bottom: 0;
    text-align: center;
    padding: 25px;
    background: var(--soft);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.location-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.location-subtitle {
    font-family: "Dancing Script", cursive;
    font-size: 24px;
    color: var(--brown-dark);
    margin-bottom: 10px;
    font-weight: 400;
}

.venue-name {
    font-size: 18px;
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 5px;
}

.venue-details {
    color: var(--brown-medium);
    margin-bottom: 5px;
}

.venue-time {
    color: var(--brown-medium);
    font-size: 14px;
}

.view-location-btn {
    background: var(--green-military);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.view-location-btn:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* RSVP Section */
.rsvp-section {
    background: var(--soft);
    padding: 40px 0;
    text-align: center;
}

.rsvp-content {
    max-width: 400px;
    margin: 0 auto;
}

.rsvp-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.rsvp-section h2 {
    font-family: "Playfair Display", serif;
    color: var(--brown-dark);
    font-size: 24px;
    font-weight: 600;
}

/* RSVP Form Section */
.rsvp-form-section {
    background: var(--white);
    padding: 40px 0;
}

.rsvp-form-section h2 {
    font-family: "Playfair Display", serif;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--beige-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--brown-medium);
    margin-bottom: 8px;
    font-weight: 500;
}

.table-number {
    font-weight: 600;
    color: var(--brown-dark);
    font-size: 16px;
}

input[type="number"], input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--beige-light);
    border-radius: 8px;
    font-size: 16px;
    background: var(--white);
    color: var(--brown-dark);
    transition: border-color 0.3s ease;
}

input[type="number"]:focus, input[type="text"]:focus {
    outline: none;
    border-color: var(--green-military);
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brown-medium);
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green-military);
}

.companions-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.companion-input label {
    font-size: 12px;
    color: var(--brown-medium);
    margin-bottom: 5px;
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--green-military);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    max-width: 500px;
    margin: 0 auto;
}

.created-by {
    color: var(--brown-medium);
    margin: 10px 0;
    font-size: 14px;
}

.heart {
    margin-right: 5px;
}

.couple-names-footer {
    margin: 20px 0;
}

.couple-names-footer span {
    font-family: "Dancing Script", cursive;
    font-size: 24px;
    color: var(--green-military);
    margin: 0 5px;
}

.social-link {
    color: var(--green-military);
    text-decoration: none;
    font-weight: 500;
}

.social-link:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .countdown-timer { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .time-unit { padding: 12px 6px; }
    .timeline-item { padding-left: 50px; }
    .schedule-timeline::before { left: 20px; }
    .timeline-item::before { left: 10px; }
    .companions-section { grid-template-columns: 1fr; }
    .wedding-date { flex-direction: column; gap: 5px; }
    .wedding-date .separator { display: none; }
}
