@charset "utf-8";

/* ================= VARIABLES ================= */
:root {
    --primary-color: #e7272d; /* Professional Food Red */
    --primary-hover: #c41c22;
    --dark-bg: #121212;
    --text-heading: #1a1a1a;
    --text-body: #555555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= CORE RESETS ================= */
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-family: var(--font-body); font-size: 16px; color: var(--text-body); line-height: 1.7; background: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 5px; }

* { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-heading); font-weight: 700; margin: 0; }
p { margin-bottom: 15px; }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none !important; transition: 0.3s; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 100px 0; position: relative; overflow: hidden; }

/* ================= UTILS & BUTTONS ================= */
.btn-primary {
    background-color: var(--primary-color); color: #fff;
    padding: 12px 30px; border-radius: 30px; font-weight: 600; text-transform: uppercase;
    border: 2px solid var(--primary-color); transition: 0.3s; display: inline-block;
}
.btn-primary:hover { background-color: transparent; color: var(--primary-color); }

.btn-secondary {
    background-color: transparent; color: var(--text-heading);
    padding: 12px 30px; border-radius: 30px; font-weight: 600; text-transform: uppercase;
    border: 2px solid var(--text-heading); display: inline-block;
}
.btn-secondary:hover { background-color: var(--text-heading); color: #fff; }

.SectionHead { text-align: center; margin-bottom: 60px; }
.sub-title { display: block; color: var(--primary-color); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.SectionHead h2 { font-size: 42px; margin-bottom: 20px; }
.separator { width: 60px; height: 3px; background: var(--primary-color); margin: 0 auto; }

/* ================= HEADER ================= */
.Header {
    width: 100%; position: fixed; top: 0; z-index: 1000;
    padding: 20px 0; transition: 0.4s; background: transparent;
}
.Header.Fixed { background: rgba(255,255,255,0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.1); padding: 10px 0; backdrop-filter: blur(10px); }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0; }
.Logo { display: flex; align-items: center; font-size: 24px; font-weight: 800; font-family: var(--font-heading); color: #fff; }
.Logo img { width: 45px; margin-right: 10px; }
.Logo .highlight { color: var(--primary-color); }
.Header.Fixed .Logo{color: #000;}

.Header.Fixed .Logo img{
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'invert\'><feColorMatrix type=\'matrix\' values=\'-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\'/></filter></svg>#invert");
  -webkit-filter:invert(100%);
  filter: invert(100%);

}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links li a { font-weight: 600; color: #fff; font-size: 15px; }
.Header.Fixed .nav-links li a { color: var(--text-heading); }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }

.cta-btn a {
    background: var(--primary-color); color: #fff !important;
    padding: 10px 25px; border-radius: 25px; box-shadow: 0 5px 15px rgba(231,39,45,0.4);
}
.cta-btn a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(231,39,45,0.6); }

/* Mobile Menu */
.MenuBox, .CloseMenu { display: none; background: none; border: none; cursor: pointer; }
.MenuBox span { display: block; width: 25px; height: 3px; background: var(--primary-color); margin-bottom: 5px; }
.CloseMenu { font-size: 30px; position: absolute; top: 20px; right: 20px; }

/* ================= HERO SECTION ================= */
.HeroSection { padding: 0; height: 100vh; }
#HeroSlider, .carousel-inner, .carousel-item { height: 100%; }
.carousel-item { background-size: cover; background-position: center; }
.overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%); }

