/* Reset & Variables */
:root {
    --primary-color: #384B42;
    /* Verde Eucalipto Oscuro */
    --accent-color: #B29E65;
    /* Oro Latón Suave */
    --bg-color: #F8F7F2;
    /* Color Piedra / Crudo */
    --text-color: #4A4A4A;
    --light-text: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: url('hero_background_wedding.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(56, 75, 66, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.pre-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    gap: 15px;
}

.divider .line {
    height: 1px;
    width: 60px;
    background-color: var(--accent-color);
}

.divider .heart {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.save-the-date-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.save-the-date-widget {
    margin: 2rem auto;
    width: 100%;
    max-width: 480px;
    border: 8px solid #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    transform: rotate(-2deg);
    background: #fff;
    padding: 10px 10px 18px;
}

.std-photo {
    width: 100%;
    height: auto;
    display: block;
}

.widget-caption {
    padding-top: 14px;
    text-align: center;
    border-top: 1px solid var(--accent-color);
    margin-top: 12px;
}

.photo-names {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.photo-date {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 4px;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
}

.date {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--text-color);
    font-size: 1.5rem;
}

@keyframes bounce {

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

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Ilustración (acuarela sin fondo, encabeza la cuenta atrás) */
.illustration-figure {
    margin: 0 auto 1.5rem;
}

.illustration-img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

/* Countdown Section */
.countdown-section {
    background-color: var(--bg-color);
    text-align: center;
}

.countdown-section h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    background: #fff;
    padding: 1.8rem 2rem;
    border: 1px solid rgba(178, 158, 101, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-color);
    line-height: 1;
    font-style: italic;
}

.time-box p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.8rem;
    color: #aaa;
}

/* Details Section (background for day-travel-section) */
.details-section {
    background-color: #fff;
}

.detail-card {
    background: #fff;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-top: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
}

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

.detail-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.detail-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.detail-card .time {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-link {
    font-size: 0.9rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.map-link:hover {
    color: var(--accent-color);
}

/* Transport Section */
.transport-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    /* Slightly rounded styling */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.map-box {
    flex: 1;
    min-width: 300px;
}

.route-map {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}



.transport-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.travel-card {
    border-left: 2px solid rgba(178, 158, 101, 0.4);
    padding: 1.6rem 1.8rem;
    margin-bottom: 1.3rem;
    background: var(--bg-color);
}

.travel-card:last-child {
    margin-bottom: 0;
}

.travel-card-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.travel-card-icon {
    color: var(--accent-color);
    font-size: 0.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.travel-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 400;
}

.travel-card-body {
    font-size: 0.875rem;
    line-height: 1.72;
    color: #666;
    margin-bottom: 0.9rem;
}

.travel-card-meta {
    display: flex;
    gap: 2rem;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(178, 158, 101, 0.18);
    border-bottom: 1px solid rgba(178, 158, 101, 0.18);
    margin-bottom: 0.75rem;
}

.travel-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.travel-meta-label {
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #bbb;
}

.travel-meta-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-color);
    font-style: italic;
    line-height: 1;
}

.travel-card-tip {
    font-size: 0.78rem;
    color: #bbb;
    font-style: italic;
    line-height: 1.55;
}

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.quote-section::before {
    content: '\201C';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 24rem;
    color: rgba(255, 255, 255, 0.045);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.quote-section .container {
    position: relative;
    z-index: 1;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

blockquote cite {
    display: block;
    font-size: 1rem;
    font-family: var(--font-body);
    font-style: normal;
    margin-top: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* RSVP Section */
.rsvp-section {
    text-align: center;
    background-color: #fff;
}

.rsvp-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rsvp-section p {
    margin-bottom: 3rem;
    color: #666;
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: var(--bg-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
}

.feedback-message {
    margin-top: 1rem;
    font-weight: 500;
}

.feedback-message.success {
    color: var(--primary-color);
}

.feedback-message.error {
    color: #e74c3c;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    background-color: var(--bg-color);
    border-top: 1px solid #eee;
}

.copyright {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* =============================================
   RSVP WIZARD FORM
   ============================================= */

.rsvp-wizard {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.rsvp-step {
    display: none;
}

.rsvp-step.active {
    display: block;
    animation: stepFadeIn 0.4s ease;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-divider {
    height: 1px;
    background: #e8e5de;
    margin: 2.5rem 0;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.step-subtitle {
    font-size: 0.82rem;
    color: #bbb;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Attendance buttons */
.attend-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 0.5rem;
}

.attend-btn {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    padding: 2.2rem 1.5rem;
    background: #fff;
    border: 2px solid #ddd;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
}

.attend-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.attend-btn.selected[data-value="si"] {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.attend-btn.selected[data-value="no"] {
    border-color: #888;
    background: #888;
    color: #fff;
}

.attend-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.attend-label {
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

/* Type buttons */
.type-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0 0.5rem;
}

.type-btn {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 1.8rem 1rem;
    background: #fff;
    border: 2px solid #ddd;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
}

.type-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.type-btn.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: #fff;
}

.type-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.type-label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

/* Guest cards */
.guest-card {
    background: #fff;
    border: 1px solid #e8e5de;
    border-top: 3px solid var(--accent-color);
    margin-bottom: 1.5rem;
    animation: stepFadeIn 0.35s ease;
}

.guest-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-color);
    border-bottom: 1px solid #e8e5de;
}

.guest-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary-color);
}

.btn-remove-guest {
    background: none;
    border: 1px solid #ddd;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: #bbb;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-remove-guest:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    background: #fce4e4;
}

.guest-fields {
    padding: 1.5rem;
}

.fields-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    grid-template-columns: 1fr;
}

.fields-row.two-col {
    grid-template-columns: 1fr 1fr;
}

.fields-row:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #999;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.label-required {
    color: var(--accent-color);
}

.label-optional {
    color: #ccc;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* Add guest button */
.btn-add-guest {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px dashed #ccc;
    color: #bbb;
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0;
}

.btn-add-guest:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1rem;
}


.travel-cards-grid .travel-card {
    flex: 1;
    min-width: 280px;
    max-width: 390px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
}

/* =============================================
   SECTION ORNAMENT
   ============================================= */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.2rem;
}

.ornament-line {
    display: block;
    width: 55px;
    height: 1px;
    background-color: var(--accent-color);
    opacity: 0.55;
}

.ornament-diamond {
    color: var(--accent-color);
    font-size: 0.5rem;
    line-height: 1;
}

.section-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: #bbb;
    text-align: center;
    margin-bottom: 3rem;
}

/* =============================================
   EVENT TIMELINE
   ============================================= */
.event-timeline {
    max-width: 660px;
    margin: 0 auto;
    text-align: left;
}

.event-item {
    display: flex;
    align-items: stretch;
    background: var(--bg-color);
    border: 1px solid #e8e5de;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.event-time-col {
    min-width: 120px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.8rem;
    flex-shrink: 0;
}

.event-time {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-style: italic;
    color: var(--accent-color);
    line-height: 1;
    display: block;
}

.event-ampm {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    display: block;
}

.event-vline {
    width: 1px;
    background: rgba(178, 158, 101, 0.25);
    flex-shrink: 0;
}

.event-content-col {
    padding: 2rem 2.2rem;
    flex: 1;
}

.event-content-col h3 {
    font-size: 1.9rem;
    margin-bottom: 0.4rem;
}

.event-venue {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.2rem;
}

.event-address {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 1.2rem;
}

.event-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 0;
    width: fit-content;
    margin: 0 auto;
}

