@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,400;1,100;1,600&display=swap');

/*Reseteo estilos css*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

/*Generales*/

html {
    font-size: 20px;
}


@media (max-width: 440px) {
    html {
        font-size: 18px;
    }
}

body {
    font-family: "Avenir", sans-serif;
    color: #67666e;
    background-color:#000;
    /* background-image: url(../img/music-background1.jpg); */
    font-size: 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    
    
}



hr{
    margin-bottom: 1rem;
}

h2{
    margin-bottom: 0.5rem;
    font-size: 50px;
    color: #fff;
   
}

h5{
    
    font-size: 22px;
    margin-top: 1rem;
    color: #fff;
    font-weight:500;
    background-color: rgba(0, 0, 0, 0.75);
}



img {
    max-width: 100%;
}

iframe{
    width: 100%;
    height: 50%;
}


h5:hover{
    transform: scale(1.5);
    transition: all .5s ease-in-out;
    color: gold;
}

/*Hero*/

.hero {
    width: 100%;
    height: 100vh;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

p{
    margin-bottom: 0.8rem;
    text-shadow: 2px 3px 7px white, 
    0 10px 1px #000;
}

/*Animacion*/

@keyframes heroAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }

    12% {
        opacity: 1;
    }

    25% {
        transform: scale(1.2);
    }

    75% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}


.hero div {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: none;
    opacity: 0;
    animation: heroAnimation 18s infinite;
}

.hero div:nth-child(1) {
    background-image: url('../img/001.jpg');
}

.hero div:nth-child(2) {
    background-image: url('../img/002.jpg');
    animation-delay: 6s;
}

.hero div:nth-child(3) {
    background-image: url('../img/003.jpg');
    animation-delay: 12s;
}

@media (max-width:720px){

    .hero div:nth-child(1) {
        background-image: url('../img/001.jpg');
        background-position: center;
    }
    
    .hero div:nth-child(2) {
        background-image: url('../img/002.jpg');
        animation-delay: 6s;
    }
    
    .hero div:nth-child(3) {
        background-image: url('../img/003.jpg');
        animation-delay: 12s;
    }

}

.hero .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
    opacity: 1;
    width: 30%;
    height: auto;
    
   
}

.hero .hero-logo img{
    animation: rotate  infinite 10s ease-in-out;
}

@keyframes rotate{
    0%{-webkit-transform: rotateY(-360deg);};
    100%{-webkit-transform:rotateY(0deg) ;}
}



.hero .hero-down {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: none;
    opacity: 1;
    width: 5%;
    height: auto;
}


@media (max-width: 720px) {
    .hero .hero-logo {
        width: 40%;
    }

    .hero .hero-down {
        width: 15%;
    }
}

@media (max-width: 440px) {
    .hero .hero-logo {
        width: 50%;
    }

    .hero .hero-down {
        width: 20%;
    }
}

/* Header */

header {
    background-color: white;
    box-shadow: 1.5px 1.5px 4px #b3b3b3;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1em;
    transition: all 600ms ease-in-out;
}

header.transparent {
    background-color: transparent;
    box-shadow: none;
}

header img {
    height: 50px;
    width: auto;
    
}

header nav a {
    color: #67666e;
    font-weight: normal;
    margin-left: 1em;
    transition: all 300ms ease-in-out;
}

header.transparent nav a {
    color: rgba(255, 255, 255, 0.9);

}

header nav a.active,
header nav a:hover {
    color: #a97c50;
    
}

header.transparent nav a.active,
header nav a:hover {
    color: #d3914f;
    transition: 1s ease;

}

/* // glow effect */
.glow {
    font-size: 80px;
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
  }

  @media (max-width:440px){
 
    .glow{
        font-size: 40px;
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
        color: #f09e07;
    }
    
  }
  
  @-webkit-keyframes glow {
    from {
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fade40, 0 0 30px #f09e07, 0 0 40px #f7e75c;
    }
    to {
      text-shadow: 0 0 20px #fff, 0 0 30px #f09e07, 0 0 40px #fade40, 0 0 50px #f09e07, 0 0 60px #fade40;
    }
  }
/*Boton Burger*/

#burger {
    position: fixed;
    top: 1rem;
    left: 1rem;
    cursor: pointer;
    z-index: 2001;
    display: none;
}

