.hero {
    min-height: 300px;
    height: 762px;
}
.hero > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.resto-title {
    background-color: var(--MainBlue);
    padding: 40px;
}
.resto_information {
    background-color: var(--white);
    padding: 10px;
}
.resto-title > * {
    text-align: center;
    text-transform: uppercase;
    color: var(--gold);
}
.resto-description {
    text-align: center;
    padding: 50px 200px;
    color: var(--colorfonts);
}
.resto-details h3 {
    margin: 20px;
    text-align: center;
    color: var(--gold);
}
.restaurant-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.restaurant-details > * {
    margin: 20px;
    text-align: center;

    width: 300px;
}
.location h4,
.restaurant-contact h4,
.restaurant-operating-hrs h4 {
    color: var(--gold);
}
.location p,
.restaurant-contact p,
.restaurant-operating-hrs p {
    color: var(--colorfonts);
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 90px 20px;
}

.gallery-item {
    flex: 1 0 200px;
    height: 300px; /* Adjust the height as needed */
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

#lightbox-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
}
