/* ==========================
   Vani Photos Gallery Section
   ========================== */

.standard-container{
    width: 90%;
    margin: 3rem auto 0 auto;
}


/*Main Title*/

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: maroon;
}

.categories{
    margin: 0 0 1rem 0;
}

/*Gallery container*/

.gallery-container{
    display: grid;
    width: 90%;
    padding: 0;
    margin: 0 auto;
    grid-template-columns: 1fr;
    column-gap: 10px;
    justify-content: center;
}

.gallery-item{
    list-style-type: none;
    justify-self: center;
    text-align: center;
    width: 100%;
}

.gallery-item p.photo-description,
.gallery-item p.video-description{ 
    font-style: italic;
    text-align: center;
}

.empty-gallery{
    display: grid;
    grid-column: 1 / -1;
    text-align: center;
    font-style: italic;
}

/*Images*/

.gallery-item img{
    max-width: 100%;
    width: 100%;
    height: 250px;
    border-radius: 5px;
}

.gallery-item img:hover{
    opacity: 60%;
    cursor: pointer;
}


/*Video iFrames*/
 
.video-container{
    aspect-ratio: 16 / 9;
    width: 100%;    
    }

.video-container iframe{
    width: 100%;
    height: 100%;
    border: 0;
}


/* ==========================
   Tablet & Up
   ========================== */

/* Tablet */
@media (min-width: 768px) {
    .gallery-container{
        grid-template-columns: 1fr 1fr;
    }
}


/* Laptop */
@media (min-width: 1024px) {
    .gallery-container{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Desktop */
@media (min-width: 1540px) {
    .gallery-container{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
   
}