.connector-line {
    width: 1px;
    height: 18px;
    background: var(--accent-color);
    opacity: 0.4;
}

.connector-ornament {
    color: var(--accent-color);
    font-size: 0.5rem;
    line-height: 1;
    opacity: 0.65;
}

/* =============================================
   PHOTOS SECTION
   ============================================= */
.photos-section {
    background: var(--bg-color);
    text-align: center;
}

/* Galería en cinta continua (rueda de fotos) */
.photo-marquee {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.photo-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: photo-marquee-scroll 120s linear infinite;
    will-change: transform;
}
.photo-item {
    height: 150px;
    width: auto;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    background: rgba(56, 75, 66, 0.07);
}
@keyframes photo-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
    .photo-item { height: 110px; }
}
@media (prefers-reduced-motion: reduce) {
    .photo-track { animation-duration: 600s; }
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.photo-frame {
    aspect-ratio: 4 / 3;
    background: rgba(56, 75, 66, 0.07);
    border: 1px solid rgba(178, 158, 101, 0.2);
    overflow: hidden;
    position: relative;
}

.photo-frame::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    opacity: 0.2;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 0;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
    filter: sepia(8%);
}

.photo-frame:hover img {
    transform: scale(1.05);
}

/* =============================================
   ACCOMMODATION SECTION
   ============================================= */