#burger .barra {
    width: 30px;
    height: 2px;
    margin: 6px;
    background-color: #a97c50;
    transition: 400ms all ease-in-out;

}

#burger.abierto .barra {
    background-color: #a97c50;
}

#burger.abierto .barra.superior {
    transform: translateY(8px) rotateZ(45deg);
}

#burger.abierto .barra.media {
    width: 0;
}

#burger.abierto .barra.inferior {
    transform: translateY(-8px) rotateZ(-45deg);
}

@media (max-width: 620px) {
    #burger {
        display: block;
    }

    header {
        justify-content: flex-end;
    }
    
    header img{
        margin-right: 2rem;
    }

    header nav {
        display: none;
    }
}

/*Menú Lateral*/

.menu {
    width: 360px;
    height: 100vh;
    background-color: #000;
    position: fixed;
    top: 0;
    left: -360px;
    padding-top: 40px;
    transition: all 700ms ease-in-out;
}

.menu.abierto {
    left: 0;
    z-index: 2000;
    

}

.menu nav {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.menu nav img{
    width: 50%;
    height: auto;
}

.menu nav a {
    padding: 0.6rem 0;
    color: #a97c50;
    transition: all 300ms ease-in-out;
    font-size: 0.8rem;

}

.menu nav a:hover {
    color: white;
}

.menu .copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0.5rem;
    text-align: center;
    width: 100%;
}


.menu .menu-logo{
    width: 100px;
    height: 100px;

}

@media (max-width: 720px){
   .menu .menu-logo img{
        width:40px;
        height: 40px;
    }
}
@media (max-width: 440px){
   .menu .menu-logo img{
        width: 25px;
        height: 25px;
    }
}


/* Layout */

.first {
    margin-top: 100vh;

}
.second {
    margin-top: 20vh;
    text-align: center;
    background-image: url(../img/fondo-05.jpg);
    

}



#fr,
#legal,
#cookies {
    display: block;
    margin-top: -90px;
    padding-bottom: 90px;
}

.fila {
    display: flex;
    padding: 2rem 1rem;
}

.fila.contact {
    margin-top: 80px;
}

.col-100{
    width: 100%;
    padding: 0.5rem 1rem;
}

.col-75{
    width: 75%;
    padding: 0.5rem 1rem;
}


.col-66 {
    width: 66.66666%;
    padding: 0.5rem 1rem;
}

.col-50{
    width: 50%;
    padding: 0.5rem 1rem;
}

.col-33 {
    width: 33.33333%;
    padding: 0.5rem 1rem;
}

.col-25{
    width: 25%;
    padding: 0.5rem 1rem;
}

