/* ============================================
   WEDDING INVITATION - Santiago & Daniela
   Mobile-First Design
   ============================================ */

:root {
    --green-dark: #2d4a1e;
    --green-medium: #3d5a2e;
    --green-light: #5a7a44;
    --green-accent: #4a6b35;
    --cream: #fdfdf8;
    --cream-warm: #faf8f4;
    --gold-soft: #c4a882;
    --text-dark: #2c2c2c;
    --text-muted: #666;
    --text-light: #999;
    --border-light: #e8e4de;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--green-dark);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* ============================================
   COVER PAGE (mobile base)
   ============================================ */
.cover {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F2EDE7;
    padding: 0;
    position: relative;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cover.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.cover-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    padding: 1rem;
}

.cover-overlay {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
}

.open-btn {
    background: var(--green-dark);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.open-btn:active {
    transform: scale(0.96);
}

/* ============================================
   INVITATION - GENERAL (mobile base)
   ============================================ */
.invitation {
    background: var(--cream);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.invitation.hidden { display: none; }

.invitation.show {
    display: block;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

/* Background branch overlays - CSS only */
.css-branches {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 800'%3E%3Cpath d='M50 0 Q30 80 45 160 Q60 240 40 320 Q20 400 45 480 Q70 560 50 640 Q30 720 50 800' stroke='%23a0b890' fill='none' stroke-width='1.2'/%3E%3Cpath d='M50 100 Q35 120 40 140 Q45 130 50 100' fill='%23b8d0a8' opacity='0.6'/%3E%3Cpath d='M50 100 Q65 115 60 135 Q55 125 50 100' fill='%23c0d8b0' opacity='0.5'/%3E%3Cpath d='M45 250 Q30 270 35 290 Q40 280 45 250' fill='%23b8d0a8' opacity='0.6'/%3E%3Cpath d='M45 250 Q60 265 55 285 Q50 275 45 250' fill='%23c0d8b0' opacity='0.5'/%3E%3Cpath d='M40 400 Q25 420 30 440 Q35 430 40 400' fill='%23b8d0a8' opacity='0.5'/%3E%3Cpath d='M45 550 Q30 570 35 590 Q40 580 45 550' fill='%23b8d0a8' opacity='0.5'/%3E%3Cpath d='M50 700 Q35 720 40 740 Q45 730 50 700' fill='%23b8d0a8' opacity='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: repeat-y;
}

.css-branches-left { left: 0; }
.css-branches-right { right: 0; transform: scaleX(-1); }

/* ============================================
   SECTION 1: WELCOME (mobile base)
   ============================================ */
.welcome-section {
    text-align: center;
    padding: 3rem 1.5rem 0;
    background: white;
}

.welcome-ornament-top {
    margin-bottom: 0.3rem;
}

.ornament-img {
    width: 60px;
    height: auto;
}

.welcome-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.welcome-subtitle-wrapper .arrow-left,
.welcome-subtitle-wrapper .arrow-right {
    color: var(--green-medium);
    font-size: 0.9rem;
}

.welcome-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: var(--green-medium);
    font-weight: 500;
    font-style: italic;
}

.welcome-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--green-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.welcome-ampersand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--green-light);
    font-style: italic;
    margin: 0.2rem 0;
}

.venue-image-wrapper {
    margin-top: 1rem;
    width: 100%;
}

.venue-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   SECTION 2: CEREMONY (mobile base)
   ============================================ */
.ceremony-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--cream-warm);
    position: relative;
}

.ceremony-content {
    position: relative;
    z-index: 2;
}

.ceremony-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ceremony-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.ceremony-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--green-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ceremony-ampersand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--green-light);
    font-style: italic;
    margin: 0.3rem 0 0.8rem;
}

.ceremony-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--green-medium);
    text-transform: uppercase;
    margin: 1.5rem 0 0.5rem;
    font-weight: 500;
}

.ceremony-time-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.6rem;
}

.ceremony-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--text-dark);
    font-weight: 300;
    margin: 0.2rem 0 1.2rem;
}

/* Shared date display */
.date-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0.8rem 0 0.3rem;
}

.date-day-name, .date-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--green-medium);
    text-transform: uppercase;
    font-weight: 500;
}

.date-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--green-dark);
    font-weight: 300;
    line-height: 1;
}

.date-separator {
    color: var(--green-light);
    font-size: 1.2rem;
    opacity: 0.5;
}

