@charset "utf-8";

/* ================= VARIABLES ================= */
:root {
    --primary-color: #ffce00;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --font-main: 'Mulish', sans-serif;
    --font-head: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* ================= CORE RESET ================= */
html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    font-family: var(--font-main);
    font-size: 16px; /* Increased from 13px for readability */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { text-decoration: none; color: var(--primary-color); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ================= HEADER ================= */
.Header {
    z-index: 999; width: 100%; padding: 20px 0;
    position: absolute; top: 0; left: 0;
    transition: var(--transition);
}

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

.Header .Navigation ul li {
    display: inline-block; margin-left: 35px;
}

.Header .Navigation ul li a {
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

/* Underline effect on hover */
.Header .Navigation ul li a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    background: var(--primary-color); bottom: 0; left: 0;
    transition: var(--transition);
}
.Header .Navigation ul li a:hover::after { width: 100%; }

/* Sticky Header */
.Fixed {
    position: fixed; top: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px); /* Premium Glass Effect */
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Mobile Menu Icons */
.MenuBox { background: transparent; border: none; display: none; cursor: pointer; }
.MenuBox span { width: 30px; display: block; background: var(--white); height: 2px; margin-bottom: 6px; transition: var(--transition); }
.CloseMenu { background: transparent; border: none; width: 30px; height: 30px; margin: 0 0 30px auto; display: none; cursor: pointer; }
.CloseMenu span { width: 25px; display: block; background: var(--white); height: 2px; transform: rotate(45deg); position: absolute; }
.CloseMenu span + span { transform: rotate(-45deg); }

/* ================= SECTIONS & HEADINGS ================= */
section { padding: 100px 0; overflow: hidden; }

.SectionHead { text-align: center; margin-bottom: 60px; }
.SectionHead .icon-head img { width: 40px; margin: 0 auto 15px; filter: brightness(0.9); }

h2 {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 800;
    font-family: var(--font-head);
    font-size: 38px; /* Bigger titles */
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
}

.SectionHead p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ================= HERO / SLIDE AREA ================= */
.SlideArea {
    background-image: url(../images/Slide.png);
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center;
    position: relative;
}

/* Dark Overlay for better text readability */
.SlideArea::before {
    content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}

.SlideArea .container { position: relative; z-index: 2; }

.SlideArea .SlideBox { max-width: 700px; color: var(--white); }
.SlideArea .sub-title { color: var(--primary-color); font-weight: 700; font-size: 18px; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.SlideArea h1 {
    font-size: 65px; font-weight: 800; line-height: 1.1;
    text-transform: capitalize; margin-bottom: 25px;
    font-family: var(--font-head);
}
.SlideArea p { font-size: 18px; margin-bottom: 35px; opacity: 0.9; max-width: 550px; }

/* Custom Button */
.btn-primary-custom {
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 206, 0, 0.3);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ================= DISHES & CARDS ================= */
.DishesArea, .ChefArea, .MenuArea, .GalleryArea, .ContactArea { background-color: var(--dark-bg); }

.DishesBox, .ChefBox {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #222;
}

.DishesBox:hover, .ChefBox:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.DishesBox figure, .ChefBox figure {
    width: 150px; height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
}

.DishesBox:hover figure, .ChefBox:hover figure { border-color: var(--primary-color); }

.DishesBox figcaption h3, .ChefBox figcaption h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 8px;
    color: var(--white); font-family: var(--font-head);
}
.DishesBox p, .ChefBox p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.DishesBox .price { font-size: 18px; font-weight: 800; color: var(--primary-color); }

.DishesBody .owl-carousel .owl-stage-outer{
    padding: 20px 0;
}

/* Owl Carousel Dots */
.owl-theme .owl-dots .owl-dot span { background: #444; }
.owl-theme .owl-dots .owl-dot.active span { background: var(--primary-color); }

/* ================= ABOUT AREA ================= */
.AboutArea {
    background-image: url(../images/Pattern.jpg);
    background-color: #111; /* Fallback */
    background-blend-mode: overlay;
}

.AboutLeft img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.AboutRight { padding-left: 20px; }
.AboutRight .SectionHead { text-align: left; margin-bottom: 30px; }
.AboutRight .lead-text { font-size: 18px; color: var(--white); margin-bottom: 20px; font-weight: 500; }
.AboutRight p { color: var(--text-muted); margin-bottom: 30px; }

.features-grid { display: flex; justify-content: space-between; gap: 20px; }
.features-grid aside { text-align: center; flex: 1; }
.features-grid .icon-box {
    width: 70px; height: 70px; background: var(--card-bg);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px; border: 1px solid #333; transition: var(--transition);
}
.features-grid aside:hover .icon-box { border-color: var(--primary-color); background: #222; }
.features-grid img { width: 35px; }
.features-grid p { font-weight: 700; font-family: var(--font-head); color: var(--white); font-size: 14px; text-transform: uppercase; }

/* ================= OFFER AREA ================= */
.OfferArea {
    background-image: url(../images/Offer.png);
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: left;
}
.OfferArea::before {
    content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.6);
}
.OfferArea .container { position: relative; z-index: 2; }
.OfferArea h2 { font-size: 45px; line-height: 1.2; margin-bottom: 30px; }
.OfferArea .highlight { color: var(--primary-color); font-weight: 900; }

/* ================= GALLERY ================= */
.GalleryBody {
    display: flex; flex-wrap: wrap;
    gap: 15px; justify-content: center;
}
.GalleryBody a {
    width: calc(33.333% - 10px);
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: zoom-in;
}
.GalleryBody .img-wrapper { overflow: hidden; height: 250px; }
.GalleryBody img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.GalleryBody a:hover img { transform: scale(1.1); opacity: 0.8; }

/* ================= CONTACT ================= */
.ContactBox {
    text-align: left; margin-top: 30px;
    padding: 20px; border-radius: 10px;
    transition: var(--transition);
}
.ContactBox:hover { background: var(--card-bg); }
.ContactBox h3 { font-size: 18px; margin-bottom: 15px; color: var(--white); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; }
.ContactBox h3 i { color: var(--primary-color); margin-right: 10px; width: 20px; text-align: center; }
.ContactBox p { color: var(--text-muted); font-size: 15px; }
.ContactBox.social-links ul { display: flex; gap: 15px; }
.ContactBox.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: #222; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px;
}
.ContactBox.social-links a:hover { background: var(--primary-color); color: #000; }

/* ================= FOOTER ================= */
footer aside {
    background-color: #000; padding: 25px 0; text-align: center;
    border-top: 1px solid #222;
}
footer aside p { color: #666; font-size: 14px; letter-spacing: 0.5px; }

/* ================= MODAL & HIDDEN SECTIONS ================= */
.custom-modal {
    display: none; position: fixed; z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    align-items: center; justify-content: center;
}
.modal-content { max-width: 90%; max-height: 90vh; width: auto; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.close-modal { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 45px; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--primary-color); }

.ChefArea, .MenuArea, .TableArea { display: none; } /* Kept as requested */

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    section { padding: 70px 0; }
    .Header .Navigation ul {
        position: fixed; top: 0; left: 0; width: 280px;
        padding: 40px 30px; background-color: #000; height: 100vh;
        transform: translateX(-100%); transition: 0.4s ease;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5); display: block;
    }
    .Header .Navigation ul li { display: block; margin: 0 0 25px 0; }
    .Header .Navigation ul.Show { transform: translateX(0); }
    .MenuBox, .CloseMenu { display: block; }
    
    .SlideArea h1 { font-size: 45px; }
    .AboutRight { padding-left: 0; margin-top: 40px; text-align: center; }
    .AboutRight .SectionHead { text-align: center; }
    .GalleryBody a { width: calc(50% - 10px); }
    .features-grid { gap: 10px; }
}

@media (max-width: 576px) {
    .SlideArea h1 { font-size: 36px; }
    .SlideArea p { font-size: 16px; }
    .GalleryBody a { width: 100%; }
    .ContactBox { text-align: center; }
    .OfferArea h2 { font-size: 32px; }
}