/* ===========================
      ESTILOS GENERALES
=========================== */
@font-face{
    font-family: "LoveBoho";
    src: url("../fuentes/LoveBoho.otf") format("opentype");
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:white;
    overflow-x:hidden;
}

/* ===========================
        FONDO
=========================== */

.hero{
    position:relative;
    min-height:100vh;

    background-image:url("../img/FONDO1.gif");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(2px);

}

/* ===========================
        MENÚ
=========================== */

header{

    position:fixed;

    width:100%;

    top:0;

    z-index:1000;

}

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 60px;

}

.logo{

    font-size:35px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    font-size:18px;

    transition:.3s;

}

nav a:hover{

    color:#ff8db6;

}

/* ===========================
        CONTENIDO
=========================== */

.contenido{

    position:relative;

    z-index:2;

    text-align:center;

    width:90%;

    max-width:1100px;

}

h1{

    font-family:"LoveBoho", cursive;

    font-size:90px;

    letter-spacing:4px;

    margin-bottom:15px;

    text-shadow:
    0 0 10px #ffb6d9,
    0 0 25px hotpink,
    0 0 50px hotpink;

}

h2{

    font-family:"LoveBoho", cursive;

    font-size:50px;

    margin-bottom:10px;

}

h3{

    font-family:"LoveBoho", cursive;

    font-size:38px;

    color:#ffd6e8;

}

.subtitulo{

    margin-top:20px;

    font-size:23px;

    opacity:.9;

}

/* ===========================
        FOTOS
=========================== */

.galeria{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:60px;

    flex-wrap:wrap;

}

.galeria img{

    width:320px;

    height:420px;

    object-fit:cover;

    border-radius:25px;

    border:5px solid white;

    transition:.5s;

    box-shadow:0 0 25px rgba(255,255,255,.4);

}

.galeria img:hover{

    transform:scale(1.05);

    box-shadow:0 0 35px hotpink;

}

/* ===========================
        MENSAJE
=========================== */

.mensaje{

    margin:70px auto;

    max-width:900px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:25px;

    padding:35px;

    line-height:2;

    font-size:20px;

    box-shadow:0 0 35px rgba(255,255,255,.25);

}

/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:900px){

    h1{

        font-size:48px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:24px;

    }

    nav{

        padding:20px;

        flex-direction:column;

        gap:15px;

    }

    .galeria img{

    width:260px;
    height:340px;

}

}
/*=========================
        INTRO
=========================*/

#intro{

    position:fixed;

    inset:0;

    background:black;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    z-index:99999;

    transition:1.5s;

}

#intro h1{

    font-size:85px;

    margin-bottom:50px;

    color:white;

}

#entrar{

    padding:18px 45px;

    font-size:24px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:#ff4fa1;

    color:white;

    transition:.4s;

    box-shadow:0 0 20px hotpink;

}

#entrar:hover{

    transform:scale(1.08);

    box-shadow:0 0 35px hotpink;

}

.ocultar{

    opacity:0;

    visibility:hidden;

}
}