:root{
    /* colores */
    --clr-negro: #000000;
    --clr-blanco: white;
    --clr-dorado: #f4d229;
    --clr-amarillo-claro: #e6d690;
    --clr-azul: #7892c2;
    /* fuentes */
    --ff-title: 'Roboto', sans-serif;
    --ff-title-weight: 500;
    --ff-paragraph: 'Poppins', sans-serif;
    --ff-paragraph-weight: 300;
    --ff-paragraph-size: 1.3125rem;
}



body{
    
    font-family: var(--ff-paragraph);
    font-weight: var(--ff-paragraph-weight);
    font-size: var(--ff-paragraph-size);
    line-height: 1.6;
       
}


#redes ul{
    list-style: none;
    
}

#redes li{
    display: inline-block;
        
}

/* display background color black on navbar scroll */
.navbarScroll.navbarDark {
    background-color: black;
    width: 100%;
    
}


/*para aplicar un estilo a una clase anidada toca partir desde la clase nodriza */
.navbar .header-name .navbar-brand{
    color: #f4d229 
}


#navbar{
    width: 100%;
    height: 3rem; 
    position: fixed;
    z-index: 1;
}

.header-icons{
    margin: 0 auto;
}

p {
    color:var(--clr-blanco);
    padding-left: 2vh;
}
.container{
    
    background-color: var(--clr-negro);
    justify-content: center;
    align-items: center; 
    width: 100%;
    padding-top:  calc(3rem + 0.2vh); /* esto posiciona el container siempre debajo del navbar que tiene
                                        3rem de alto y se le suma siempre 0.2vh*/
    
}

#title{
    color: var(--clr-dorado);
    text-align: center;
    
}

.row {
    padding-top: 7%; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;  /*solo funciona si display: flex esta incluido, el wrap distribuye los elementos en la fila 
                        o columna uno encima del otro*/
    

}

.col {
    display: flex;
    flex-basis: 30%;
    min-width: 30%;
    flex-wrap: wrap;
}

.feature-img { 
    width: 90%;   /*porcentage dentro de su columna*/
    margin-left: 4%;
    position: relative;
    border-radius: 20px; /*redondea las esquinas*/
    
    overflow: hidden;
}

.small-img-row {
    display: flex;
    background: var(--clr-negro);
    margin: 1vh;
    flex-wrap: wrap;
    align-items: center;
    width: 90%;
    position: relative;
    overflow: hidden;
}

.small-img {

    position: relative;
}

.small-img img{
    border-radius: 20px;
    width: 30vh;
}

.play-btn {
    width: 10vh;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /*aparece en la mitad*/
    cursor: pointer; /*aparece manito*/
}


.small-img .play-btn{
    width: 7vh;
}

.video-player{
    width: 95%;
    position: fixed; /*fixed para que el video se reproduzca siempre en la mitad de la pantalla */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /*aparece en la mitad*/
    display: none; /*para que no muestre los videos de una vez sino hasta que se ejecute una funcion*/
    z-index: 1; /* Set the z-index of the video container 1 queda encima de la sombra */
}

video:focus {
    outline:none;
}
/*la sombra cuando se ejecuta el video-player (container)*/
.video-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the last value (0.7) to control the darkness level */
    display: none; /* Start with the shadow hidden */
    pointer-events: none; /* Allow interaction with elements below the shadow */
    z-index: 0; /* Set a z-index greater than the video container */
  }



.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    cursor: pointer;
}

.text_portfolio {
    width: 97%;
}

