/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #faf9f7;
    overflow-x: hidden;
}

/* SMOOTH VERTICAL SCROLL */
html {
    scroll-behavior: smooth;
}

/* ELEGANT ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* SMOOTH TRANSITIONS */
section {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.countdown-item, .info-card, .payment-card, .contact-card {
    transition: all 0.3s ease;
}

.couple-photo {
    transition: all 0.3s ease;
}

/* Color Palette */
:root {
    --turquoise: #4ecdc4;
    --turquoise-light: #7dd3d0;
    --turquoise-dark: #3ba8a0;
    --beige: #f5f3f0;
    --beige-dark: #e8e5e1;
    --gray: #6c757d;
    --gray-light: #adb5bd;
    --gray-dark: #495057;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--beige) 0%, var(--turquoise-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

/* Vertical Names Layout - CENTERED */
.couple-names-vertical {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 3rem !important;
    width: 100% !important;
    text-align: center !important;
}

.name-beatriz, .name-bernardo {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(3rem, 8vw, 5.5rem) !important;
    font-weight: 300 !important;
    color: #2c3e50 !important;
    letter-spacing: -0.02em !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
}

.name-beatriz:hover, .name-bernardo:hover {
    color: #3ba8a0 !important;
    transform: translateY(-3px) !important;
}

.ampersand {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 300 !important;
    color: #4ecdc4 !important;
    font-style: italic !important;
    transition: all 0.3s ease !important;
    display: block !important;
    margin: 0.5rem 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
}

.ampersand:hover {
    transform: scale(1.1) !important;
    color: #3ba8a0 !important;
}

.wedding-date {
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    color: #2c3e50 !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.05em !important;
}

.wedding-date-detail {
    font-size: clamp(1.4rem, 3.5vw, 2rem) !important;
    color: #4ecdc4 !important;
    margin-bottom: 3rem !important;
    font-weight: 500 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.02em !important;
}

/* Artistic Countdown */
.countdown-container {
    margin-top: 2rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtleFloat 4s ease-in-out infinite;
}

.countdown-item:nth-child(2) {
    animation-delay: 1s;
}

.countdown-item:nth-child(3) {
    animation-delay: 2s;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: var(--turquoise-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--text-dark);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
}

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

/* Photo Section */
.photo-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--beige) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.photo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.photo-content {
    padding: 2rem;
}

.photo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.photo-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1rem;
}

.photo-content .photo-subtitle-highlight {
    font-size: clamp(1.3rem, 3vw, 1.6rem) !important;
    color: #3ba8a0 !important;
    font-weight: 500 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    display: block !important;
    text-align: left !important;
}

.photo-subtitle-highlight {
    font-size: clamp(1.3rem, 3vw, 1.6rem) !important;
    color: #3ba8a0 !important;
    font-weight: 500 !important;
    font-family: 'Playfair Display', serif !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    display: block !important;
    text-align: left !important;
}

.photo-subtitle:last-child {
    font-style: italic;
    color: var(--gray);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: 0;
}

.photo-placeholder {
    position: relative;
}

.photo-frame {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--turquoise-light) 0%, var(--turquoise) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
}

.photo-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.couple-photo:hover {
    transform: scale(1.02);
}

/* Timeline Section */
.timeline-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-dark) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--turquoise);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-time {
    flex: 0 0 200px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--turquoise-dark);
    background: var(--white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--beige-dark) 0%, var(--turquoise-light) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.location-card {
    max-width: 1000px;
    margin: 0 auto 4rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.location-content {
    padding: 3rem;
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.time-info, .location-info {
    text-align: center;
}

.time-info h3, .location-info h3 {
    font-size: 1.2rem;
    color: var(--turquoise-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.time {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.church-name, .venue-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.church-address, .venue-address {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.maps-button {
    display: inline-block;
    background: var(--turquoise);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.maps-button:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Info Section */
.info-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--turquoise-light) 0%, var(--beige) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gentlePulse 6s ease-in-out infinite;
}

.info-card:nth-child(2) {
    animation-delay: 2s;
}

.info-card:nth-child(3) {
    animation-delay: 4s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* RSVP Section */
.rsvp-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--beige) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.rsvp-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rsvp-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.rsvp-deadline {
    background: var(--turquoise-light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.deadline-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.rsvp-contact {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* Music Section */
.music-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-dark) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.music-container {
    max-width: 800px;
    margin: 0 auto;
}

.music-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.music-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--turquoise);
}

.submit-btn {
    background: var(--turquoise);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.submit-btn:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.music-requests {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.music-requests h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.request-item {
    background: var(--beige);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--turquoise);
}

.request-content {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.request-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.no-requests {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
    text-align: center;
}

/* Payment Section */
.payment-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--beige-dark) 0%, var(--turquoise-light) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtleFloat 5s ease-in-out infinite;
}

.payment-card:nth-child(2) {
    animation-delay: 2.5s;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.payment-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.iban-details {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.iban-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    word-break: break-all;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    -ms-text-decoration: none !important;
    -o-text-decoration: none !important;
}

.copy-btn {
    background: var(--turquoise);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(78, 205, 196, 0.3);
}

.copy-btn:hover {
    background: var(--turquoise-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--turquoise-light) 0%, var(--beige) 100%);
    padding: 4rem 2rem;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gentlePulse 7s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    animation-delay: 3.5s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Buttons */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-phone {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-date {
    color: var(--gray-light);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .photo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 4rem;
    }
    
    .timeline-time {
        position: absolute;
        left: 0;
        top: 0;
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 1rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .countdown {
        gap: 1.5rem;
    }
    
    .countdown-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .photo-title {
        font-size: 2rem;
    }
}