:root{
    --color-secundario: #ad0000;
    --color-texto: rgb(255, 235, 205);
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
  }
  
a{
    text-decoration: none;
    color: var(--color-secundario);
}

body{
    background: #232323;
    color: var(--color-texto);
    /*font-family: 'Advent Pro', sans-serif;*/
    font-family: "Montserrat", serif;
    font-size: 1.2em;
    font-style: normal;
    font-optical-sizing: auto;

}
h2 {
 font-size: 2em !important;
}

/* scroll lateral*/

body::-webkit-scrollbar{
    width: 10px;
    background: rgba(39, 39, 39, 0.979);
}

body::-webkit-scrollbar-thumb{
    background: var(--color-secundario);
    border-radius: 4px;
}

/*btn scroll top*/ 

.btn-scrolltop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    padding: 15px 20px;
    background-color: var(--color-secundario);
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
    transform: translateX(200px);
    transition: 0.5s;
    z-index: 999;
  }
  
  .btn-scrolltop-on {
    transform: translateX(0);
  }
  


/*view port*/
header{
    padding-left: 14%;
    padding-right: 13.9%;
    background-color: #232323;
    position: fixed;
    width: 100%;
    z-index: 999;
    font-size: 1.2em;
    transition:all 0.2s;
    
}

header.header2{
    background-color: var(--color-secundario);
    font-size: 1em;
}

header.header2 .logo{
    width: 5em;
}



h2{
    font-weight: 800;
    font-style: italic;
    font-size:2.5em;
}

.logo{
    width: 6.5em;
    margin-left: 10px;
    transition: 0.5s;
}

.logo:hover{
    transform: scale(1.1);
}

.navbar-toggler{
    border: none;
}

.collapse{
    justify-content:end; 
}

.nav-link{
    
    margin-left: 100px;
    color: var(--color-texto);
    transition: 0.5s;
}

.nav-link:hover{
    color: var(--color-texto);
}

.navbar-nav a{
    position: relative;
}


.navbar-nav a::after{
    content: "";
    background: #ffd900;
    position: absolute;
    left: 0;
    top:80%;
    width: 100%;
    height: 2px;
    opacity: 0;
}

.navbar-nav a:hover::after{
    opacity: 0.8;
    transition: all 0.6s ease 0s;
}

#banner{
    background-image: url(/img/cuchillos-banner-2.png);
    background-repeat: no-repeat;
    background-size:cover;
    background-position:bottom;
    height: 90vh;
    justify-content: center;
    align-items:end;
}

#text img{
    min-width:100%;
    /*animacion*/
    opacity: 0;
    animation-name: aparicion;
    animation-duration: 2s;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

@keyframes aparicion {
    0%{
      opacity: 0;
      transform: scale(1.4) translateY(-1500px);
    }

    100%{
      opacity: 1;
      transform: scale(1) translateY(0);
    }
}


.about{
    justify-content: center;
}

.spoty .row{
    justify-content: center;
    align-items: center;
}

.spoty img{

    min-width: auto;
    border-radius: 7px;
    box-shadow: 5px 0px 60px 0px rgba(34, 23, 23, 0.137);
}

/*galeria de videos*/ 


.videos img {
    width: 100%;
    transition: 0.5s;
    margin-bottom: 15px;  
    border-radius: 7px;
}

.videos iframe{
    width: 100%;
    height: 350px;
}
.videos a{
    text-decoration: none;
}
.videos .col-md-3{
    
    margin: 0 !important;
}

.videos img:hover{
    transform: scale(0.9);
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.322);
}

/*ultimo estreno*/

.v-yt{
    max-width: 50%;
    
}

.estrenos {
    text-align: center;
}

.estrenos .col-md-12{
    height: 70vh;
}

.estrenos iframe{
    width: 100%;
    height: 100%;
}

/* galeria 2 */

.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    width: 95%;
    margin: auto;
    grid-gap: 10px;
    padding: 40px 0;
    overflow: hidden;
}

.galeria img{
    width: 100%;
    vertical-align: top;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.galeria > a{
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.329);
}

.galeria a:hover img{
    /*filter: blur(1.5px);*/
    transform: rotate(15deg) scale(1.5);

}

