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

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d6 50%, #f5f0e8 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}


.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: grayscale(100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #8B2942;
    z-index: 20;
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-footer {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-date {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-btn {
    background: rgba(139, 41, 66, 0.9);
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    background: rgba(163, 51, 82, 0.9);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 41, 66, 0.4);
}

.hero-rsvp-btn {
    background: #8B2942;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-rsvp-btn:hover {
    background: #a33352;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 41, 66, 0.4);
}

/* Section Dividers */
.section-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B2942, transparent);
    margin: 0 auto 2rem;
    opacity: 0.3;
}

/* Itinerary Date Subtitle */
.itinerary-date {
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.95) 0%, rgba(237, 228, 214, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(139, 41, 66, 0.1);
    border-bottom: 1px solid rgba(139, 41, 66, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #8B2942;
}

.logout-btn {
    background: none;
    border: 1px solid #8B2942;
    color: #8B2942;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #8B2942;
    color: white;
}

.fixed-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: #8B2942;
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: #8B2942;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.7;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 55px;
    width: auto;
}

main {
    margin-top: 70px;
}

.gallery-section {
    padding: 2rem;
    background: #f0e8d8;
    position: relative;
}

.gallery-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    text-align: center;
    color: #8B2942;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 2rem;
}


.gallery-video {
    max-width: 800px;
    margin: 0 auto;
    padding: 0.5rem 2rem 2rem;
    overflow: hidden;
}

.gallery-video video {
    display: block;
    width: 75%;
    margin: 0 auto;
    background: #f0e8d8;
    object-fit: cover;
    clip-path: inset(8% 0 8% 0);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.history-section {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d6 100%);
    position: relative;
}


.history-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #8B2942;
    font-style: italic;
}

.history-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.history-item {
    display: flex;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    align-items: center;
    gap: 1.5rem;
}

.history-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.history-item:nth-child(even) {
    flex-direction: row-reverse;
}

.history-image {
    flex: 1;
    max-width: 250px;
}

.history-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.history-content {
    flex: 1;
    padding: 0.5rem;
}

.history-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #8B2942;
}

.date {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.25rem;
}

.location {
    color: #888;
    font-style: italic;
}

.itinerary-section {
    padding: 1rem 0.5rem 3rem;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    position: relative;
}


.itinerary-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #8B2942;
    font-weight: 400;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.countdown-unit {
    text-align: center;
}

.countdown-unit span:first-child {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #8B2942;
    line-height: 1;
}

.countdown-unit span:last-child {
    font-family: 'Crimson Text', serif;
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #8B2942;
    opacity: 0.4;
    align-self: flex-start;
    line-height: 1;
}

/* Itinerary Link Button */
.itinerary-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #8B2942;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.itinerary-btn:hover {
    background: #a33352;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 41, 66, 0.4);
}

/* Venue Cards */
.venue-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
}

.venue-card {
    flex: 1;
    max-width: 380px;
    text-align: center;
}

.venue-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8B2942;
    margin-bottom: 0.5rem;
}

.venue-card p {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Venue Items (timeline-style) */
.venue-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
}

.venue-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.venue-item:nth-child(even) {
    flex-direction: row-reverse;
}

.venue-icon {
    flex-shrink: 0;
    width: 200px;
}

.venue-icon img {
    width: 100%;
    height: auto;
}

.venue-content {
    flex: 1;
    max-width: 350px;
}

.venue-item:nth-child(odd) .venue-content {
    text-align: left;
}

.venue-item:nth-child(even) .venue-content {
    text-align: right;
}

