/* GENERAL RESET */
html, body {
    overflow-x: hidden;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    box-sizing: border-box;
}

/* ============================
   STICKY NAVBAR
============================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1f1f1f;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.Navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.brandlogo {
    height: 50px;
}

.nav-pills {
    display: flex;
    gap: 15px;
}

.nav-pills .nav-link {
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    transition: 0.3s;
}
.nav-pills .nav-link:hover {
    background-color: white;
    color: black;
    border-radius: 5px;
}
.nav-pills .nav-link:visited {
    color: white;
}

/* MOBILE MENU */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.menu-icon .bar {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.4s;
}

/* NAV MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-pills {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #000;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .nav-pills.show {
        display: flex;
    }
    .nav-item {
        margin: 10px 0;
    }
}

/* ============================
   HERO SECTION
============================ */
.hero-content {
    text-align: center;
    padding: 150px 20px 50px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('./assets/HeroImage.jpg') center/cover no-repeat;
    color: white;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 20px 30px;
        min-height: 50vh;
    }
    .hero-content h1 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 14px;
    }
}

.hero-content a.btn {
    color: #fff;
    background-color: #188decf5;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero-content a.btn:hover {
    background-color: #22e6cc;
}

/* ============================
   DIET SECTION
============================ */
.diet-section {
    position: relative;
    min-height: 30vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 20px 10px;
    text-align: center;
}

.diet-section-background {
    position: absolute;
    inset: 0;
    background: url('assets/lunch.jpg') center/cover no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

.overlay {
    position: relative;
    width: 100%;
    padding: 20px;
    background-color: rgba(0,0,0,0.5);
}

.overlay h1 {
    font-size: 2em;
    margin-bottom: 10px;
    color:#ffffff;
}

.price {
    color: #00a600;
    font-weight: bold;
    font-size: 1.2em;
}

.diet-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.diet-icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.diet-icon-text{
    color:#ffffff;
    
}

.diet-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .overlay {
        padding: 10px;
    }
    .overlay h1 {
        font-size: 1.5em;
    }
}

/* ============================
   MENU SECTION (FIXED!)
============================ */
.menu-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: url('assets/menu page.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.menu-section .overlay {
    background: rgba(0,0,0,0.55);
    padding: 40px 20px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-radius: 10px;
}

.menu-section .overlay h1 {
    font-size: 2em;
}

#menu-content {
    max-width: 90%;
    margin: 20px auto 0;
    text-align: left;
}

/* DISABLE PARALLAX ON MOBILE FOR CLIPPING FIX */
@media (max-width: 768px) {
    .menu-section {
        background-attachment: scroll;
    }
}

/* ============================
   CAROUSEL
============================ */
.carousel {
    margin: 80px 0 20px;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: 0.5s;
}

.carousel-item {
    min-width: 100%;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .carousel-item img {
        height: 200px;
    }
}

/* ============================
   GALLERY
============================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    background-color: #1a1a1a;
    padding: 5vw 4vw;
}

.contact-section h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    color: #ffcc00;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-form,
.restaurant-info {
    flex: 1;
    padding: 20px;
    background: #262626;
    border-radius: 10px;
}

/* FORM INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: 1px solid #444;
    border-radius: 5px;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
}

/* MAP */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.map-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ============================
   CONTACT SECTION
============================ */
.contact-section {
    background-color: #1a1a1a;
    padding: 5vw 4vw;
    color: white;
}

.contact-section h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    color: #ffcc00;
}

/* MAIN CONTAINER */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* CONTACT FORM */
.contact-form,
.restaurant-info {
    flex: 1;
    padding: 20px;
    background: #262626;
    border-radius: 10px;
}

/* FORM INPUTS */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: 1px solid #444;
    border-radius: 5px;
    margin-bottom: 15px;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

/* RESTAURANT INFO BOX */
.restaurant-info h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffcc00;
}

.restaurant-info p,
.restaurant-info address p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 8px;
}

/* MAP */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 responsive */
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}

.map-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

/* SOCIAL MEDIA ICONS */
.social-media ul {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.social-media ul li a {
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.social-media ul li a:hover {
    color: #ffcc00;
}

/* MOBILE CONTACT */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}


/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}