.date-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--green-dark);
    margin-top: 0.2rem;
}

/* ============================================
   SECTION 3: ALBUM (mobile base)
   ============================================ */
.album-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    position: relative;
}

.album-gallery {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.album-photo-frame {
    width: 85%;
    max-width: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

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

/* ============================================
   SECTION 4: RECEPTION (mobile base)
   ============================================ */
.reception-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--cream-warm);
    position: relative;
}

.reception-content {
    position: relative;
    z-index: 2;
}

.reception-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--green-medium);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.reception-welcome-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 1.2rem;
    font-weight: 500;
}

.reception-welcome-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    font-weight: 300;
    margin: 0.2rem 0 1.5rem;
}

/* Calendar */
.calendar-wrapper {
    margin: 1.5rem auto;
    max-width: 300px;
    border: 2px solid var(--green-medium);
    border-radius: 4px;
    padding: 1.2rem;
    position: relative;
    background: white;
}

.calendar-wrapper::before,
.calendar-wrapper::after {
    content: '❦';
    position: absolute;
    color: var(--green-medium);
    font-size: 1rem;
}

.calendar-wrapper::before { top: -0.5rem; left: -0.5rem; }
.calendar-wrapper::after { bottom: -0.5rem; right: -0.5rem; }

.calendar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.8rem;
    text-align: center;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
}

.calendar-table th {
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.3rem;
    font-size: 0.65rem;
}

.calendar-table td {
    padding: 0.4rem;
    color: var(--text-dark);
    text-align: center;
}

.calendar-table td.highlight {
    background: var(--green-dark);
    color: white;
    border-radius: 50%;
    font-weight: 600;
}

.add-calendar-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================
   SECTION 5: RSVP (mobile base)
   ============================================ */
.rsvp-section {
    padding: 3rem 1.5rem;
    background: white;
    position: relative;
}

.rsvp-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.rsvp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.rsvp-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 1.2rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s;
    background: #fafafa;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--green-medium);
}

.rsvp-options {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

.rsvp-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    -webkit-tap-highlight-color: transparent;
}

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

.rsvp-option input[type="radio"]:checked ~ .option-icon {
    background: var(--green-medium);
    color: white;
}

.option-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #888;
    flex-shrink: 0;
    transition: all 0.3s;
}

.option-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.confirm-btn {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.9rem;
    background: #9aab8e;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.confirm-btn:active { background: var(--green-medium); }

/* ============================================
   SECTION 6: LOCATION (mobile base)
   ============================================ */
.location-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    position: relative;
}

.location-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* ============================================
   SECTION 7: DRESS CODE (mobile base)
   ============================================ */
.dresscode-section {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream-warm);
}

.dresscode-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.color-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.color-swatch.not-allowed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #c0392b;
    transform: rotate(-45deg);
    border-radius: 1px;
}

/* ============================================
   SECTION 8: TIMELINE (mobile base)
   ============================================ */
.timeline-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 320px;
    margin: 1.5rem auto;
    padding: 0.5rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--green-light);
    opacity: 0.4;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.timeline-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    width: 60px;
    text-align: right;
    padding-right: 1rem;
    background: white;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    background: var(--green-dark);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-event {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark);
    width: 120px;
    text-align: left;
    padding-left: 1rem;
    background: white;
}

/* ============================================
   SECTION 9: GUEST BOOK (mobile base)
   ============================================ */
.guestbook-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: white;
    position: relative;
}

.guestbook-form {
    width: 100%;
    margin: 1.5rem auto;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: left;
}

.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
    resize: vertical;
    min-height: 90px;
    margin-top: 0.8rem;
    background: #fafafa;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.form-textarea:focus { border-color: var(--green-medium); }

.guestbook-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.edit-icon {
    font-size: 1.1rem;
    color: var(--text-light);
    background: #f0f0f0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-wishes-btn {
    padding: 0.7rem 1.5rem;
    background: var(--green-dark);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.submit-wishes-btn:active { background: var(--green-medium); }

.wishes-display {
    margin-top: 1.5rem;
}

.no-wishes {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
}

/* Wish cards */
.wish-card {
    background: #f9f7f2;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.wish-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.2rem;
}

.wish-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
    font-style: italic;
}

/* ============================================
   SECTION 10: FOOTER (mobile base)
   ============================================ */
.footer-section {
    text-align: center;
    padding: 2.5rem 1.5rem 3rem;
    background: var(--cream-warm);
    position: relative;
}