.venue-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8B2942;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.venue-content p {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.venue-btn {
    background: #8B2942;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Crimson Text', serif;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    transition: background 0.3s ease;
}

.venue-btn:hover {
    background: #a33352;
}

.transport-city {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #8B2942;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.transport-stop {
    font-family: 'Crimson Text', serif;
    color: #555;
    margin-bottom: 0.1rem;
    font-size: 1rem;
}

.transport-note {
    font-family: 'Crimson Text', serif;
    color: #555;
    margin-top: 0.8rem;
    font-style: italic;
    font-size: 0.95rem;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #8B2942;
    text-decoration: none;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

/* Desktop: Horizontal Timeline */
.itinerary-timeline {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    width: auto;
    background: #8B2942;
    transform: translateY(-50%);
    filter: url(#pencil-line);
}

.itinerary-item {
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 0 0.15rem;
}

/* Vertical tick mark at each event point */
.itinerary-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 24px;
    background: #8B2942;
    transform: translate(-50%, -50%);
    z-index: 5;
    filter: url(#pencil-line);
}

/* Odd items: text ABOVE the line, icon BELOW */
.itinerary-item:nth-child(odd) .itinerary-content {
    grid-row: 1;
    align-self: end;
    text-align: center;
    padding: 0 0.2rem 1rem;
    margin: 0;
}

.itinerary-item:nth-child(odd) .itinerary-icon {
    grid-row: 2;
    align-self: start;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 1rem;
}

/* Even items: icon ABOVE the line, text BELOW */
.itinerary-item:nth-child(even) .itinerary-icon {
    grid-row: 1;
    align-self: end;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 1rem;
}

.itinerary-item:nth-child(even) .itinerary-content {
    grid-row: 2;
    align-self: start;
    text-align: center;
    padding: 1rem 0.2rem 0;
    margin: 0;
}

.itinerary-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #8B2942;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    z-index: 10;
    font-family: serif;
    font-weight: bold;
    color: #8B2942;
    box-shadow: 0 3px 10px rgba(139, 41, 66, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.itinerary-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 41, 66, 0.4);
}

.icon-bus,
.icon-church,
.icon-hotel,
.icon-cocktail,
.icon-dinner,
.icon-dance,
.icon-sleep {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    width: 100px;
    height: 100px;
}

.icon-bus {
    background-image: url('/fotos/bus_acuarela.jpg');
}

.icon-bus::before {
    content: "";
}

.icon-church {
    background-image: url('/fotos/Iglesia.png');
}

.icon-church::before {
    content: "";
}

.icon-hotel {
    background-image: url('/fotos/palacio.png');
}

.icon-hotel::before {
    content: "";
}

.icon-cocktail {
    background-image: url('/fotos/coctel.png');
}

.icon-cocktail::before {
    content: "";
}

.icon-dinner {
    background-image: url('/fotos/cena.png');
}

.icon-dinner::before {
    content: "";
}

.icon-dance {
    background-image: url('/fotos/fiesta_2.png');
}

.icon-dance::before {
    content: "";
}

.icon-sleep {
    background-image: url('/fotos/zzz.png');
}

.icon-sleep::before {
    content: "";
}

.itinerary-content {
    width: auto;
    max-width: 160px;
    background: transparent;
    padding: 0.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.itinerary-content:hover {
    transform: translateY(-3px);
}

.itinerary-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: #8B2942;
    font-weight: 600;
}

.time {
    font-weight: 600;
    color: #666;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.itinerary-content button {
    background: #8B2942;
    color: white;
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background 0.3s ease;
    margin-top: 0.3rem;
    margin-right: 0.3rem;
    display: inline-block;
}

.itinerary-content button:hover {
    background: #a33352;
}

.info-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d6 100%);
    position: relative;
}


.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(139, 41, 66, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}


.info-block.clickable {
    cursor: pointer;
}

.info-block.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 41, 66, 0.2);
    background: #fafafa;
}

.info-block h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #8B2942;
    font-weight: 400;
}

.info-block-img {
    width: 240px;
    height: auto;
    margin-top: 0.5rem;
}

.account-section {
    padding: 2rem;
    background: white;
    text-align: center;
    border-top: 1px solid #eee;
}

.account-info h3 {
    font-family: 'Playfair Display', serif;
    color: #8B2942;
    font-size: 1.3rem;
}

.rsvp-button {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    z-index: 500;
}

.rsvp-button button {
    background: #8B2942;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 41, 66, 0.3);
    transition: all 0.3s ease;
}

.rsvp-button button:hover {
    background: #a33352;
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(139, 41, 66, 0.1);
}


.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal h2 {
    font-family: 'Cormorant Garamond', serif;
    color: #8B2942;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    font-size: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.additional-guest {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.guest-form {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.submit-btn {
    background: #488E61;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #5FA772;
}

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #8B2942;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(139, 41, 66, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background: #a33352;
    transform: scale(1.05);
}

.chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #8B2942;
    color: white;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.chat-header h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 280px;
}

.message {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f9f9f9;
    border-radius: 5px;
}

.message strong {
    color: #8B2942;
    display: block;
    margin-bottom: 0.25rem;
}

.message small {
    color: #666;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.chat-input input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.chat-input button {
    background: #8B2942;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.message-thread {
    margin-bottom: 1rem;
}

.message-thread .message {
    margin-bottom: 0.5rem;
}

.message.reply {
    margin-left: 1.5rem;
    border-left: 2px solid #8B2942;
    background: #f0e6e9;
}

.message-content {
    margin-bottom: 0.25rem;
}

.message-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message-footer small {
    margin-top: 0;
}