.accommodation-section {
    background: #fff;
    text-align: center;
}

.hotel-card {
    max-width: 660px;
    margin: 0 auto;
    background: var(--bg-color);
    border: 1px solid #e8e5de;
    border-top: 3px solid var(--accent-color);
    padding: 3rem 3.5rem;
    text-align: left;
    position: relative;
}

.hotel-card-badge {
    position: absolute;
    top: -1px;
    right: 2.5rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.63rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    font-family: var(--font-body);
}

.hotel-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.hotel-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hotel-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid #e8e5de;
    border-bottom: 1px solid #e8e5de;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.hotel-detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hotel-detail-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #bbb;
    font-family: var(--font-body);
}

.hotel-detail-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent-color);
    font-style: italic;
}

.hotel-contact {
    font-size: 0.83rem;
    color: #999;
}

.hotel-contact a {
    color: var(--primary-color);
    border-bottom: 1px solid rgba(56, 75, 66, 0.3);
}

/* =============================================
   DAY + TRAVEL COMBINED SECTION
   ============================================= */
.day-travel-section {
    position: relative;
    background-image: url('hero_background_wedding.png');
    background-size: cover;
    background-position: center top;
}

.day-travel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 247, 242, 0.91);
}

.day-travel-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.day-travel-col {
    min-width: 0;
}

.day-col-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.travel-cards-stack {
    display: flex;
    flex-direction: column;
}

.travel-cards-stack .travel-card {
    min-width: unset;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.88);
}

/* =============================================
   AVISO CARD (inside FAQ section)
   ============================================= */
.aviso-card {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(178, 158, 101, 0.06);
    border: 1px solid rgba(178, 158, 101, 0.3);
    border-left: 3px solid var(--accent-color);
    padding: 1.8rem 2rem;
}

.aviso-icon {
    color: var(--accent-color);
    font-size: 0.55rem;
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.aviso-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.45rem;
    font-weight: 400;
}

.aviso-body {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 0;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    background: var(--bg-color);
    text-align: center;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    border-top: 1px solid #e8e5de;
}

.faq-item {
    border-bottom: 1px solid #e8e5de;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 400;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    color: var(--accent-color);
    font-size: 0.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
    position: fixed;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 1000;
}

.lang-current-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #e8e5de;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, color 0.2s;
}

.lang-current-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.lang-arrow {
    font-size: 0.55rem;
    opacity: 0.5;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #e8e5de;
    min-width: 148px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.lang-dropdown.open {
    display: block;
    animation: stepFadeIn 0.2s ease;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.15s;
    letter-spacing: 0.3px;
}

.lang-option:hover {
    background: var(--bg-color);
    color: var(--primary-color);
}

/* =============================================
   PHONE COMBO + FIELD ERRORS
   ============================================= */
.phone-combo {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.guest-country {
    flex: 0 0 auto;
    width: 100px;
    padding: 15px 8px;
    cursor: pointer;
}

.phone-combo .guest-phone {
    flex: 1;
    min-width: 0;
}

.field-error {
    display: block;
    font-size: 0.7rem;
    color: #c0392b;
    margin-top: 0.35rem;
    min-height: 1em;
    letter-spacing: 0.2px;
}

/* Aviso no bloqueante (p. ej. edad < 12) */
.field-notice {
    display: block;
    font-size: 0.72rem;
    color: #8a6d3b;
    margin-top: 0.35rem;
    min-height: 1em;
}

/* Nota informativa dentro de un paso (recordatorio +12) */
.step-note {
    font-size: 0.78rem;
    color: #8a6d3b;
    background: #faf6ec;
    border-left: 3px solid var(--accent-color);
    padding: 0.6rem 0.9rem;
    margin: 0.4rem 0 1.2rem;
    line-height: 1.5;
}

/* Botón secundario "Confirmar de todos modos" */
.btn-force-confirm {
    display: inline-block;
    margin-top: 0.9rem;
    padding: 12px 26px;
    background: #fff;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-force-confirm:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Nota bajo el formulario para cambios posteriores */
.rsvp-edit-note {
    text-align: center;
    font-size: 0.78rem;
    color: #999;
    margin-top: 1.2rem;
}

/* Buscador de canciones con sugerencias */
.song-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}
.song-chips:empty {
    margin-bottom: 0;
}
.song-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-color);
    color: #fff;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    line-height: 1.2;
}
.song-chip button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0;
    opacity: 0.75;
    transition: opacity 0.15s ease;
}
.song-chip button:hover {
    opacity: 1;
}
.song-search-wrap {
    position: relative;
}
.song-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 260px;
    overflow-y: auto;
    z-index: 30;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}
