@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-deep-black: #080808;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --accent-yellow: #F4C430;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --shadow-glow: 0 15px 35px rgba(244, 196, 48, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-deep-black); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-yellow); }

body { background-color: var(--bg-deep-black); color: var(--text-white); overflow-x: hidden; font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .logo-text, .hero-title, .page-title, .section-title, .category-title { font-family: 'Playfair Display', serif; font-weight: 400; letter-spacing: -0.5px; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--accent-yellow); }
.text-center { text-align: center; }

/* --- Announcement & Mic --- */
.announcement-bar { width: 100%; padding: 6px 0; text-align: center; font-weight: 600; font-size: 0.8rem; overflow: hidden; font-family: 'Cairo', sans-serif; border-bottom: 1px solid rgba(0,0,0,0.1); }
.announcement-scroll { animation: scrollText 20s linear infinite; white-space: nowrap; display: flex; justify-content: center; align-items: center; gap: 10px; }
@keyframes pulseMic { 0% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0.5; transform: scale(1); } }

/* --- Dynamic Glass Navigation --- */
.nav-glass { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background: rgba(8, 8, 8, 0.85); backdrop-filter: blur(15px); transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 60px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-gray); text-decoration: none; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1.5px; transition: all 0.3s; position: relative; font-weight: 600; font-family: 'Inter', sans-serif; }
.nav-links a:hover, .nav-links a.active-link { color: var(--text-white); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--accent-yellow); transition: 0.3s; }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }

/* --- Buttons --- */
.btn-primary { background-color: var(--accent-yellow); color: #111; padding: 14px 35px; border: none; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; display: inline-block; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; font-family: 'Inter', sans-serif; }
.btn-primary:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1ebd5a; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--text-white); }
.btn-outline:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); transform: translateY(-3px); background: rgba(244, 196, 48, 0.05); }

