@font-face {
    font-family: 'Roboto';
    src: url('webfonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Range from Thin to Black */
    font-style: normal;
  }
  
@font-face {
font-family: 'Roboto';
src: url('webfonts/Roboto-Italic-VariableFont_wdth\,wght.ttf') format('truetype');
font-weight: 100 900;
font-style: italic;
}

@font-face {
    font-family: 'Nunito';
    src: url('webfonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('webfonts/Roboto-Italic-VariableFont_wdth\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

:root
{
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow:0 .5rem 1.5rem rgba(0, 0, .1);
}

*
{
    font-family: 'Nunito', sans-serif;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html
{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

body
{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; 
    background-image: url('/project_restaurant/images/restaurant-interior.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Comprehensive Dark Theme Styles */
body.dark-theme {
    --green: #1abc9c;
    --black: #ecf0f1;
    --light-color: #bdc3c7;
    --box-shadow: 0 .5rem 1.5rem rgba(255, 255, 255, 0.1);
    background-color: #2c3e50;
    color: #ecf0f1;
}

/* Header */
body.dark-theme header {
    background-color: #34495e;
    box-shadow: var(--box-shadow);
}

body.dark-theme header .logo {
    color: var(--green);
}

body.dark-theme header .navbar a {
    color: var(--light-color);
}

body.dark-theme header .navbar a:hover {
    background-color: var(--green);
    color: #fff;
}

body.dark-theme header .icons i {
    color: grey; /* Bright white for better visibility */
}

body.dark-theme header .icons i:hover {
    background-color: var(--green);
    color: #000000; /* Black for hover contrast */
}

/* Buttons */
body.dark-theme .btn {
    background-color: var(--green);
    color: var(--black);
}

body.dark-theme .btn:hover {
    background-color: #16a085;
    color: #fff;
}

/* Sections */
body.dark-theme section {
    background-color: #34495e;
    color: var(--light-color);
}

body.dark-theme section:nth-child(even) {
    background-color: #3b4a5a;
}

/* Subheadings and Headings */
body.dark-theme .sub-heading {
    color: var(--green);
}

body.dark-theme .heading {
    color: var(--black);
}

/* Dishes Section */
body.dark-theme .dishes .box-container .box {
    background-color: #3b4a5a;
    border: .1rem solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
}

body.dark-theme .dishes .box-container .box h3 {
    color: var(--black);
}

body.dark-theme .dishes .box-container .box span {
    color: var(--green);
}

body.dark-theme .dishes .box-container .box .stars i {
    color: var(--green);
}

body.dark-theme .dishes .box-container .box .fa-heart,
body.dark-theme .dishes .box-container .box .fa-eye {
    color: grey;
}

/* About Section */
body.dark-theme .about .row .content h1 {
    color: var(--black);
}

body.dark-theme .about .row .content p {
    color: var(--light-color);
}

body.dark-theme .about .row .content .icons-container .icons {
    background-color: #3b4a5a;
    border: .1rem solid rgba(255, 255, 255, 0.2);
}

body.dark-theme .about .row .content .icons-container .icons i {
    color: var(--green);
}

/* Menu Section */
body.dark-theme .menu .box-container .box {
    background-color: #3b4a5a;
    border: .1rem solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
}

body.dark-theme .menu .box-container .box .content h3 {
    color: var(--black);
}

body.dark-theme .menu .box-container .box .content p {
    color: var(--light-color);
}

body.dark-theme .menu .box-container .box .content .price {
    color: var(--green);
}

body.dark-theme .menu .box-container .box .image .fa-heart {
    color: grey;
}

/* Review Section */
body.dark-theme .review .slide {
    background-color: #3b4a5a;
    border: .1rem solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
}

body.dark-theme .review .slide .user h3 {
    color: var(--black);
}

body.dark-theme .review .slide p {
    color: var(--light-color);
}

/* Order Section */
body.dark-theme .order form {
    background-color: #3b4a5a;
    border: .1rem solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--box-shadow);
}

body.dark-theme .order form .inputBox .input span {
    color: var(--green);
}

body.dark-theme .order form .inputBox .input input,
body.dark-theme .order form .inputBox .input textarea {
    background-color: #2c3e50;
    color: var(--light-color);
    border: .1rem solid rgba(255, 255, 255, 0.2);
}

body.dark-theme .order form .inputBox .input input:focus,
body.dark-theme .order form .inputBox .input textarea:focus {
    background-color: #34495e;
    border-color: var(--green);
}

/* Footer Section */
body.dark-theme section.footer {
    background-color: #34495e;
    color: var(--light-color);
}

body.dark-theme .footer .box-container .box h3 {
    color: var(--black);
}

body.dark-theme .footer .box-container .box a {
    color: var(--light-color);
}

body.dark-theme .footer .box-container .box a:hover {
    color: var(--green);
}

body.dark-theme .footer .credit {
    color: var(--black);
}

body.dark-theme .footer .credit span {
    color: var(--green);
}

/* Social Media Icons in Footer */
body.dark-theme #social-icons i {
    color: grey;
}

/* Loader */
body.dark-theme .loader-container {
    background-color: #34495e;
}

header
{
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    background-color: aliceblue;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

header .logo
{
    color: rgb(134, 199, 20);
    font-size: 2.5rem;
    font-family: cursive;
}

header .logo i
{
    color: var(--green);
}

/* Fix hover effect for icons only */
header .icons i {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

header .icons i:hover {
    background-color: var(--green);
    color: #fff;
    transform: rotate(360deg); /* Rotate only icons */
}

header .icons #menu-bars
{
    display: none;
}

section 
{
    padding: 9rem 9%;
}


.home .home-slider .home-slider
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
}

.home .home-slider .slide 
{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 5rem;
    flex-wrap: nowrap; 
    text-align: left; 
}

.home .home-slider .slide .content
{
    flex: 1 1 50%; /* Take 50% of the width */
    text-align: left;
}

.home .home-slider .slide .image
{
    flex: 1 1 50%; /* Take 50% of the width */
    max-width: 100%;
    text-align: right; /* Align image to the right */
}

.home .home-slider .slide .image img
{
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
}

.home .home-slider .slide .content span
{
    font-size: 2rem;
    color: var(--green);
}

.home .home-slider .slide .content h3
{
    font-size: 4rem;
    color: var(--black);
}

.home .home-slider .slide .content p
{
    font-size: 1.6rem;
    color: var(--light-color);
    padding: 2rem 0;
    line-height: 1.5;
    text-align: justify;
}


.btn
{
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    cursor: pointer;
    color: #fff;
    background-color: var(--black);
    border-radius: .5rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover
{
    background-color: var(--green);
    color: #fff;
    letter-spacing: .1rem;
    transform: translateY(-.2rem);
}


section:nth-child(even)
{
    background-color: #f4f4f4;
}

.sub-heading
{
    font-size: 2rem;
    color: var(--green);
    text-align: center;
    padding-top: 1rem;
}

.heading
{
    font-size: 3rem;
    color: var(--black);
    text-align: center;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

.dishes .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-area: 1.5rem;
}

.dishes .box-container .box
{
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    text-align: center;
    border: .1rem solid rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin: 1.5rem 1.5rem;
}

.dishes .box-container .box .fa-heart,
.dishes .box-container .box .fa-eye
{
    position: absolute;
    top: 1.5rem; 
    right: 1rem;
    background: #eee;
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: var(--black);
}

.dishes .box-container .box .fa-heart:hover,
.dishes .box-container .box .fa-eye:hover
{
    background-color: var(--green);
    color: #fff;
}

.dishes .box-container .box .fa-heart
{
    right: -15rem;
}

.dishes .box-container .box .fa-eye
{
    left: -15rem;
}

.dishes .box-container .box:hover .fa-heart
{
    right: 1.5rem;
}

.dishes .box-container .box:hover .fa-eye
{
    left: 1.5rem;
}

.dishes .box-container .box img
{
    width: 100%;
    height: 17rem;
    object-fit: cover;
    border-radius: .5rem;
    margin: 1rem 0;
}

.dishes .box-container .box h3
{
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.dishes .box-container .box .stars
{
    padding: 1rem 0;
}

.dishes .box-container .box .stars i
{
    color: var(--green);
    font-size: 1.7rem;
}

.dishes .box-container .box span
{
    color: var(--green);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.5rem;
}


/* General styling for all icons */
.icon 
{
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background-color: #fff;
    display: inline-flex; /* Ensures proper alignment for <a> tags */
    align-items: center;
    text-align: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect for all icons */
.icon:hover {
    background-color: var(--green);
    color: #fff;
    transform: rotate(360deg); /* Rotate all icons */
}

/* Navbar links styling */
header .navbar a {
    display: block;
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: 1rem 2rem;
    color: var(--light-color);
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header .navbar a:hover {
    background-color: var(--green);
    color: #fff;
}

/* Navbar active state */
header .navbar.active {
    height: auto; 
    overflow: visible;
    display: block;
}

/* Default navbar styling */
header .navbar {
    display: none; 
    transition: all 0.3s ease; 
}



#search-form
{
    position: fixed;
    top: -100%; /* Hidden by default */
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1004;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    transition: top 0.3s ease; /* Smooth transition */
}

#search-form.active
{
    top: 0; /* Show when active */
}

#search-form #search-box
{
    width: 50rem;
    border-bottom: 0.1rem solid #fff;
    padding: 1rem 0;
    color: #fff;
    font-size: 3rem;
    text-transform: none;
    background: none;
}

#search-form #search-box::placeholder
{
    color: #eee;
}

#search-form #search-box::-webkit-search-cancel-button
{
    --webkit-appearance: none;
}

#search-form label
{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
}

#search-form label:hover
{
    color: var(--green);
}

#search-form #close
{
    position: absolute;
    color: #fff;
    cursor: pointer;
    top: 2rem;
    right: 3rem;
    font-size: 5rem;
}

#search-form #close:hover
{
    color: var(--green);
    font-size: 4.7rem;
}

.about .row
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about .row .image
{
    flex: 1 1 45rem;
}

.about .row .image img
{
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.about .row .content
{
    flex: 1 1 45rem;
}

.about .row .content p
{
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 2;
    font-family: 'Verdana', Tahoma, Geneva, sans-serif;
}

.about .row .content h1
{
    font-size: 2rem;
    color: var(--black);
    padding: .2rem 0;
}

.about .row .content .icons-container
{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}

.about .row .content .icons-container .icons
{
    background-color: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
}

.about .row .content .icons-container .icons i
{
    font-size: 2.5rem;
    color: var(--green);
}

.about .row .content .icons-container .icons span
{
    font-size: 1.5rem;
    color: var(--black);
}

.menu .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box
{
    background-color: #fff;
    border: .1rem solid rgba(0, 0, 0, 0.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.menu .box-container .box .image
{
    width: 100%;
    height: 25rem;
    border-radius: .5rem;
    padding: 1.5rem;
    overflow: hidden;  
    object-fit: contain;
    position: relative;
}

.menu .box-container .box .image img
{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.menu .box-container .box .image .fa-heart
{
    position: absolute;
    right: 2.5rem;
    top: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background-color: #fff;
    border-radius: 50%;
    color: var(--black);
}

.menu .box-container .box .image .fa-heart:hover
{
    background-color: var(--green);
    color: #fff;
}

.menu .box-container .box .content
{
    padding: 2rem;
    padding-top: 0;
}

.menu .box-container .box .content .stars
{
    padding-bottom: 1rem;
}

.menu .box-container .box .content .stars i
{
    font-size: 1.7rem;
    color: var(--green);
}

.menu .box-container .box .content h3
{
    color: var(--black);
    font-size: 2.5rem;
}

.menu .box-container .box .content p
{
    color: var(--light-color);
    font-size: 1.7rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content .price
{
    color: var(--green);
    margin-left: 1rem;
    font-size: 2rem;
}

.review .slide
{
    text-align: center;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    background-color: #fff;
    margin: 0 auto;
    max-width: 600px;
    border-radius: .5rem;
    position: relative;
}

.review .slide .fa-quote-right
{
    position: absolute;
    top: 1rem;
    right: 1rem; 
    font-size: 9rem;
    color: var(--green);
    opacity: 0.3; 
    z-index: 1; 
}

.review .slide .user
{
    display: flex;
    align-items: left;
    gap: 1.5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.review .slide .user img
{
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .slide .user h3
{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.review .slide .user i
{
    font-size: 1.5rem;
    color: var(--green);
}

.review .slide p
{
    font-size: 1.5rem;
    color: var(--light-color);
    line-height: 1.8;
    padding: 1rem 0;
    font-family: 'Verdana', Geneva, Tahoma, sans-serif;
    text-align: left;
}


.order form
{
    width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, 0.2);
    padding: 2rem;
    background-color: #fff;
    margin: 0 auto;
}

.order form .inputBox
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.order form .inputBox .input
{
    flex: 1 1 30rem;
    margin: auto;
}

.order form .inputBox .input span
{
    display: block;
    padding: .5rem 0;
    font-size: 2rem;
    color: var(--green);
    font-weight: bold;
    margin-top: 0.2rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.order form .inputBox .input input,
.order form .inputBox .input textarea
{
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    background-color: #eee;
    text-transform: none;
    color: var(--black);
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, 0.2);
}

.order form .inputBox .input input:focus,
.order form .inputBox .input textarea:focus
{
    background-color: #fff;
    border-color: var(--green);
}

.order form .inputBox .input textarea
{
    height: 20rem;
    resize: none;
}

.order form .btn
{
    width: 100%;
    background-color: var(--green);
    color: #fff;
    padding: 1.5rem;
    font-size: 2rem;
    border-radius: .5rem;
    margin-top: 1rem;
}

section.footer
{
    background-color: aliceblue;
    padding: 5rem 0;
    width: 100%;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
}


.footer .box-container
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
    margin: 0 5rem;
    align-items: center; 
}

.footer .box-container .box h3
{
    padding: .5rem 0;
    font-size: 2.5rem;
    color: var(--black);
}

.footer .box-container .box a
{
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.footer .box-container .box a:hover
{
    text-decoration: underline;
    color: var(--green);
}

#social-icons i
{
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--black);
    border-radius: 50%;
    background-color: #fff;
    margin-right: 1rem;
}

#social-icons i:hover
{
    background-color: var(--green);
    color: #fff;
    transform: rotate(360deg);
}

.footer .credit
{
    text-align: center;
    border-top: .1rem solid rgba(0, 0, 0, 0.2);
    padding: .5rem;
    font-size: 2rem;
    color: var(--black);
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.footer .credit span
{
    color: var(--green);
}

.loader-container
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.loader-container img
{
    width: 35rem;
}

.loader-container.fade-out
{
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}














/* Ensure the home section is visible */
/* section.home {
    display: block;
    position: relative;
    width: 100%;
    min-height: 100vh; 
    background: #f4f4f4; 
    padding: 2rem;
}

section.home .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

section.home .content {
    max-width: 50%;
}

section.home .image img {
    max-width: 100%;
    height: auto;
} */

/* media query */
@media (max-width: 991px)
{
    html
    {
        font-size: 55%;
    }

    header 
    {
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px)
{
    html
    {
        font-size: 50%;
    }

    header .icons #menu-bars
    {
        display: inline-block;
    }

    /* Navbar links for smaller screens */
    header .navbar {
        position: absolute;
        display: block;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active {
        height: auto;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    }

    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background-color: #f9f9f9;
        border-radius: 0.5rem;
    }

    header .navbar a:hover {
        background-color: var(--green);
        color: #fff;
    }

    .home .home-slider .slide {
        flex-direction: column; /* Stack content and image vertically */
        text-align: center; /* Center-align text for smaller screens */
    }

    .home .home-slider .slide .content,
    .home .home-slider .slide .image {
        flex: 1 1 100%; /* Full width for both content and image */
    }

    .home .home-slider .slide .image {
        text-align: center; /* Center-align image */
    }

    .home .home-slider .slide .content h3 {
        font-size: 3rem; 
    }

    .home .home-slider .slide .content p {
        font-size: 1.4rem; 
    }

    .btn {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem; 
    }
}

@media (max-width: 991px)
{
    html
    {
        font-size: 50%;
    }

    header 
    {
        padding: 1rem 2rem;
    }
    
    section
    {
        padding: 7rem 2rem; /* Adjust padding for smaller screens */
    }

    .dishes .box-container .box img
    {
        height: auto; 
        margin: 1rem 0; 
    }

    .order form
    {
        width: 100%; /* Full width for smaller screens */
        padding: 1rem; /* Adjust padding */
    }
}

/* Navbar for larger screens */
@media (min-width: 769px) {
    header .navbar {
        display: flex; 
        position: static;
        height: auto; 
        background-color: transparent; 
        padding: 0; 
    }

    header .navbar a {
        margin: 0 1rem; 
        padding: 0.5rem 1rem; 
        font-size: 1.6rem; 
        background-color: transparent; 
        color: var(--black); 
    }

    header .navbar a:hover {
        background-color: var(--green); 
        color: #fff; 
    }

    header .icons #menu-bars {
        display: none; 
    }
}
