/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'V';
    line-height: 1.6;
    background: white;
    color: #4a6741;
}

.page-container {
    min-height: 100vh;
}

.invitation-content {
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* Decoraciones botánicas */
.botanical-decoration {
    position: fixed;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.botanical-decoration.left {
    bottom: 0;
    right: 0;
    top: auto;
    height: 60vh;
    background-position: bottom right;
    background-image: url('images/back1.png');
}

.botanical-decoration.right {
    right: 0;
    top: 0;
    height: 20vh;
    background-image: url('images/back2.png');
    background-position: top right;
}

/* Contenido principal */
.content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 2rem;
}

/* Secciones */
.header-section,
.location-section,
.timeline-section,
.footer-section,
.photo-share-section {
    text-align: center;
    margin: 4rem 0;
}

.photo-share-section {
    background: linear-gradient(135deg, #f5f9f3 0%, #e8f3e4 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #4a6741;
    box-shadow: 0 4px 15px rgba(74, 103, 65, 0.2);
}

.photo-share-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a6741;
    animation: pulse 2s ease-in-out infinite;
}

.photo-share-section .link {
    background-color: #4a6741;
    color: white;
    font-weight: 500;
    animation: glow 2s ease-in-out infinite;
}

.photo-share-section .link:hover {
    background-color: #3a5631;
    transform: scale(1.05);
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(74, 103, 65, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(74, 103, 65, 0.8), 0 0 30px rgba(74, 103, 65, 0.6);
    }
}

/* Elementos específicos */
.names h1 {
    font-family: 'Berkshire Swash', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    margin: 1rem 0;
    color: #4a6741;
    
}

.date-details {
    margin-bottom: 2rem;
}

.venue-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.venue-details p a, .venue-details p a:visited {
    color: #4a6741;
}


.venue-details p,
.gift-info p {
    color: #666;
    line-height: 1.8;
}

/* Imágenes */
img {
    max-width: 100%;
    height: auto;
}

.map-container img {
    max-width: 350px;
    width: 100%;
    margin-top: 2rem;
    border-radius: 10px;
}

/* Cuenta bancaria */
.account-number {
    font-family: monospace;
    font-size: 1rem;
    margin-top: 1rem;
    color: #4a6741;
    letter-spacing: 0px;
}

/* Timeline */
.timeline-section {
    text-align: center;
    margin: 4rem 0;
}

.timeline-section img {
    max-width: 90%;
    width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .invitation-content {
        padding: 1rem;
    }

    .names h1 {
        font-size: 2.5rem;
    }

    .botanical-decoration {
        width: 150px;
        opacity: 0.3;
    }

}

.link {
    display: inline-block;
    color: #4a6741;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    margin-bottom: 20px;
    border: 1px solid #4a6741;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.link:hover {
    background-color: #4a6741;
    color: white;
}