.footer-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 1.5rem;
}

.fountain-image {
    max-width: 100%;
    margin: 0 auto;
}

.fountain-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================================
   MUSIC TOGGLE BUTTON
   ============================================ */
.music-toggle {
    position: fixed;
    bottom: 1.2rem;
    right: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-dark);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    transition: transform 0.3s, background 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.music-toggle:active {
    transform: scale(0.9);
}

.music-toggle.hidden { display: none; }

.music-toggle .music-icon { display: none; }

.music-toggle.is-playing .music-icon.playing {
    display: block;
    animation: pulse-music 1s ease-in-out infinite;
}

.music-toggle.is-paused .music-icon.paused {
    display: block;
    opacity: 0.6;
}

@keyframes pulse-music {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================
   TABLET & DESKTOP ENHANCEMENTS (min-width)
   ============================================ */
@media (min-width: 480px) {
    .welcome-name { font-size: 2.6rem; }
    .ceremony-name { font-size: 2.6rem; }
    .section-title { font-size: 1.3rem; letter-spacing: 3px; }
    .album-photo-frame { max-width: 360px; }
    .map-container iframe { height: 280px; }
    .guestbook-form { padding: 1.8rem; }
}

@media (min-width: 768px) {
    .cover-image { max-width: 450px; }
    
    .invitation { max-width: 700px; margin: 0 auto; }
    
    .welcome-section { padding: 4rem 2rem 0; }
    .welcome-name { font-size: 3.2rem; }
    .welcome-subtitle { font-size: 0.7rem; letter-spacing: 3px; }
    
    .ceremony-section { padding: 4rem 2rem; }
    .ceremony-name { font-size: 2.8rem; }
    .ceremony-time { font-size: 2.8rem; }
    .date-number { font-size: 2.5rem; }
    
    .album-section { padding: 4rem 2rem; }
    .album-photo-frame { max-width: 400px; }
    
    .reception-section { padding: 4rem 2rem; }
    .reception-welcome-time { font-size: 2.5rem; }
    .calendar-wrapper { max-width: 340px; padding: 1.5rem; }
    
    .rsvp-section { padding: 4rem 2rem; }
    .rsvp-content { max-width: 500px; }
    
    .location-section { padding: 4rem 2rem; }
    .map-container { max-width: 500px; margin: 0 auto; }
    .map-container iframe { height: 300px; }
    
    .timeline { max-width: 400px; }
    .timeline-time { font-size: 0.85rem; width: 80px; }
    .timeline-event { font-size: 0.9rem; width: 140px; }
    
    .guestbook-section { padding: 4rem 2rem; }
    .guestbook-form { max-width: 500px; padding: 2rem; }
    
    .footer-section { padding: 3rem 2rem 4rem; }
    .footer-note { max-width: 500px; font-size: 1.15rem; }
    .fountain-image { max-width: 420px; }
    
    .css-branches { width: 120px; opacity: 0.25; }
}

/* Album phrase style */
.album-phrase {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    color: var(--green-dark);
}

/* Regalos section - llamativa */
.regalos-section {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--cream-warm);
}

.regalos-card {
    background: white;
    border: 2px solid var(--green-medium);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(45, 74, 30, 0.1);
}

.regalos-envelope {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.regalos-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.regalos-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--green-medium);
    margin-bottom: 1rem;
}

.regalos-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Map link */
.map-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--green-dark);
    text-decoration: none;
    background: var(--green-dark);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
}

.map-link:active {
    opacity: 0.8;
}

/* Dress code note */
.dresscode-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1.2rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline with descriptions */
.timeline-label {
    width: 160px;
    text-align: left;
    padding-left: 1rem;
    background: white;
}

.timeline-desc {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 0.2rem;
}

.timeline-item {
    align-items: flex-start;
    margin-bottom: 2rem;
}

/* Cut timeline line at last item */
.timeline-item-last {
    margin-bottom: 0;
}

.timeline-line {
    bottom: 3rem !important;
}

/* WhatsApp button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.9rem 1.8rem;
    background: #25D366;
    color: white;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-btn:active {
    transform: scale(0.96);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* RSVP phone number */
.rsvp-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

/* Force video to behave as inline on mobile */
.fountain-image video {
    object-fit: cover;
    pointer-events: none;
}

.fountain-image video::-webkit-media-controls {
    display: none !important;
}

.fountain-image video::-webkit-media-controls-panel {
    display: none !important;
}
