.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.instagram-gallery a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}

.instagram-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-gallery a:hover img {
    transform: scale(1.05);
}

.follow-us-link {
    transition: transform 0.3s ease;
}

.follow-us-link:hover {
    transform: scale(1.05);
}

/* Tablet screens */
@media (max-width: 1024px) {
    .instagram-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Small mobile screens */
@media (max-width: 600px) {
    .instagram-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}


.awards {
    width: 100%;
}

.awards img {
    width: 30%;
    height: auto;
    border-radius: 8px; 
}

.carousel-title {
    text-transform: uppercase;
}

.gallery {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2vw;
    padding: 10vh 2vw;
    flex-wrap: wrap; /* Wraps on smaller screens */
}

.photo {
    width: 15vw;
    height: 40vh;
    object-fit: cover;
    border-radius: 20px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.photo-md {
    width: 20vw;
    height: 50vh;
}

/* Direction flags */
.up { --dir: -1; }
.down { --dir: 1; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .photo {
        width: 80vw;
        height: auto;
    }
}

.book-btn {
    background-color: #DAB36B;
    border: 1px white solid;
    font-weight: bold;
}

.book-btn:hover {
    background-color: white;
    border: 1px #DAB36B solid;
    font-weight: bold;
}

@media screen and (max-width: 991px){
    .book-btn {
        padding: 10px!important;
    }
}
