* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



#navbar {
    display: flex;
    align-items: center;
    background-color:transparent; /* Background color when at the top */
    color: rgb(255, 255, 255); /* Text color when at the top */
    padding: 15px 50px; /* Increased padding at the top */
    position: sticky;  
    top: 0;
    z-index: 1000; 
    font-weight: bold;
    transition: background-color 0.5s, color 0.5s, padding 0.5s; /* Smooth transition for all changes */
}

/* Navbar styles when scrolled */
#navbar.scrolled {
    background-color: black; /* Change background color when scrolled */
    color: white;           /* Change text color when scrolled */
    padding: 10px 20px;    /* Default padding */
    box-shadow: none;      /* Optional: change shadow */
}

/* Icon styling */
.material-symbols-outlined {
    color: rgb(255, 255, 255); /* Icon color when at the top */
    transition: color 0.3s; /* Smooth transition for icon color */
}

#navbar.scrolled .material-symbols-outlined {
    color: white; /* Icon color when scrolled */
}

/* Logo styling */
#logo img {
    height: 50px; /* Adjust as necessary */
}

/* Styles for the navigation list */
#navbar ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-left: 0; /* Align list to the left */
}

/* Individual items within the navbar */
#navbar .home,
#navbar .about,
#navbar .Food,
#navbar .con,
#navbar .car {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Spacing between items */
}

/* Link styles */
#navbar .item a {
    text-decoration: none; /* Remove underline */
    color: rgb(255, 255, 255); /* Link color when at the top */
    padding: 10px;
    transition: color 0.3s, background-color 0.3s; /* Smooth transition for hover effect */
}

/* Link hover styles */
#navbar .item a:hover {
    color: #FFD700; /* Gold color on hover */
    background-color: black; /* Change background on hover */
    border-radius: 25px; 
}
#navbar.scrolled .item a {
    color: rgb(255, 255, 255); /* Link color when scrolled (white) */
}

/* Link hover styles when scrolled */
#navbar.scrolled .item a:hover {
    color: #FFD700; /* Gold color on hover */
    background-color: black; /* Change background on hover */
}
/* Right-aligned items in the navbar */
#navbar ul {
    margin-left: auto;
}

/* Button styles */
#navbar .item {
    transition: color 0.3s; /* Smooth transition for item colors */
}



/* Login section */
#login-p {
    display: flex; /* Make it a flex container */
    align-items: center; /* Center items vertically */
    margin-left: auto; /* Push the login section to the right */
}

#login-p a {
    text-decoration: none; /* Remove underline */
    color: white; /* Link color */
    padding: 10px;
    transition: color 0.3s; /* Smooth transition for hover effect */
}

#login-p a:hover {
    color: #FFD700; /* Gold color on hover */
    background-color: #FFD700;
    border-radius: 25px; 
}

/* Additional styling for all items to align left */
#navbar > div,
#navbar ul > div {
    display: flex; /* Ensure all items use flex layout */
    align-items: center; /* Center items vertically */
    margin: 0; /* Remove default margins */
}

#home{
    margin-top: -152px;
    max-width:100vw;
    height: 92vh;
    overflow: hidden;
    position:sticky;
    top: 0%;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.background-image{
    position: sticky;
    top: 0%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}



/* Image 1 (Top center, 55vw width, margin-bottom 40%) */
.home-bg-img1 {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height:auto;
    z-index: 2; /* Ensure it overlaps image 2 */
}

/* Image 2 (Centered below Image 1, 60vw width, margin-bottom 38%) */
.home-bg-img2 {
    position: absolute;
    top: -40%; /* Adjusting to place it just below image 1 */
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    z-index: 1; /* Below Image 1 */
}

