body {
    background-color: #cdeae1;
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
}
section {
    background-color: #f8f9fa; /* por ejemplo */
}


/* 1) HERO */
.hero {
    position: relative;
    height: auto;
    overflow: hidden;
}

    .hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px; /* Más alto para una transición más gradual */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #ffffff 90%);
        pointer-events: none;
    }


/* 2) RECUERDO */
.memory {
    padding: 4rem 1rem;
    background: #f8f9fa;
    text-align: center;
}

    .memory h2 {
        font-family: 'Great Vibes', cursive;
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #258d6a;
    }

    .memory p {
        font-size: 1.25rem;
        color: #333;
        max-width: 700px;
        margin: auto;
        line-height: 1.6;
    }

/* 3) TARJETA BLANCA */
.info-card {
    max-width: 800px;
    margin: 2rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

    .info-card h2 {
        font-family: 'Great Vibes', cursive;
        font-size: 3rem;
        text-align: center;
        margin-bottom: .5rem;
    }

    .info-card .couple {
        font-size: 1.25rem;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #555;
    }

    .info-card hr {
        border-color: #ccc;
        margin: 2rem 0;
    }

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

    .padrino-group h5 {
        font-weight: 700;
        text-align: center;
        margin-bottom: .5rem;
        color: #333;
    }

    .padrino-group p {
        font-family: 'Great Vibes', cursive;
        font-size: 1.5rem;
        text-align: center;
        margin: .5rem 0;
        position: relative;
    }

        .padrino-group p + p::before {
            content: "—";
            position: absolute;
            left: 50%;
            top: -1rem;
            transform: translateX(-50%);
            color: #ccc;
        }

.invite-text {
    text-align: center;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

/* 🌸 MARIPOSAS CAYENDO */
.mariposa {
    position: fixed;
    top: -50px;
    width: 35px;
    height: 35px;
    background: url('/images/plantillas/xv/plantilla001/feather.png') no-repeat center center / contain;
    opacity: 0.8;
    animation: caerMariposa linear infinite;
    pointer-events: none;
    z-index: 9999;
}

@keyframes caerMariposa {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateX(30px) translateY(50vh) rotate(180deg);
    }

    100% {
        transform: translateX(-30px) translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* LÍNEA VERTICAL */
.vertical-line {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 2px;
    height: calc(100% - 50px);
    background-color: #258d6a;
    transform: translateX(-50%);
    z-index: 1;
}


.wedding-date {
    background-color: #ffffff; /* Tarjeta blanca */
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .wedding-date h2 {
        color: #4b4f6b;
        font-weight: bold;
    }

    .wedding-date #countdown .text-center {
        min-width: 70px;
    }

    .wedding-date #countdown .fs-1 {
        font-size: 2.5rem;
        color: #258d6a;
    }


.location-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .location-section h2 {
        color: #4b4f6b;
    }

    .location-section h3 {
        color: #333;
        margin-bottom: 0.5rem;
    }

    .location-section p {
        color: #444;
        margin-bottom: 1rem;
    }

    .location-section a.btn {
        border-color: #258d6a;
        color: #000;
        transition: all 0.3s ease;
    }

        .location-section a.btn:hover {
            background-color: #258d6a;
            color: #fff;
            text-decoration: none;
        }

.itinerary-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.timeline-v1 .icon {
    border: 2px solid #258d6a;
    background-color: #258d6a !important;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-v1 .vertical-line {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 4px;
    height: calc(100% - 50px);
    background-color: #258d6a;
    transform: translateX(-50%);
    z-index: 1;
    border-radius: 2px;
}

.itinerary-section h2 {
    font-weight: bold;
    color: #4b4f6b;
}

.text-warning-emphasis {
    color: #258d6a !important;
}


.dresscode-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .dresscode-section h2 {
        font-weight: bold;
        color: #4b4f6b;
    }

    .dresscode-section h3 {
        color: #258d6a;
    }

    .dresscode-section .border-warning {
        border-color: #258d6a !important;
    }

.text-warning-emphasis {
    color: #258d6a !important;
}


.gift-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .gift-section h2 {
        font-weight: bold;
        color: #4b4f6b;
        font-size: 2rem;
    }

    .gift-section p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.7;
    }


.gallery-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .gallery-section h2 {
        font-weight: bold;
        color: #4b4f6b;
        font-size: 2rem;
    }

.carousel-inner img {
    border-radius: 1rem;
    object-fit: cover;
    max-height: 500px;
}

.img-thumbnail {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

    .img-thumbnail:hover {
        border-color: #c5a900;
    }







.photo-upload-section {
    background-color: #ffffff;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .photo-upload-section h2 {
        font-weight: bold;
        color: #4b4f6b;
        font-size: 2rem;
    }

    .photo-upload-section p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.7;
    }

    .photo-upload-section a.btn {
        border-color: #258d6a;
        color: #000;
        transition: all 0.3s ease;
    }

        .photo-upload-section a.btn:hover {
            background-color: #258d6a;
            color: #fff;
            text-decoration: none;
        }




.confirm-section {
    background-color: #ffffff;
    max-width: 850px;
    margin: 2rem auto;
    padding: 2rem 2rem 3rem;
    border-radius: .5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

    .confirm-section h2 {
        color: #4b4f6b;
        font-weight: bold;
    }

    .confirm-section p {
        font-size: 1.1rem;
        color: #444;
        line-height: 1.7;
    }

    .confirm-section .form-label {
        font-weight: 500;
        color: #333;
    }

    .confirm-section .form-control,
    .confirm-section .form-select {
        border-radius: .5rem;
    }

    .confirm-section .btn-outline-warning {
        border-color: #258d6a;
        color: #000;
        transition: all 0.3s ease;
    }

        .confirm-section .btn-outline-warning:hover {
            background-color: #258d6a;
            color: #fff;
        }

    .confirm-section .btn-success i {
        margin-right: 5px;
    }
