html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
}

/*-----------------FUENTES---------------*/
@font-face {
    font-family: "Amoresa";
    src: url("fonts/Amoresa.woff2") format("woff2"),
        url("fonts/Amoresa.woff") format("woff"),
        url("fonts/Amoresa.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Perandory SemCond";
    src: url("fonts/Perandory SemCond.woff2") format("woff2"),
        url("fonts/Perandory SemCond.woff") format("woff"),
        url("fonts/Perandory SemCond.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.amoresa_txt {
    font-family: "Amoresa", serif;
    font-weight: normal;
    font-style: normal;    
}

.perandory_txt {
    font-family: "Perandory SemCond", serif;
    font-weight: normal;
    font-style: normal;
}

/*-------------------------------------------/

/* ------------------ NAVBAR --------------- */
.navbar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.navbar ul li a:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------ */

/* ---------------- SECTIONS --------------- */
.sec_intro { 
    background-color: #c8cfbd; 
    position:relative;
    height: 230vh;
}
.sec_lugares{
    background-color: #1e3d62;
    height: 80vh;
    color: white;
    padding: 5% 5% 5% 5%;
}
.sec_playlist {
    background-color: #e4caea;
    color: black;
    height: 100vh;
    padding: 5% 5% 5% 5%;
}
.sec_fotos {
    background-color: #1982c4;
    height: 100vh;
}
.sec_conocenos {
    background-color: #6a4c93;
    height: 100vh;
}
.sec_countdown {
    background-color: #c8cfbd;
    height: 40vh;
    padding: 5% 5% 5% 5%;
}
.section7 {
    background-color: #1f7a8c;
    height: 100vh;
}

/* ---------------------------------------------- */

/* ---------------- SECTION INTRO --------------- */

.img_sobre_azul {
    position: absolute;
    max-width: 400px;
    overflow: hidden;
    top: 3%;
    left: 27%;
    z-index: 999;
}

.img_sobre_azul img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.80));
    width: 100%;
    height: auto;
    display: block;
}

.img_portada {
    position: absolute;
    max-width: 350px;
    overflow: hidden;
    top: 22%;
    right: 31%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
    z-index: 1000;
}

.img_portada img {
    width: 100%;
    height: auto;
    display: block;
}

.letter_box {
    background: white;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.60);
    width: 280px;
    height: calc(280px * 1.42);
    margin: auto;
    text-align: center;
    color: black;
    top: 43%;
    left: 27%;
    position: absolute;
    z-index: 999;
}

.lb_title_big {
    font-size: 3rem;
}

.lb_title_small{
    font-size: 2rem;
}

.lb_text {
    font-size: 1rem;
}

.timeline {
    position: absolute;
    max-width: 350px;
    overflow: hidden;
    top: 67%;
    right: 35%;
    z-index: 1000;
}

.timeline img {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.90));
    width: 100%;
    height: auto;
    display: block;
}

.flor {

}

.flor_A1 { z-index: 1000; }
.flor_A2 { z-index: 1000; }
.flor_A3 { z-index: 1000; }

/* ------------------------------------------------ */

/* ---------------- SECTION LUGARES --------------- */

.cabecera {
    font-size: 3.5rem;
}

.sec_columnas {
    display: flex;
    height: 80%;
    width: 100%;
    padding-top: 5%;
    gap: 15%;
    justify-content: center;
}

.panel_sitio {
    max-width: 25%;
    font-size: 2rem;
    text-align: center;
    align-items: center; 
}

.hover_box {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;    
}

.hover_box img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.4s ease;
}

.hover_text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: 0.4s ease;
    background-color: rgba(0, 0, 0, 0.0);
}

.hover_box:hover img {
    filter: brightness(50%) saturate(150%);
}

.hover_box:hover .hover_text {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------------ */

/* ---------------- SECTION PLAYLIST --------------- */

.playlist_txt {
    text-align: left;
    font-size: 2rem;
    margin-top: 3%;
}







/* ------------------------------------------------ */

/* ---------------- SECTION COUNTDOWN --------------- */

.countdown_txt {
    text-align: center;
    color: black;
    text-decoration: underline;
}

#countdown-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 4%;
}

.panel_tiempo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Perandory SemCond", monospace;
}

.digit {
    font-size: 2.5rem;
    background-color: #191919;
    color: white;
    padding: 20px 20px;
    border-radius: 8px;
    box-shadow:
        inset 0 0 10px #00ff9133,
        0 4px 12px rgba(0,0,0,0.4);    
    letter-spacing: 2px;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}

.panel_tiempo label {
    font-family: "Perandory SemCond", serif;
    margin-top: 15px;
    font-size: 1.5rem;
    color: black;
}