/* Image 3 (Covers the whole screen) */
.home-bg-img3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0; /* Background image */
}
.background-image h1{
    position: relative;
    z-index: 5;
    top: 45%;
    font-size: 60px;
    color: rgb(49, 48, 48);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.background-image p{
    position: relative;
    z-index: 5;
    top: 47%;
    text-align: center;
    width: 70%;
    font-size: 20px;
    color: rgb(49, 48, 48);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.home-bg-button{
    position: relative;
    z-index: 5;
    top: 52%;
}
.home-bg-button a{
    padding: 10px 20px 10px 20px;
    background-color: transparent;
    border: solid 3px #FF6347;
    border-radius:50px;
    color: rgb(49, 48, 48);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 1.5px;
    transition: all 0.3s ease-in-out;
}
.home-bg-button a:hover{
    background-color: #FF6347;
    color: white;
}
.menu-section {
    margin-top: 100px;
    padding: 40px 0;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

/* Container for the entire layout */
.container {
    display: flex;
    position: relative;
}

/* Toggle button for the sidebar */
.toggle-sidebar-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #FF6347; /* Bright Tomato color for visibility */
    color: white;
    padding: 12px 16px;
    border: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.toggle-sidebar-btn:hover {
    background-color: #FF4500; /* Darker on hover */
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Sidebar container */
.sidebar {
    width: 250px;
    background: linear-gradient(135deg, #FF6347, #FF4500); /* Gradient background */
    color: white;
    padding: 20px;
    height: 50vh; /* Full height */
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* Hidden initially */
    z-index: 999;
    transition: all 0.4s ease-in-out; /* Smooth slide-in effect */
}

/* Show sidebar on display */
.sidebar.show {
    display: block;
    animation: slideIn 0.5s forwards; /* Slide in effect */
}

/* Slide in keyframe animation */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Menu categories inside sidebar */
.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spaced out for clarity */
    margin-top: 60px;
}

.category-btn {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white background */
    color: white;
    padding: 15px;
    border: none;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif; /* Modern font */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
    background-color: rgba(255, 255, 255, 0.3); /* Lighter on hover */
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}




.menu-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: white;
    animation: fadeInUp 1s ease-in-out;
    z-index: 1;
    /* margin-top: 600px; */
}

.food-item {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    margin: 20px;
    max-width: 300px; /* Increased width for larger items */
    height: auto; /* Increased height for more content */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space out content */
}

.food-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.food-item img {
    width: 100%;
    z-index: 0;
    position: relative;
    height: 200px; /* Set fixed height for images */
    object-fit: cover; /* Ensure image covers the entire box */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

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

.food-item h3 {
    color: #333;
    
    background-color: white;
    margin: 15px;
    font-size: 22px; /* Slightly larger font size */
    font-weight: 600;
}

.food-item p {
    color: #555;
    margin: 0 15px 15px; /* Reduced margin for better spacing */
    font-size: 14px;
    flex-grow: 1; /* Allow description to take more space */
}

.food-item .price {
    color: #555;
    font-weight: bold;
    margin: 10px 15px;
    font-size: 18px; /* Slightly larger font size */
}

.add-to-cart-btn {
    background-color: #FF4500;
    color: #fff;
    border: none;
    padding: 12px 20px;
    margin: 15px;
    cursor: pointer;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #FF4500;
    text-decoration: none; /* Remove underline */
}

.add-to-cart-btn:hover {
    background-color: transparent;
    border: 2px solid #FF4500;
    color: black;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Larger shadow */
}

/* Keyframes for fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Footer Styles */
footer, footer * {
    margin: 0;
    padding: 0;
    background-color:#ccc;
}

/* Main Footer Styling */
footer {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    padding: 0; /* Remove any padding from the footer itself */
}

/* Column Styling */
footer .col {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Text Styling */
footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

/* Image Styling */
footer .install .row img {
    border: 1px solid #088178;
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

/* Hover Effects */
footer .follow i:hover,
footer a:hover {
    color: #088178;
}

/* Copyright Section Styling */
footer .copyright {
    width: 100%;
    text-align: center;
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
    margin-top: 0; /* Remove any top margin */
    margin-top: 20px;
}
/* Utility Classes */
.h-primary{
    font-family: 'Bree Serif', serif;
    font-size: 3.8rem;
    padding: 12px;
}

.h-secondary{
    font-family: 'Bree Serif', serif;
    font-size: 2.3rem;
    padding: 12px;
}

.btn{
    padding: 6px 20px;
    border: 2px solid white;
    background-color: brown;
    color: white;
    margin: 17px;
    font-size: 1.5rem;
    border-radius: 10px;
    cursor:pointer;
}

.center{
    text-align: center;
}
.menu-container {
    padding-top: 100px;
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.menu-categories-2 {
    position: relative;
    display: grid;
    background-color: white;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 50px; /* Space between buttons */
    justify-items: center; /* Center the buttons horizontally */
    z-index: 1;
}

@media (max-width: 1024px) {
    .menu-categories-2 {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 600px) {
    .menu-categories-2 {
        grid-template-columns: 1fr; /* 1 column on small screens */
        gap: 30px; /* Reduce gap for small screens */
    }
}
.svg-icon {
    filter: invert(33%) sepia(100%) saturate(1400%) hue-rotate(-9deg) brightness(103%) contrast(106%);
    width: 80px; /* Adjust icon size */
    height: 80px;
}
.category-btn{
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    color: black;
    gap: 20px;
    padding: 30px;
    font-size: 20px;
    font-weight: bold;
    z-index: 1;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.category-btn:hover .svg-icon {
    filter: invert(33%) sepia(100%) saturate(1400%) hue-rotate(-9deg) brightness(103%) contrast(106%);
}
html {
    scroll-behavior: smooth;
}