/* Slideshow's shadow */ 

/* Shadow on top of the slideshow */
.gallery-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}
  
/* Removes the shadow */
.gallery-container.remove-shadow .gallery-shadow {
    opacity: 0;
}

/* Cuisine label */

.cuisine-label {
    position: absolute;
    bottom: 55%;
    left: 6.5%;
    z-index: 5;
    display: flex;
    align-items: center;
}

.cuisine-bar {
    width: 0.65rem;
    height: 2rem;
    margin-right: 0.75rem;
    background-color: #fff;
}

.cuisine-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.7);
}

/* Gallery text */
.gallery-text {
    position: absolute;
    top: 55%;
    left: 5%;
    transform: translateY(-40%);
    z-index: 3;
    text-align: left;
    margin: 0;
    padding: 1vw;
    max-width: 90%;
}
  
.gallery-text h2 {
    font-size: 3.75vw; /* 3.75rem */
    color: white;
    z-index: 9999;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Gallery */

.gallery-container {
    width: 100%;
    height: 100vh;     
    overflow: hidden;
    position: relative;
    margin-top: 4vw;
}

.gallery-container img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100vw; 
    height: 100vh; 
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out; 
}

#slideshow1 {
    opacity: 1; 
    z-index: 1; 
}

#slideshow2 {
    opacity: 0; 
    z-index: 0;
}