/* --- Hero --- */
.hero-3d { height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; transform: scale(1.1); animation: zoomBackground 25s infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-title { font-size: 6rem; font-weight: 400; letter-spacing: 1px; text-shadow: 0 10px 40px rgba(0,0,0,0.8); }
.hero-desc { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; font-weight: 300; font-family: 'Inter', sans-serif; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
@keyframes zoomBackground { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }

/* --- About --- */
.about-section { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); }
.about-image img { width: 100%; transition: 0.6s ease; }
.about-image:hover img { transform: scale(1.05); }
.section-title { font-size: 4rem; margin-bottom: 30px; line-height: 1.1; }
.about-text p { color: var(--text-gray); line-height: 1.9; margin-bottom: 25px; font-weight: 300; font-size: 1.1rem; }

/* --- Social Feed --- */
.social-feed { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.social-simple-grid { display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.social-simple-link { display: flex; align-items: center; justify-content: center; width: 70px; height: 70px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%; color: var(--text-white); font-size: 1.8rem; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.social-simple-link:hover { background: var(--accent-yellow); color: #080808; transform: translateY(-8px); box-shadow: 0 15px 30px rgba(244, 196, 48, 0.3); }

/* --- Menu --- */
.menu-page { padding-top: 140px; padding-bottom: 100px; }
.page-title { text-align: center; font-size: 4.5rem; margin-bottom: 60px; }
.menu-layout { display: grid; grid-template-columns: 280px 1fr; gap: 50px; }
.menu-sidebar { position: sticky; top: 140px; height: fit-content; background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7); }
.menu-sidebar h3 { margin-bottom: 25px; color: var(--accent-yellow); font-size: 1.5rem; border-bottom: 1px solid #222; padding-bottom: 15px; }
.menu-sidebar ul { list-style: none; padding: 0; margin: 0; }
.menu-sidebar ul li { margin-bottom: 5px; }
.menu-sidebar ul li a { color: var(--text-gray); text-decoration: none; transition: 0.3s; display: block; padding: 12px 15px; border-radius: 12px; font-size: 0.95rem; }
.menu-sidebar ul li a:hover, .menu-sidebar ul li a.active-cat { color: var(--text-white); background: rgba(255,255,255,0.05); padding-left: 20px; }
.category-block { margin-bottom: 100px; }
.category-title { border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; margin-bottom: 30px; font-size: 2.8rem; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.menu-card { background: var(--bg-card); border-radius: 24px; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(255,255,255,0.03); display: flex; flex-direction: column; }
.menu-card:hover { transform: translateY(-10px); border-color: var(--accent-yellow); box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.7); }
.menu-image { height: 240px; overflow: hidden; position: relative; background: #111; }
.menu-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.menu-card:hover .menu-image img { transform: scale(1.1); }
.no-image-placeholder { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; width: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); color: #444; font-size: 0.8rem; border: 1px dashed rgba(255,255,255,0.05); }
.no-image-placeholder i { font-size: 3.5rem; color: #333; margin-bottom: 10px; }
.featured-badge { position: absolute; top: 15px; right: 15px; background: var(--accent-yellow); color: #111; padding: 6px 14px; border-radius: 30px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.menu-details { padding: 30px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.menu-details h4 { font-size: 1.4rem; margin-bottom: 8px; color: #fff; }
.menu-details .desc { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.new-price { font-size: 1.4rem; font-weight: 700; color: var(--text-white); }
.old-price { color: #666; text-decoration: line-through; margin-right: 12px; font-size: 0.9rem; }

/* --- Reviews --- */
.review-section { background: #0f0f0f; padding: 80px 0; border-top: 1px solid #222; }
.review-card { background: var(--bg-card); padding: 30px; border-radius: 20px; border: 1px solid #222; margin-bottom: 20px; transition: 0.3s; }
.review-card:hover { border-color: var(--accent-yellow); transform: translateY(-3px); }
.star-rating { color: var(--accent-yellow); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 10px; display: block; }

/* --- Gallery --- */
.gallery-page { padding-top: 140px; padding-bottom: 80px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 20px; height: 320px; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover { border-color: var(--accent-yellow); }

/* --- Contact --- */
.contact-page { padding-top: 160px; padding-bottom: 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-box { background: var(--bg-card); padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); }
.contact-info-box h3 { font-size: 2rem; margin-bottom: 20px; color: var(--accent-yellow); }
.contact-info-box p { color: var(--text-gray); margin-bottom: 25px; line-height: 1.8; }
.info-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: var(--text-white); }
.info-row i { width: 30px; color: var(--accent-yellow); font-size: 1.2rem; }
.contact-form-box { background: var(--bg-card); padding: 40px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); }
.contact-form-box .form-group { margin-bottom: 20px; }
.contact-form-box label { display: block; color: #aaa; margin-bottom: 8px; font-weight: 600; }
.contact-form-box input, .contact-form-box textarea { width: 100%; padding: 14px; background: #1a1a1a; border: 1px solid #333; border-radius: 12px; color: #fff; transition: 0.3s; font-family: 'Inter', sans-serif; }
.contact-form-box input:focus, .contact-form-box textarea:focus { outline: none; border-color: var(--accent-yellow); }
.contact-form-box .btn-primary { width: 100%; padding: 16px; font-size: 1rem; }

/* -----------------------------------------------------------
   REVIEW FORM OVERRIDES (Matching review.php)
   ----------------------------------------------------------- */
.review-container {
    background: #1a1a1a; 
    padding: 45px; 
    border-radius: 24px; 
    border: 1px solid rgba(255,255,255,0.05); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    max-width: 700px; 
    margin: 0 auto 60px auto;
}
.star-box {
    display: flex; 
    gap: 8px; 
    font-size: 2.5rem; 
    color: #444; 
    cursor: pointer;
}
.btn-submit {
    width: 100%; 
    padding: 18px; 
    background: #F4C430; 
    color: #0a0a0a; 
    border: none; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 1rem; 
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(244, 196, 48, 0.25);
    background: #f5cd4a;
}

/* --- Floating WhatsApp & Call Buttons --- */
.whatsapp-float-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 99999; }
.whatsapp-share-btn, .call-float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.whatsapp-share-btn { background: #25D366; }
.whatsapp-share-btn:hover { transform: scale(1.1); background: #1ebd5a; }
.call-float-btn { background: #F4C430; color: #111; }
.call-float-btn:hover { transform: scale(1.1); background: #d4aa20; }

/* -----------------------------------------------------------
   SINGLE IMAGE FADE SLIDER (7 Seconds)
   ----------------------------------------------------------- */
.marketing-section {
    margin: 80px auto;
    max-width: 1100px;
}
.fadeSwiper {
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
    margin-top: 30px;
}
.fade-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.fade-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fade-slide:hover img {
    transform: scale(1.03);
}
.fade-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, rgba(8,8,8,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}
.fade-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}
.fade-pagination .swiper-pagination-bullet-active {
    background: var(--accent-yellow);
    opacity: 1;
}

/* -----------------------------------------------------------
   PREMIUM FOOTER (5 Columns)
   ----------------------------------------------------------- */
.site-footer {
    background: #0c0c0c;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px 0;
    margin-top: 80px;
    font-family: 'Inter', sans-serif;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}
.footer-col p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
}
.footer-contact-item i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 3px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
}
.footer-bottom .dev-credit {
    color: #777;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.footer-bottom .dev-credit strong {
    color: var(--accent-yellow);
    font-weight: 700;
    transition: color 0.3s;
}
.footer-bottom .dev-credit strong:hover {
    color: #fff;
}
.footer-socials {
    display: flex;
    gap: 15px;
}
.footer-socials a {
    color: #555;
    font-size: 1.2rem;
    transition: 0.3s;
}
.footer-socials a:hover {
    color: var(--accent-yellow);
    transform: translateY(-3px);
}

/* --- Responsive Breakpoints (Deduplicated) --- */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
    .menu-layout { grid-template-columns: 1fr; gap: 30px; }
    .menu-sidebar { position: relative; top: 0; margin-bottom: 30px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 4.5rem; }
}
@media (max-width: 900px) {
    .marketing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
    .page-title { font-size: 2.5rem; }
    .items-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.6rem; letter-spacing: 0.5px; }
    .hero-buttons { flex-direction: column; gap: 15px; align-items: center; width: 100%; }
    .hero-buttons a { width: 80%; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .fadeSwiper { height: 350px; }
}
@media (max-width: 600px) {
    .marketing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .fadeSwiper { height: 250px; }
}
@media (max-width: 550px) {
    .nav-glass { padding: 0; }
    .nav-container { flex-direction: column; padding: 10px; gap: 10px; }
    .logo-link { border-right: none; padding-right: 0; margin-right: 0; }
    .nav-logo { height: 40px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { font-size: 0.65rem; letter-spacing: 1px; }
    .hero-3d { height: 80vh; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons a { width: 90%; padding: 12px 20px; font-size: 0.8rem; }
    .items-grid { grid-template-columns: 1fr; gap: 20px; }
    .menu-card { border-radius: 16px; }
    .menu-image { height: 180px; }
    .menu-details { padding: 20px; }
    .menu-details h4 { font-size: 1.1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 250px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-contact-item { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    .whatsapp-float-container { bottom: 15px; right: 15px; }
    .whatsapp-share-btn, .call-float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}