/*
Colores
    black
    #fff como blanco
    rgb(180, 180, 180) para hovers

Letra:
    font-family: "Cormorant Garamond", serif;
    font-size: 2em;
    font-weight: 300;

Dorados para titulos:
        Fondo claro: #817b6c;
        Fondo Obscuro: #e2dbc1;
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    background-color: rgb(0, 0, 0);
    display: block;
}
/* Section general*/
section{
    width: 100%;
    height: 100vh;
}
p, h1, h2, a{
    font-family: "Cormorant Garamond", serif;
}
.img{
    width: 40%;
    height: 90%;
}


/*Nav barr
*********************************************************************************************************************

*/

.navbar{
    width: 100%;
    height: 8vh;
    padding: 20px 10% 10px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 5;
    transition: background-color 0.5s ease-in-out;
    background-color: transparent;
}

/*ALIVE textlogo*/
.navbar .logo{
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5em;
    font-weight: 1000;
}

.nav-links{
    display: flex;
    justify-content: space-between;
}

.navbar a{ /*Pintar todos los links del NAVBAR y quitar cosas extras*/
    color: #fff;
    text-decoration: none;
    margin: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3em;
    font-weight: 200;
}
/*Boton de contactanos*/
.navbar button{
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    border: none;
    font-family: "Cormorant Garamond", serif;
}
#textbutton{
    color: black;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3em;
    font-weight: 500;
}

/*Hover de los links y de los botones*/
.navbar .nav-links a:hover{
    color: rgb(180, 180, 180);
}
.navbar .nav-links button:hover{
    background-color: rgb(180, 180, 180);
}
.navbar .nav-links button:active{
    background-color:#fff;
}
.navbar.scrolled{
    background-color: black;
}

/*Elementos que no deben estar en la version de pc*/
input{
    display: none;
}
label{
    display: none;
}
#contactlink{
    display: none;
}
@media (max-width: 970px) {
    .navbar .logo{
        font-size: 1.5em;
    }

    /*Poner elementos que solo apareceran en el cel */
    label{
        display: block;
    }
    .navbar button{
        display: none;
    }
    #contactlink{
        display: block;
    }
    .navbar{
        background-color: black;
        height: 10vh;
    }
    .nav-links a{
        font-size: 1.3em;
        font-weight: 1000;
    }
    
    .nav-links{
        position: absolute;
        top: 60px;
        background-color: black;
        left: 0;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: start;
        height: 0;
        transition: 0.5s;
        overflow: hidden;
    }
    .nav-links a:nth-child(1){
        margin-top: 50px;
    }
    
    /*Menu Hamburguer */
    label{
        width: 30px;
        height: 15px;
        position: relative;
    }
    label div{
        width: 100%;
        height: 3px;
        background: #fff;
        position: absolute;
        transform: translateY(-50%);
        border-radius: 99px;
        transition: 0.5s;
    }

    /*Lineas*/
    label div:nth-child(1){
        top: 0;
    }
    label div:nth-child(2){
        top: 50%;
    }
    label div:nth-child(3){
        top: 100%;
    }

    /*Confirmacion de check*/
    input:checked + .navbar .nav-links{
        height: 100vh;
    }

    /*Animavion de la X*/
    input:checked + .navbar label div:nth-child(1){
        transform: rotate(45deg);
        top: 50%;
    }
    input:checked + .navbar label div:nth-child(2){
        transform: rotate(-45deg);
        top: 50%;
    }
    input:checked + .navbar label div:nth-child(3){
        transform: scale(0);
    }

}
/* Section 1, Honduras Home
*********************************************************************************************************************

*/
#home{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/hnflag.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*Contenedor en el centro*/
#home .masterdiv{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1;
}

/*Titulo de homepage*/
#home .masterdiv h1{
    font-size: 20vh;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
#home .masterdiv p{
    font-size: 7vh;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

video{
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}
.capa{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
}

/*MOBILE SCREEN hacer mas pequeno el titulo y el boton*/
@media (max-width: 900px){
    #home .masterdiv h1{
        font-size: 5vh;
    }
    #home .masterdiv button{
        font-size: 2vh;
    }
}

/* Section 2, Honduras Info
*********************************************************************************************************************

*/
.hninfo{
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}
.hninfo h2{
    color: #817b6c;
    font-size: 15vh;
    font-weight: 500;
    text-align: center;
    margin-top: 3%;
}

.masterdivinfo{
    width: 90%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.info p{
    width: 40%;
    font-size: 1.6em;
    font-weight: 600;
    text-align: justify;
}

#imghn1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/hnimg1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#imghn2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/hnflag.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*MOBILE SCREEN hacer mas pequeno el titulo y el boton*/
@media (max-width: 900px){
    .hninfo h2{
        font-size: 5vh;
    }
    .hninfo .masterdivinfo{
        display: none;
    }
    .hninfo .phoneversion{
        width: 80%;
        height: 60%;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        text-align: center;
    }
    .hninfo .img{
        width: 100%;
        height: 40%;
    }
}
/* Section 3, Honduras Conf
*********************************************************************************************************************

*/
#hnconf{
    background-color: black;
    color: #fff;
}

#hnconf h2,#hnconf b{
    color: #e2dbc1;
}
#imghnconf1{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/marzo22.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#imghnconf2{
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(images/misionimg.jpeg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
@media (max-width: 900px){
    #hnconf h2{
        font-size: 5vh;
    }
    #hnconf .masterdivinfo{
        display: none;
    }
    #hnconf .phoneversion{
        width: 80%;
        height: 80%;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        text-align: center;
    }
    #hnconf .img{
        width: 100%;
        height: 40%;
    }
}
/* Section 4, Inscripcion
*********************************************************************************************************************

*/
#ins{
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.562), rgba(0, 0, 0, 0.3)), url(images/teambackground.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

#ins h2{
    font-size: 15vh;
    font-weight: 500;
    text-align: center;
    color: #e2dbc1;
}

#ins p{
    font-size: 3vh;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10%;
}
/*
#opciones{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.contactos{
    height: 90%;
    width: 20%;
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
}

.contactos h3{
    color: #fff;
    font-size: 5vh;
    font-weight: 500;
    text-align: center;
}

.contactos p{
    text-align: center;
    color: #fff;
}
*/

button {
    background-color: transparent;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7em 2em;
    border: 3px solid #817b6c;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
  }
  
  button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #817b6c;
    z-index: -1;
  }
  
  button:hover, button:focus {
    color: white;
  }
  
  button:hover:before, button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }
  
  button:active {
    transform: scale(0.9);
  }

  button a{
    text-decoration: none;
    color: white;
  }

  @media (max-width: 900px){
    #ins h2{
        font-size: 5vh;
        font-weight: 500;
    }
    #ins p{
        font-size: 1em;
    }
  }
/* Footer
*********************************************************************************************************************
*/
.footerslide{
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: end;
}
/*Master Dice */
.footerdiv{
    width: 100%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

/*Main text logo */
.footerdiv img{
    width: 500px;
}

/*Social media and slogan masterdiv*/
.footer{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/*Social media */
.socialmedia{
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#insta{
    width: 70%;
    padding: 1px;
    margin: 1px;
}
#facebook{
    width: 70%;
    padding: 1px;
    margin: 1px 5px;
}
#gmail{
    width: 70%;
    padding: 1px;
    margin: 1px 5px;
}

/*Slogan */
.footer p{
    width: 70%;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 900px){
    .footerdiv img{
        width: 60%;
    }
    .socialmedia{
        width: 100%;
        height: 30%;;
    }
}
.phoneversion{
    display: none;
}