.reply-btn {
    background: none;
    border: none;
    color: #8B2942;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}

.reply-btn:hover {
    text-decoration: underline;
}

.message-reply-context {
    background: #e9e9e9;
    border-left: 3px solid #8B2942;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #666;
}

.reply-preview {
    background: #f0e6e9;
    border-left: 3px solid #8B2942;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.cancel-reply {
    background: none;
    border: none;
    color: #8B2942;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
}

/* Info Modal Styles */
.info-modal-content {
    max-height: 60vh;
    overflow-y: auto;
}

.accommodation-option,
.plan-option,
.beauty-service {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #8B2942;
}

.accommodation-option h3,
.plan-option h3,
.beauty-service h3 {
    color: #8B2942;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.accommodation-option button,
.plan-option button,
.beauty-service button {
    background: #8B2942;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

.accommodation-option button:hover,
.plan-option button:hover,
.beauty-service button:hover {
    background: #a33352;
}

.accommodation-note,
.beauty-note {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #17a2b8;
    margin-top: 1rem;
}

.beauty-service ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.beauty-service li {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-date {
        font-size: 1.2rem;
    }
    
    .hero-btn,
    .hero-rsvp-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-footer {
        flex-direction: column;
        align-items: center;
        bottom: 25% !important;
        gap: 0.5rem;
    }
    
    .fixed-header {
        padding: 0.4rem 0.5rem;
    }
    
    .fixed-header h1 {
        font-size: 1.5rem;
    }
    
    .slideshow-image {
        height: 300px;
    }

    .gallery-video {
        padding: 0.5rem 0;
    }

    .gallery-video video {
        width: 100%;
    }

    .history-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .history-item:nth-child(even) {
        flex-direction: column !important;
    }

    /* Mobile: Vertical Timeline - Zigzag */
    .itinerary-timeline {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
        padding: 1rem 0;
        position: relative;
    }

    .itinerary-timeline::before {
        top: 0;
        bottom: 0;
        left: 50% !important;
        right: auto !important;
        width: 2px;
        height: auto;
        transform: translateX(-50%) !important;
    }

    .itinerary-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0;
        width: 100%;
        position: relative;
    }

    .itinerary-item::before {
        display: none;
    }

    /* Odd items: on the right side of the line */
    .itinerary-item:nth-child(odd) {
        flex-direction: row;
        justify-content: flex-start;
        margin-left: 50%;
        width: 50%;
        padding-left: 0.3rem;
    }

    .itinerary-item:nth-child(odd) .itinerary-content {
        text-align: left;
        padding: 0 0 0 0.3rem;
        width: auto;
        max-width: none;
    }

    .itinerary-item:nth-child(odd) .itinerary-icon {
        margin: 0;
    }

    /* Even items: on the left side of the line */
    .itinerary-item:nth-child(even) {
        flex-direction: row-reverse;
        justify-content: flex-start;
        margin-right: 50%;
        width: 50%;
        padding-right: 0.3rem;
    }

    .itinerary-item:nth-child(even) .itinerary-content {
        text-align: right;
        padding: 0 0.3rem 0 0;
        width: auto;
        max-width: none;
    }

    .itinerary-item:nth-child(even) .itinerary-icon {
        margin: 0;
    }

    .itinerary-content {
        font-size: 1rem;
    }

    .itinerary-content h3 {
        font-size: 1.2rem;
    }

    .itinerary-icon {
        width: 70px !important;
        height: 70px !important;
        flex-shrink: 0;
    }

    .itinerary-icon.icon-sleep {
        width: 55px !important;
        height: 55px !important;
    }

    .itinerary-icon.icon-dance {
        width: 85px !important;
        height: 85px !important;
    }

    .itinerary-content h3 {
        font-size: 1rem;
    }

    .itinerary-icon {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        margin-left: 16px;
    }

    .venue-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .venue-item {
        flex-direction: column !important;
        text-align: center;
    }

    .venue-item:nth-child(odd) .venue-content,
    .venue-item:nth-child(even) .venue-content {
        text-align: center;
    }

    .venue-icon {
        width: 160px;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-unit span:first-child {
        font-size: 1.6rem;
    }

    .countdown-unit span:last-child {
        font-size: 0.75rem;
    }

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

    .rsvp-button {
        position: static;
        transform: none;
        text-align: center;
        padding: 2rem;
    }
    
    .chat-container {
        width: 280px;
        height: 350px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .info-blocks {
        display: flex;
        flex-direction: column;
    }

    .info-blocks {
        gap: 0.5rem;
    }

    .info-block {
        padding: 0.2rem;
    }

    .info-block:nth-child(1) {
        order: 3;
    }

    .info-block:nth-child(2) {
        order: 1;
    }

    .info-block:nth-child(3) {
        order: 2;
    }

    .info-block h3 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .info-block-img {
        width: 200px;
        margin-top: 0;
    }
}