.HeroContent { position: relative; z-index: 2; color: #fff; padding-top: 80px; }
.HeroContent h2 { font-family: 'Yellowtail', cursive; font-size: 30px; color: var(--primary-color); margin-bottom: 10px; }
.HeroContent h1 { font-size: 75px; line-height: 1.1; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; color: #fff;}
.HeroContent p { font-size: 20px; margin-bottom: 30px; max-width: 600px; opacity: 0.9; }
.price-tag { font-size: 20px; font-weight: 700; color: #fff; margin-left: 20px; vertical-align: middle; }

/* Animations */
.animate-up { animation: fadeInUp 1s ease forwards; opacity: 0; transform: translateY(30px); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.control-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: 0.3s; }
.carousel-control-prev:hover .control-icon, .carousel-control-next:hover .control-icon { background: var(--primary-color); }

/* ================= SERVICES ================= */
.ServicesArea { background: var(--light-bg); }
.ServicesBox {
    background: #fff; padding: 40px 30px; border-radius: 15px; text-align: center;
    transition: 0.4s; border-bottom: 4px solid transparent; height: 100%;
}
.ServicesBox:hover { transform: translateY(-10px); box-shadow: var(--shadow); border-bottom-color: var(--primary-color); }
.icon-circle {
    width: 80px; height: 80px; background: #fdf0f0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: 0.4s;
}
.ServicesBox:hover .icon-circle { background: var(--primary-color); }
.ServicesBox:hover .icon-circle img { filter: brightness(0) invert(1); }
.ServicesBox img { width: 40px; }
.ServicesBox h5 { font-size: 22px; margin-bottom: 15px; }

/* ================= MENU PROMO ================= */
.MenuPromo { background: #fff; }
.MenuContent { padding-left: 30px; }
.MenuContent h2 { font-size: 40px; margin-bottom: 20px; }
.features-list { margin: 25px 0 35px; }
.features-list li { margin-bottom: 10px; font-weight: 600; color: var(--text-heading); }
.features-list i { color: var(--primary-color); margin-right: 10px; }

/* ================= SPECIAL OFFERS ================= */
.SpecialArea { background: var(--light-bg); }
.SpecialBox {
    position: relative; border-radius: 15px; overflow: hidden;
    box-shadow: var(--shadow); transition: 0.4s; background: #fff;
}
.SpecialBox:hover { transform: translateY(-5px); }
.SpecialBox img { width: 100%; height: 300px; object-fit: cover; transition: 0.5s; }
.SpecialBox:hover img { transform: scale(1.1); }
.offer-badge {
    position: absolute; top: 20px; right: 20px; background: var(--primary-color);
    color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 14px;
}
.special-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff;
}
.special-info h4 { color: #fff; margin-bottom: 5px; }
.btn-link { color: var(--primary-color); font-weight: 700; font-size: 14px; }

/* ================= GALLERY ================= */
.GalleryItem { position: relative; overflow: hidden; height: 300px; cursor: pointer; }
.GalleryItem img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.g-overlay {
    position: absolute; inset: 0; background: rgba(231,39,45,0.8);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s;
}
.g-overlay i { font-size: 40px; color: #fff; }
.GalleryItem:hover .g-overlay { opacity: 1; }
.GalleryItem:hover img { transform: scale(1.1); }

/* ================= TESTIMONIALS ================= */
.TestimonialArea { background: #fff; }
.TestimonialBox {
    text-align: center; background: var(--light-bg); padding: 50px 30px;
    border-radius: 15px; margin: 20px; position: relative;
}
.user-img { width: 100px; height: 100px; border-radius: 50%; margin: -100px auto 20px; border: 5px solid #fff; box-shadow: var(--shadow); overflow: hidden; }
.review-text { font-style: italic; font-size: 18px; color: var(--text-heading); margin-bottom: 20px; }
.stars { color: #ffc107; }

/* ================= BLOG CARD ================= */
.BlogCard { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); transition: 0.4s; border: 1px solid #eee; }
.BlogCard:hover { transform: translateY(-10px); }
.img-holder { overflow: hidden; height: 220px; }
.img-holder img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.BlogCard:hover img { transform: scale(1.1); }
.card-content { padding: 25px; }
.date { font-size: 12px; color: var(--primary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.card-content h4 { font-size: 20px; margin: 10px 0 15px; line-height: 1.4; }
.read-more { font-weight: 700; color: var(--text-heading); border-bottom: 2px solid var(--primary-color); }

/* ================= ORDER CTA ================= */
.OrderCTA {
    background-image: url(../images/Order.jpg); background-size: cover; background-attachment: fixed;
    text-align: center; color: #fff; position: relative; padding: 120px 0;
}
.OrderCTA .overlay { background: rgba(0,0,0,0.7); }
.relative-index { position: relative; z-index: 2; }
.OrderCTA h2 { color: #fff; font-size: 45px; margin-bottom: 20px; }
.OrderCTA p { font-size: 18px; margin-bottom: 40px; }

/* ================= CONTACT ================= */
.ContactInfo h3 { margin-bottom: 20px; }
.info-item { display: flex; align-items: center; margin-bottom: 30px; }
.info-item i { width: 50px; height: 50px; background: rgba(231,39,45,0.1); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-right: 20px; }
.info-item h6 { font-size: 18px; margin-bottom: 5px; }
.ContactForm .form-control {
    height: 50px; border-radius: 5px; border: 1px solid #eee; padding: 10px 20px; background: var(--light-bg);
}
.ContactForm textarea.form-control { height: auto; padding-top: 15px; }
.ContactForm .form-control:focus { border-color: var(--primary-color); background: #fff; box-shadow: none; }

/* ================= FOOTER ================= */
footer { background: var(--dark-bg); color: #fff; }
.FooterTop { padding: 80px 0 40px; }
.FooterWidget .f-logo { font-size: 24px; font-weight: 800; font-family: var(--font-heading); margin-bottom: 20px; display: flex; align-items: center; }
.FooterWidget p { color: #aaa; }
.socials li { display: inline-block; margin-right: 10px; }
.socials a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: 0.3s; }
.socials a:hover { background: var(--primary-color); }
.FooterWidget h4 { color: #fff; margin-bottom: 25px; font-size: 20px; }
.f-links li { margin-bottom: 12px; }
.f-links a { color: #aaa; transition: 0.3s; }
.f-links a:hover { color: var(--primary-color); padding-left: 5px; }
.FooterBottom { background: #000; padding: 20px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.FooterBottom p { margin: 0; font-size: 14px; color: #666; }

/* ================= MODAL ================= */
.custom-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); align-items: center; justify-content: center; }
.modal-content { max-width: 90%; max-height: 90vh; width: auto; }
.close-modal { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 40px; cursor: pointer; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #fff; flex-direction: column; padding-top: 80px;
        transition: 0.4s ease; box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-links.Show { right: 0; }
    .nav-links li a { color: var(--text-heading); }
    .MenuBox, .CloseMenu { display: block; }
    .HeroContent h1 { font-size: 45px; }
}