@font-face {
    font-family: 'Lobster';
    src: url(/fonts/Lobster-Regular.ttf);
    font-display: swap;
}

@keyframes zoom {
    from {
        transform: scale(1);
    } to {
        transform: scale(1.05);
    }
}

/* --- HAMBURGER NAV MENU begin --- */

#top-text {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    font-family: "Lobster";
    color: goldenrod;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.5rem;
    z-index: 2;
    text-decoration: none;
    
}

.navbar-toggler-icon {
    background-image: url(/Images/hamburger-menu-icon.png);
    background-color: black;
    width: 35px;
    height: 35px;
    margin-left: 10px;
}

#navMenu {
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    padding: 0.5rem;
    font-weight: bold;
}

.navbar-collapse.show {
    background: rgba(255, 255, 255, 0.7) ;
    backdrop-filter: blur(10px);
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.7) ;
    backdrop-filter: blur(10px);
    padding: 0;
    margin: 0;
}

.dropdown-menu .dropdown-item {
    font-weight: bold;
    
}
/* --- HAMBURGER NAV MENU end --- */

/* --- MAIN begin ---*/

/* --- FIRST SECTION begin --- */

#first-section {
    width: 100%;
    background: linear-gradient(
        180deg,
        #086a34 0%,
        #0c8242 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#first-section p {
    color: white;
    font-size: 2rem;
    text-align: center;
    font-family: "Lobster";
}

/* --- SLIDESHOW begin --- */
#slideshow-wrapper {
    margin: 5rem 0 0 0;
    width: 90%;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;

}

#home-slideshow {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: zoom 5s ease-in-out infinite alternate;
}
/* --- SLIDESHOW end --- */

/* --- FIRST SECTION end --- */

/* --- SECOND SECTION begin -- */

#second-section {
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

#food-gallery {
    width: 100%;
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    margin: 25px 10px 0 10px;
}

.food-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.food-item img {
    width: 95%;
    max-width: fit-content;
    display: block;
    margin: 0;
}

.food-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.food-item h2 {
    font-family: "Lobster";
    color: black;
    font-size: 1.5rem;
}

.food-item p {
    color: black;
    font-size: 1.1rem;
}

/* --- SECOND SECTION end -- */

/* --- MAIN end --- */

/* --- FOOTER begin ---*/
footer {
    height: auto;
    background-image: url(/Images/black-background.jpg);
    text-align: center;
    padding: 40px 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;

}

footer h2{
    color: goldenrod;
    text-align: center;
    font-weight: 600;
    font-size: 18px
}

footer p {
    color: white;
    padding: 0 10px 0 10px;
    padding-top: 10px;
}

.foot-section{
    display: flex;
    flex-direction: column;
    min-width: 200px;
    text-align: center;

}

#operation-div {
    align-self: center;
    display: flex;
    flex-direction: row;
    gap: 4rem;
}


/* --- FOOTER end --- */

/* MODAL MENU CSS begin */

.menu-modal {
    background: transparent;
    border: none;
    box-shadow: none;
}

.modal img  {
    width: 100%;
}


/* MODAL MENU CSS end */


@media (min-width: 992px) {

    /*--- NAV begin ---*/
    nav a:hover {
        text-decoration: underline;
    }

    #navMenu {

    }
    
    #navMenu.navbar-collapse {
        width: 100%;
        position: absolute;
        left: 50%;
        transform:translateX(-50%);
        padding-bottom: 1rem;
        height: 4.5rem;
        background: rgba(0, 0, 0, 0.7) ;
        backdrop-filter: blur(10px);

    }

    #navMenu .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #navMenu .nav-link { 
        color: white;
        font-size: 1.3rem;
        margin: 0 2rem 0 2rem;
    }

    #top-text {
        font-size: 2rem;
        position: relative;
        height: 4.5rem;
    }

    /*--- NAV end ---*/

    /* FIRST SECTION begin */

    /* --- SLIDESHOW begin ---*/
    #slideshow-wrapper {
        margin: 5rem 0 0 0;
        width: 100%;
        height: 35rem;
        overflow: hidden;
        aspect-ratio: auto;
        box-shadow: rgb(0, 0, 0) 0px 20px 30px -10px;

    }

    #home-slideshow {
        height: 100%;

    }
    /*--- SLIDESHOW end --- */


    /*--- FIRST SECTION end ---*/

    /* SECOND SECTION begin */
    #food-gallery {
        margin-left: 2.5rem;
        gap: 15px;
    }

    .food-item {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }

    .food-item img {
        width: 100%;
        max-width: 250px;
        display: block;
        margin-bottom: 10px;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }

    .food-text {
        align-items: flex-start;
    }

    .food-item h2 {
        font-family: "Lobster";
        color: black;
        font-size: 2.5rem;
    }

    .food-item p {
        color: black;
        font-size: 1.5rem;
    }


    /*--- SECOND SECTION end ---*/


    /*--- FOOTER begin --- */

    footer {
        flex-direction: row;
        gap: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    #foot-sections {
        flex-direction: row;
        gap: 20rem;
        justify-content: center;
        align-items: center;


    }

    .foot-section { 
        display: flex;
        justify-content: center;
        align-items: center;
    }


    /*--- FOOTER end ---*/


}