@media (max-width:720px) {
    .fila {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .col-100 h2{
        font-size: 1.8rem !important;
        margin-left: -1rem;
        
    }
    .col-75,
    .col-66,
    .col-50,
    .col-33,
    .col-25 {
        width: 100%;
    }

}

.flex-start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-around{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-column-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Espaciados y Margenes */

.m-t{
    margin-top: 1rem;
}

.m-b{
    margin-bottom: 1rem;
}

.m-l{
    margin-left: 1rem;
}

.m-r{
    margin-right: 1rem;
}

.m-t-small{
    margin-top: 0.5rem;
}
.m-b-small{
    margin-bottom: 0.5rem;
}
.m-l-small{
    margin-left: 0.5rem;
}
.m-r-small{
    margin-right: 0.5rem;
}

/* Parallax */

.fila.parallax{
    background-image: url('../img/Microfono.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 3rem 2rem;
}





.fila.parallax1{
    background-image: url('../img/music-background1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 3rem 2rem;
    opacity: 1;
}

/* @media (max-width: 440px){
    .fila.parallax1{
        display:  flex;
        
        width: 100%;
        padding: 0;
        
} */

.fila.parallax div{
   
    padding: 2rem;

}

.fila.parallax div p{
    font-size: 1.5rem;
    color: #a97c50;
    text-align: center;
}


/*Caja navegacion*/

.box-nav img{
    width: 20%;
    margin-bottom: 1em;
}

.box-nav a{
    border:1px solid #a97c50;
    background-color: white;
    color: #a97c50;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5em;
    border-radius: 0.3em;
    cursor: pointer;
    transition: all ease-out 400ms;
}

.box-nav a:hover{
    background-color: #a97c50;
    color: white;
    transform: scale(1.6);
}

/*Formulario contacto*/

form.contact{
    width: 50%;
}

@media (max-width:720px){
    form.contact{
        width: 75%;
    }
    .fila.parallax h2{
        font-size: 2.2rem;
    }
    
}
@media (max-width:440px){
    form.contact{
        width: 100%;
    } 
}

form.contact .fila{
    padding: 0.8rem;
}

input{
    border: none;
    border-bottom: 1.5px solid #a97c50;
    font-size: 1rem;
    padding: 0.5em 1em;
    width: 100%;
}

input:focus{
    outline: none;
    border-bottom: 1.5px solid #643e18;

}

input.user{
    background-image: url('../img/user.svg');
    background-repeat: no-repeat;
    background-position: 0 7px;
    padding-left: 2em;
}

input.email{
    background-image: url('../img/mail-bronce.svg');
    background-repeat: no-repeat;
    background-position: 0 7px;
    padding-left: 2em;
}

button{
    border: none;
    background-color: #a97c50;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5em 1em;
    border-radius: 0.3em;
    cursor: pointer;
    transition: all ease-out 400ms;
}

button:hover{
    background-color: transparent;
    
}

input[type="checkbox"]{

    display: none;
}

input[type="checkbox"] + label::before {
    content: url('../img/square.svg');
    position: relative;
    top: 5px;
    padding-right: 5px;
}

input[type="checkbox"]:checked + label::before {
    content: url('../img/check-square.svg');
}

/*Footer*/


footer{
    background-color: #000;
    border: 1px solid #a97c50;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

footer p{
    color:rgba(255, 255, 255, 0.8) ;
    font-size: 0.7rem;
    text-shadow: none;
}

footer p:first-child{
    color: #a97c50;
    font-weight:bold ;
}

footer img.rrss{
    height: 48px;
    cursor: pointer;
}

footer a{
    font-size: 0.8rem;
    color: #a97c50;
    transition: all 400ms ease-in-out;
}

footer a:hover{
    color: #643e18;
}

footer .copyright{
    color:rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-align: center;
}

.footer-logo{
    width: 150px;
    height: 150px;
    
}

.premios{
    margin-top: 2rem;
    width: 40%;
    height: 40%;
}


/*Card*/

.fila.grid{
    margin-top:100px ;
    display: grid;
    grid-template-columns: repeat(auto-fit, 360px);
    gap: 1.5rem;
    justify-content: center;
}

.grid-container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
    padding: 20px;
    grid-auto-flow: dense;
}

.grid-item{
    display: flex;
    align-items: center;
    justify-content: center;
    
    
    transition: transform 0.3s ease-in-out;
    
    overflow:hidden;
    

}

.grid-item img{
    border: 1px solid #a97c50;
    border-radius: 4px;
}

.wide{
    grid-column: span 2;
}
.tall{
    grid-row: span 2;
}

.grid-item:hover{
    filter: opacity(0.9);
    transform: scale(1.04);
    box-shadow:
      0px 0px 10px rgb(250, 250, 250),
      0px 0px 5px rgb(255, 255, 255),
      0px 0px 20px rgb(240, 208, 67),
      0px 0px 30px rgb(241, 221, 40), 
      0px 0px 50px rgb(247, 234, 57), 
      0px 0px 90px rgb(247, 234, 57)

}

.card{
    width: 360px;
    border-radius: 0.5rem;
    box-shadow: 2px 2px 4px grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    
}

.card img{
    height: 320px;
}



.card .footer-card{
    padding: 0.8rem;
    width: 100%;
    height: 174px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.card .footer-card p{
    margin-bottom: 0.5rem;
    
}
.card .footer-card p:first-child{
    font-weight: bold;
    
}

.card .footer-card a{
    background-color: #a97c50;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 0.3em;
    padding: 0.5em 1em;
    align-self: center;
    transition: all 400ms ease-in-out;
}

.card .footer-card a:hover{
    background-color: #81501e;
}


/*Ficha propiedades*/

.propiedad{
    margin-top: 80px;
    background-image: url('../img/property5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.propiedad div:first-child {
    background-color: rgba(255, 255, 255, 0.9);
}
.propiedad div:first-child h1 {
    font-size: 1.4rem;
    color: #a97c50;
}

.propiedad div:first-child p img {
    width: 28px ;
    height: 28px;
}

/*Carousel*/

.overlay{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.808);
    z-index: 99;
    display: none;
}

.carousel{
    position: fixed;
    top: 5vh;
    left: 5%;
    width: 90%;
    background-color: white;
    z-index: 100;
    overflow: hidden;
    display:none;
}

.carousel .x-modal{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.carousel .slide{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 900ms ease-in-out;

}

.carousel .slide img{
    width: 100%;

}

.right-arrow{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.603);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-arrow{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.603);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}

@media (max-width:720){
    .left-arrow{
        width: 25px;
        height: 25px;
    }
    .right-arrow{
        width: 25px;
        height: 25px;
    }
}
@media (max-width:440){
    .left-arrow{
        width: 20px;
        height: 20px;
    }
    .right-arrow{
        width: 20px;
        height: 20px;
    }
}

/* Interpretaciones estilo 1 */

.container{
    background-color:#000;
}
.container .heading{
   
    font-size: 2rem;
    padding: 2rem 0;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    

}

.container .music-container{
    display: flex;
    align-items: center;
    flex-flow: column;
    color: #fff;
    background-image: url('../img/music-background1.jpg');
    

}

.container .music-container .box{
    height: 8rem;
    width: 80%;
    display: flex;
    align-items: center;
    background:#f9f9f9;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem  #000;
    overflow: hidden;
    margin: 2rem;
}

.container .music-container .box .image{
    height: 100%;
    width: 25%;
    object-fit:contain;
    
}

.container .music-container .box .image img{
    height: 100%;
    width: 100%;
}

.container .music-container .box .music{
    width: 75%;
}

.container .music-container .box .music audio{
    width: 100%;
    outline: none;
}
.container .music-container .box .music audio::-webkit-media-controls-enclosure{
    background: none;
   
}

@media (max-width:600px){
    .container .music-container .box{
        height: 16rem;
        width: 40%;
        flex-flow: column;
        overflow: hidden;
    }
    .container .music-container .box .image{
        height: 80%;
        width: 100%;
        
    }
    .container .music-container .box .music{
        height: 20%;
        width: 100%;
    }
}
@media (max-width:440px){
    .container .music-container .box{
        height: 15rem;
        width: 40%;
        flex-flow: column;
        overflow: hidden;
    }
    .container .music-container .box .image{
        height: 4rem;
        width: auto;
        display: none;
    }
    .container .music-container .box .music{
        height: 100%;
        width: 100%;
    }
}

/* Interpretaciones estilo 2 */
.container-music{
    min-height: 100vh;
	display: grid;
	place-items: center;
	background: rgba(0,0,0,0.5);
}

.main{
	position: relative;
	min-height: 80vh;
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../img/pexels-suvan-chowdhury-144429.jpg');
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 8px;
	box-shadow: inset 5px 5px 5px rgba(0,0,0,0.2),
	 inset -5px -5px 15px rgba(255,255,255,0.1),
	 5px 5px 15px rgba(0,0,0,0.3),
	 -5px -5px 15px rgba(255,255,255,0.1);
}
.main button{
	padding: 10px 12px;
	margin: 0 10px;
}
.main #logo{
	position: absolute;
	top: 10px;
	left: 30px;
	font-size: 25px;
    font-weight:500 ;
	color: #ccc;
}
.main #logo i{
	margin-right: 15px;
}

/* Club Amigos */

.club-amigos-logo{
    width: 250px;
    height: 250px;
    box-shadow: inset 5px 5px 5px rgba(0,0,0,0.2),
	 inset -5px -5px 15px rgba(255,255,255,0.1),
	 5px 5px 15px rgba(0,0,0,0.3),
	 -5px -5px 15px rgba(255,255,255,0.1);
     transition: all .5s ease-in-out;
     
}



.club-amigos-logo:hover{
    filter: opacity(0.8);
    transform: scale(1.05);
    box-shadow:
      0px 0px 10px rgb(250, 250, 250),
      0px 0px 5px rgb(255, 255, 255),
      0px 0px 20px rgb(240, 208, 67),
      0px 0px 30px rgb(241, 221, 40), 
      0px 0px 50px rgb(247, 234, 57), 
      0px 0px 90px rgb(247, 234, 57)
      
}
.videoamigos{
    height: 600px;
}

.logoCanto{
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;
    
}

@media(max-width:440px){
    .logoCanto img{
        width: 200px;
        height: 200px;
    }
}