/* --------------------CUENTA REGRESIVA--------------------------- */

html,
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

#cuenta-regresiva-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* ========================= */
/* POSICIONES */
/* ========================= */

.position.top{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.position.bottom{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.position.middle{
    position: absolute;
    bottom: 40%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}


/* ========================= */
/* ENCABEZADO */
/* ========================= */

.encabezado {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ========================= */
/* 🔥 COVER NUEVO (OVERLAY) */
/* ========================= */

.invitacion {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-style: normal;
    background: transparent;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

/* HERO FULL */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}

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

/* 🔥 CONTENIDO ENCIMA DE LA IMAGEN */
.overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
    color: white;
}

/* ========================= */
/* TIPOGRAFÍA */
/* ========================= */

.overlay-content .intro {
    font-size: 2.8vw;
    margin: 5px 0 15px 0;
}

.overlay-content h1 {
    font-size: 10vw;
    margin: 5px 0;
    font-family: "Rouge Script", cursive;
}

.overlay-content .amp {
    font-style: italic;
    font-family:"Rouge Script", cursive;
    margin-left: .25rem !important;
    margin-right: .25rem !important;
    font-size: 8vw;
}

.overlay-content .fecha {
    font-size: 2.5vw;
    margin-top: 10px;
    font-family: "Rouge Script";
}

/* contador */
.overlay-content .medio-footer {
    margin: 10px 0;
}

/* ========================= */
/* OPCIONAL POSICIONES */
/* ========================= */

.overlay-content.top {
    justify-content: flex-start;
}

.overlay-content.center {
    justify-content: center;
}

.overlay-content.bottom {
    justify-content: flex-end;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 500px) {

    .hero {
        height: 100svh;
    }

    .overlay-content h1 {
        font-size: 15vw;
    }

    .overlay-content .amp {
        font-size: 12vw;
    }

    .overlay-content .fecha {
        font-size: 6.5vw;
        margin-bottom: 1rem;
        margin-top: -5px;
    }

    .overlay-content .intro {
        font-size: 3.5vw;
    }
}

@media (min-width: 760px) {

    .hero {
        height: 100svh;
    }
}

@media (min-width: 1100px) {

    .hero {
        height: 100svh;
    }

    .hero img{
        object-position: 50% 20%;
    }

    .overlay-content .fecha {
        font-size: 2vw;
    }
}

@media (min-width: 1500px) {

    .hero {
        height: 100svh;
    }
}

.graduation-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    width: 100%;

    margin: 20px 0 0px 0
}


.graduation-divider .line {

    width: 120px;

    height: 1px;

    background: #706747;
}


.graduation-divider i {

    font-size: 32px;

    color: #706747;
}

.diamond {

    width: 8px;

    height: 8px;

    background: #706747;

    transform: rotate(45deg);
}