.light-box{
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    transition: transform .3s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    padding: 10px;
}

.light-box img{
    max-width: 90vh;
    max-height: 85vh;
}

.light-box:target{
    transform: scale(1);
}

.close{
    display: block;
    position: absolute;
    top: 40px;
    right: 40px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
}

@media screen and (max-width:400px){
    .galeria{
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .close{
        top: 20px;
        right: 20px;
    }

    .light-box img{
        max-width: 45vh;
        max-height: 100vh;
    }
    .galeria a:hover img{
        filter:none;
        transform:none;
    
    }
   
}

.next{
    display: block;
    background: #ff0000;
    color: #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
    margin: 10px;

}
/*carrusel y spoty*/

.carrusel h2{
    text-align: center;
    padding: 50px 0px;
   
}


.gal{
    border-radius: 7px;
    
}

#spoty-gal{
    text-align: center;
    padding-top: 25px;
    
}



/*integrantes*/ 

.banda{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.banda hr{
    display: inline-block;
    width: 60%;
    color: var(--color-texto);
}

.banda .col-lg-2{
    border:1px solid var(--color-secundario); 
    margin: 10px 30px;
}

.banda a,
footer a{
    display: inline-block;
    text-decoration: none;
    color:#ad0000;
    transition: all 0.5s;

}

.banda a:hover,
footer a:hover{
    color:#fa586a;
    transform: scale(0.95);
}

.banda i{
    transition: all 0.6s;
}

.banda i:hover{
   transform: scale(1.2);
}
/*redes links*/

.redes{
    justify-content:center;
    padding-bottom: 150px;
}

.redes a{
    font-size: 2em;
    color: #fff;
    margin: 0px 25px 0px 25px;
}

.redes i{
    font-size: 1.5em !important;
    transition: all ;
}

.redes .text-center{
    padding: 15px 50px 15px 50px;
}
.seguinos h3{
    margin-bottom: 50px;
}

/*hover redes*/ 

.bi-facebook:hover{
    color: #1877f2;
}

.bi-spotify:hover{
    color: #1ed760;
}

.bi-youtube:hover{
    color: #f00;
}

.bi-tiktok:hover{
    color: rgba(254, 44, 85, 1);
}

.bi-instagram:hover{
   color: #d6249f;
}

.bi-music-note-beamed:hover{
    color:#fa586a;
}

/*footer*/ 

footer{
    background-color: rgba(39, 39, 39, 0.979); 
    padding-top: 20px;
}

@media (max-width:991px) {

    header{
        padding-left: 0;
        padding-right: 0;
        background-color: rgba(0, 0, 0, 0);
    }

    .navbar-nav{
        background-color: rgba(39, 39, 39, 0.425);
    }

    .navbar-nav a::after{
        content: "";
        background: var(--color-secundario);
        position: absolute;
        left: 0;
        top:80%;
        width: 80px;
        height: 2px;
        opacity: 0;
    }

    #text img{
        min-width:100%;
        padding-top: 50vh;
    
        /*animacion*/
        opacity: 0;
        animation-name: aparicion;
        animation-duration: 2s;
        animation-delay: 0.4s;
        animation-fill-mode: forwards;
    }

    .nav-link{
        margin-left: 30px;
    }

    .logo{
        margin-left: 0px;
    }
}

@media (max-width: 768px){

    header{
        padding-left: 0;
        padding-right: 0;
        
    }

    #banner{
        background-size:cover;
        background-repeat: no-repeat;
        height: 50vh;
    }
    
    #text img{
        min-width:100%;
        padding-top: 25vh;
    
        /*animacion*/
        opacity: 0;
        animation-name: aparicion;
        animation-duration: 2s;
        animation-delay: 0.4s;
        animation-fill-mode: forwards;
    }
    
    .banda .col-lg-2{
        width: 90%;
    }

    .navbar-nav a::after{
        content: "";
        background: var(--color-secundario);
        position: absolute;
        left: 0;
        top:80%;
        width: 80px;
        height: 2px;
        opacity: 0;
    }

    .nav-link{
        margin-left: 30px;
    }

}

