root {
    /* Paleta colores */
    --color-pallete-1: #fabe5a;
    --color-pallete-2: #9db677;
    --color-pallete-3: #f5fff5;
    --color-pallete-4: #ffffff;
    --color-pallete-5: #333333;
    --color-pallete-6: #444444;

    /* ----------------------- */


    /* Colores */
    --color-fondo-secciones: var(--color-pallete-5);
    --color-anim-cta-regresiva: var(--color-pallete-1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;

}

body {
    background: #dba759;
    color: #444;
}

.hero {
    height: 100vh;
    background: url("img/background.png") center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back {
    background: url("img/background.png") center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 10%;
    border-radius: 20px;
    text-align: center;
    margin: 3%;
}

.hero h1 {
    font-size: 7rem;
    color: #b89b5e;
}

.hero h2 {
    font-size: 4rem;
}

.scroll-text {
    margin-top: 20px;
    font-size: 23px;
    opacity: 0.8;
}

.section {
    min-height: 30vh;
    padding: 10px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.section img {
    max-width: 90%;
    border-radius: 20px;
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);*/
}


.img-flowers {
    width: 50% !important;
    height: auto;
}

.section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2f2a1e;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.background-foto {
    background-color: red;
}

section.portada .content-portada span.fecha {
    display: inline-block;
    white-space: nowrap;
    width: auto;
    font-family: var(--fuente-2);
    font-size: 25px;
    line-height: 25px;
    color: var(--color-fecha-portada);
    padding: 10px 30px 10px;
    margin-bottom: 30px;
    margin-top: 130px;
    border: 2px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to right, var(--degradez1-fecha), var(--degradez2-fecha), var(--degradez1-fecha));
}

.img-wave {
    height: auto;
    width: 100%;
}

.countdown-wrapper {
    /*  height: 60vh;
    display: flex; */
    justify-content: center;
    align-items: center;
}

.circle {
    background: #f4c36a;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    text-align: center;
    padding: 20% 70px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .8);
}

.title {
    color: #64450b;
    font-size: 50px;
    margin-bottom: 30px;
}

.time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.item span {
    color: #64450b;
    font-size: 50px;
    font-weight: bold;
    display: block;
}

.item small {
    color: #fff;
    font-size: 34px;
}

.divider {
    width: 1px;
    height: 50px;
    background: #6b6b6b;
}

.heart {
    margin-top: 30px;
    font-size: 32px;
}

.button_slide {
    color: #000;
    border: 2px solid rgb(255, 115, 0);
    border-radius: 30px;
    padding: 10px 26px;
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #ff9100;
    -webkit-transition: ease-out 0.7s;
    -moz-transition: ease-out 0.7s;
    transition: ease-out 0.7s;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

.slide:right:hover {
    box-shadow: inset 400px 0 0 0 #ff9100;
}

.hero-content>* {
    opacity: 0;
}

/* Animación */
@keyframes slideDown {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-down {
    animation: slideDown 1.2s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.scroll-text {
    margin-top: 20px;
    font-size: 35px;
    letter-spacing: 1px;
}

.valentina {
    font-size: 70px;
    padding: 6%;
    font-weight: 500
}

.heart {
    font-size: 48px;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.map-card {
    max-width: 700px;
    margin: 40px auto;
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(145deg, #f6cc59, #f6bf27);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    position: relative;
    padding: 12px;
}

.map-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: #302a18;
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.map-card iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover elegante */
.map-card:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Brillo dorado sutil */
.map-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(247, 215, 116, 0.4);
}

a {
    text-decoration: none;
}

.btn-waze {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 5px solid #ff9800;
    color: #ff9800;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000;
}

.btn-waze img {
    width: 30px;
    height: auto;
}

/* Hover elegante */
.btn-waze:hover {
    background: #ff9800;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.6);
}

.p-manual {
    padding-left: 10% !important;
    padding-right: 10% !important;
}

.back-dress {
    background: linear-gradient(145deg,
            rgba(246, 233, 186, 0.85),
            rgba(247, 186, 18, 0.85));
    border-radius: 20px;
    padding: 5%;
}

.reveal {
    opacity: 0;
    transform: translateX(-80px);
    /* viene desde la izquierda */
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateX(0);
}

.dress-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dress-list li {
    padding: 6px 15px;
    border: 2px solid #f7ba12;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    background: transparent;
    font-size: 25px;
}

.img-card {
    height: auto;
    width: 50%;
}

@media screen {
    .homenajeada h1 {
        padding-top: 10%;
        font-size: 60px;
    }

    .homenajeada P {
        font-size: 39px;
    }

    .p-manual {
        padding-left: 20% !important;

    }

    .ubicacion h1 {
        padding-top: 10%;
        font-size: 70px;
    }

    .ubicacion h2 {
        font-size: 50px;
    }

    .dress h1 {
        padding-top: 10%;
        font-size: 50px;
        font-weight: 700;
    }

    .dress h2 {
        padding-top: 3%;
        font-size: 70px;
        font-weight: 700;
    }

    .dress h3 {
        padding-top: 10%;
        font-size: 40px;
        font-weight: 700;
    }


    .dress h4 {
        font-size: 40px;
        font-weight: 700;
    }

    .dress p {
        padding-top: 4%;
        font-size: 25px;
        font-weight: 700;
    }

    .gifbox h2 {
        padding-top: 4%;
        font-size: 50px;
        font-weight: 700;
    }

    .gifbox h4 {
        padding-top: 4%;
        font-size: 40px;
        font-weight: 700;
    }

    .confirm h1 {
        padding-top: 6%;
        font-size: 40px;
        font-weight: 700;
    }
}

/* INDICADORES DORADOS */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d4af37;
    /* dorado */
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.4);
}

/* FLECHAS DORADAS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(212, 175, 55, 0.85);
    border-radius: 50%;
    padding: 15px;
    background-size: 60% 60%;
}

/* EFECTO HOVER */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #d4af37;
}

/* ALTURA ELEGANTE */
.carousel img {
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .carousel img {
        height: auto;
    }
}