.song-suggestions.open {
    display: block;
}
.song-suggestion {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    border-bottom: 1px solid #f0eeea;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.15s ease;
}
.song-suggestion:last-child {
    border-bottom: none;
}
.song-suggestion:hover {
    background: var(--bg-color);
}
.song-suggestion-title,
.song-suggestion-artist {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.song-suggestion-title {
    font-size: 0.9rem;
    color: var(--text-color);
}
.song-suggestion-artist {
    font-size: 0.74rem;
    color: #999;
}
/* Que las etiquetas de canción largas no desborden en móvil */
.song-chip {
    max-width: 100%;
}

input.input-error,
select.input-error {
    border-color: #c0392b;
    background-color: #fff8f8;
}

input.input-error:focus,
select.input-error:focus {
    border-color: #c0392b;
    outline: none;
}

/* Consentimiento RGPD */
.consent-group {
    margin: 1.5rem 0 1.8rem;
    text-align: left;
}
.privacy-text {
    font-size: 0.72rem;
    line-height: 1.6;
    color: #8a8a8a;
    margin-bottom: 0.9rem;
}
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #4A4A4A;
    cursor: pointer;
}
.consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #384B42;
    cursor: pointer;
}
.consent-check input.input-error {
    outline: 2px solid #c0392b;
    outline-offset: 1px;
}

/* =============================================
   GIFTS SECTION
   ============================================= */
.gifts-section {
    background: #fff;
    text-align: center;
}

.gifts-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-color);
    border: 1px solid #e8e5de;
    padding: 3rem;
}

.gifts-intro {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 2rem;
    text-align: center;
}

.iban-block {
    border-top: 1px solid #e8e5de;
    padding-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.iban-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.iban-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bbb;
    flex-shrink: 0;
}

.iban-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    font-style: italic;
    text-align: right;
}

.iban-number {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-style: normal;
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .illustration-img {
        max-width: 240px;
    }

    .save-the-date-text {
        font-size: 1.8rem;
    }

    .timer {
        gap: 1rem;
    }

    .time-box span {
        font-size: 2rem;
    }

    .container {
        width: 95%;
    }

    .fields-row.two-col {
        grid-template-columns: 1fr;
    }

    .attend-btn {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }

    .event-item {
        flex-direction: column;
    }

    .event-time-col {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.8rem;
        min-width: unset;
        padding: 1rem 1.5rem;
    }

    .event-time {
        font-size: 2rem;
    }

    .event-ampm {
        margin-top: 0;
    }

    .event-vline {
        display: none;
    }

    .event-content-col {
        padding: 1.5rem;
    }

    .attend-icon {
        font-size: 2rem;
    }

    .type-btn {
        min-width: 100px;
        padding: 1.2rem 0.8rem;
    }

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

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hotel-card {
        padding: 2rem 1.5rem;
    }

    .hotel-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .day-travel-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .day-col-title {
        font-size: 2rem;
    }

    .aviso-card {
        flex-direction: column;
        gap: 0.8rem;
    }

    .iban-row {
        flex-direction: column;
        gap: 0.3rem;
    }

    .iban-value {
        text-align: left;
    }

    .gifts-card {
        padding: 2rem 1.5rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .timer {
        gap: 0.5rem;
    }
    .time-box {
        min-width: 60px;
        padding: 1rem 0.6rem;
    }
    .time-box span {
        font-size: 1.7rem;
    }
    .time-box p {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }
    .type-btn {
        min-width: 88px;
        padding: 1rem 0.5rem;
    }
    .type-icon {
        font-size: 1.8rem;
    }
    .guest-card {
        padding: 1.2rem 1rem;
    }
    .guest-country {
        width: 88px;
        padding: 15px 4px;
    }
}