@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #0d0d0d;
    --text-color: #f2f2f2;
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --text-light: #E0E0E0;
    --text-dark: #333333;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s ease;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { background-color: var(--bg-color); color: var(--text-light); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; position: relative; width: 100%; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

h1, h2, h3, h4, .title { font-family: var(--font-heading); font-weight: 700; }
.subtitle { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 15px; }

/* Scroll Animations */
.reveal { opacity: 0; transition: var(--transition-smooth); transition-duration: 1s; }
.reveal.active { opacity: 1; transform: translate(0, 0) scale(1); }
.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-40px); }
.fade-left { transform: translateX(40px); }

/* Buttons */
.btn-solid, .btn-outline {
    display: inline-block; padding: 15px 35px; text-decoration: none; font-weight: 500;
    letter-spacing: 2px; border: none; cursor: pointer; transition: var(--transition-smooth);
    border-radius: 0; font-size: 0.9rem; text-transform: uppercase;
}
.btn-solid { background-color: var(--gold); color: var(--bg-color); }
.btn-solid:hover { background-color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1); }
.btn-outline { background-color: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.3); }
.btn-outline:hover { background-color: var(--gold); color: var(--bg-color); border-color: var(--gold); }
.w-100 { width: 100%; }

/* ------------------------------------------------ */
/* DEDICATED MENU PAGES STYLING                     */
/* ------------------------------------------------ */
.menu-page { background: var(--bg-color); }
.menu-hero { position: relative; height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.silingan-hero { background: linear-gradient(rgba(17,17,17,0.7), rgba(17,17,17,0.9)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&h=900&fit=crop') center/cover; }
.likod-hero { background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,1)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?w=1600&h=900&fit=crop') center/cover; }
.menu-hero-content { position: relative; z-index: 2; padding: 0 20px; }
.menu-hero-content .subtitle { font-family: var(--font-body); letter-spacing: 6px; text-transform: uppercase; color: var(--gold); font-size: 1rem; margin-bottom: 15px; display: block; font-weight: 500; }
.menu-hero-content .title { font-family: var(--font-heading); font-size: 4.5rem; text-transform: uppercase; font-weight: 800; letter-spacing: 2px; margin: 0 0 10px 0; color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.menu-hero-content p { color: #ccc; font-size: 1.2rem; }

.menu-container { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.menu-category { margin-bottom: 80px; }
.category-title { font-family: var(--font-heading); font-size: 2.5rem; color: #fff; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; display: inline-block; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.menu-item-card { background: rgba(25,25,25,0.5); border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.03); transition: var(--transition-smooth); backdrop-filter: blur(10px); display: flex; flex-direction: column; }
.menu-item-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.menu-item-img { width: 100%; height: 220px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); }
.menu-item-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; gap: 15px; }
.menu-item-name { font-family: var(--font-heading); font-size: 1.3rem; margin: 0; color: #fff; font-weight: 600; line-height: 1.3; }
.menu-item-price { font-family: var(--font-body); font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.menu-item-desc { color: #999; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* Vertical App Style Menu Layout */
.menu-layout { display: flex; flex-direction: column; gap: 40px; max-width: 1200px; margin: 0 auto 80px auto; padding: 0 20px; }

/* Pill Text Tabs */
.menu-tabs { position: sticky; top: 155px; background: rgba(17, 17, 17, 0.95); backdrop-filter: blur(10px); padding: 15px 0; z-index: 100; display: flex; gap: 15px; overflow-x: auto; white-space: nowrap; border-bottom: 1px solid rgba(255,255,255,0.05); scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a { display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 10px 25px; color: #aaa; text-decoration: none; font-size: 1rem; font-family: var(--font-heading); transition: var(--transition-smooth); }
.menu-tabs a:hover, .menu-tabs a.active { background: rgba(212, 175, 55, 0.15); border-color: var(--gold); color: var(--gold); }
.silingan-theme .menu-tabs a:hover, .silingan-theme .menu-tabs a.active { background: rgba(255, 140, 0, 0.15); border-color: #ff8c00; color: #ff8c00; }

/* Menu Search */
.menu-search-container { position: sticky; top: 90px; background: rgba(17,17,17,0.95); z-index: 101; padding: 10px 0; }
.menu-search-wrapper { position: relative; max-width: 600px; margin: 0 auto; }
.menu-search-wrapper input { width: 100%; padding: 15px 20px 15px 45px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: 0; }
.menu-search-wrapper input:focus { border-color: var(--gold); outline: none; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.silingan-theme .menu-search-wrapper input:focus { border-color: #ff8c00; }
.search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }

.search-suggestions { position: absolute; top: 100%; left: 0; right: 0; background: rgba(25, 25, 25, 0.98); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-top: none; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; margin: 0; padding: 0; list-style: none; max-height: 300px; overflow-y: auto; display: none; z-index: 1000; box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.search-suggestions.active { display: block; }
.search-suggestions li { padding: 15px 20px; color: #fff; font-family: var(--font-body); font-size: 1rem; cursor: pointer; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; }
.search-suggestions li:last-child { border-bottom: none; }
.search-suggestions li:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.silingan-theme .search-suggestions li:hover { color: #ff8c00; }

/* Menu Content Area */
.menu-content { display: flex; flex-direction: column; gap: 60px; margin-top: 10px; }
.menu-category-header { margin-bottom: 25px; }
.category-title { font-family: var(--font-heading); font-size: 2.2rem; color: #fff; margin: 0 0 5px 0; }
.category-desc { color: #999; font-family: var(--font-body); font-size: 1rem; margin: 0; }

/* Vertical App Card Grid */
.menu-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.app-card { background: rgba(25, 25, 25, 0.6); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.app-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); }

.app-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.app-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.app-card:hover .app-card-img img { transform: scale(1.05); }

.app-card-content { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; gap: 12px; }
.app-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.app-card-title { font-family: var(--font-heading); font-size: 1.25rem; color: #fff; margin: 0; font-weight: 600; line-height: 1.3; }
.app-card-badge { background: rgba(255,255,255,0.1); color: #ccc; font-size: 0.75rem; padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.app-card-desc { color: #999; font-size: 0.9rem; line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.app-card-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 10px; }
.app-card-rating { font-size: 0.85rem; color: #ccc; display: flex; align-items: center; gap: 5px; }
.app-card-rating .star { color: #f5c518; }
.app-card-price { font-family: var(--font-body); font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.silingan-theme .app-card-price { color: #ff8c00; }

.app-card-actions { display: flex; gap: 10px; margin-top: 15px; }
.btn-quick-add { flex-grow: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: var(--bg-color); border: none; padding: 12px; border-radius: 8px; font-weight: 600; font-family: var(--font-body); cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.btn-quick-add:hover { background: #fff; }
.silingan-theme .btn-quick-add { background: #ff8c00; }
.btn-quick-add svg { width: 18px; height: 18px; fill: currentColor; }
.btn-heart { background: rgba(255,255,255,0.05); color: #aaa; border: 1px solid rgba(255,255,255,0.1); width: 45px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: all 0.2s; }
.btn-heart svg { width: 20px; height: 20px; fill: currentColor; }
.btn-heart:hover, .btn-heart.active { background: rgba(255,50,50,0.2); color: #ff4d4d; border-color: rgba(255,50,50,0.3); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-list { grid-template-columns: 1fr 1fr; gap: 15px; }
    .app-card-content { padding: 15px; gap: 8px; }
    .app-card-title { font-size: 1.1rem; }
    .app-card-desc { display: none; /* Hide description on mobile to save space */ }
    .app-card-price { font-size: 1.1rem; }
    .app-card-badge { display: none; }
    .btn-quick-add { font-size: 0.9rem; padding: 10px; }
    .btn-heart { width: 40px; }
}

/* Header */
.header {
    position: fixed; top: 0; width: 100%; padding: 25px 50px; display: flex; justify-content: space-between;
    align-items: center; z-index: 1000; transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(17,17,17,0.9), transparent);
}
.header.scrolled { padding: 15px 50px; background: rgba(17, 17, 17, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); }

.logo a { color: var(--white); text-decoration: none; font-size: 1.5rem; font-weight: 700; letter-spacing: 4px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; transition: var(--transition-smooth); }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }

.header-action { display: flex; gap: 20px; align-items: center; }

/* Mobile Menu Toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 8px; cursor: pointer; z-index: 2000; mix-blend-mode: difference; }
.mobile-toggle span { display: block; width: 35px; height: 1px; background-color: var(--white); transition: var(--transition-smooth); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-only { display: none; }

/* Hero Section */
.hero-section {
    height: 100vh; background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { max-width: 900px; padding: 0 20px; z-index: 2; }
.hero-content .title { font-size: 5.5rem; color: var(--white); margin: 20px 0 30px; line-height: 1.1; font-weight: 400; }
.hero-content .description { font-size: 1.2rem; margin-bottom: 50px; color: #ccc; font-weight: 300; max-width: 600px; margin-inline: auto; }

/* Special Menu */
.special-section { background: var(--bg-color); padding: 120px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.special-carousel-wrapper { overflow-x: auto; scroll-snap-type: x mandatory; width: 100%; padding: 40px 0; margin-top: 20px; scrollbar-width: none; scroll-behavior: smooth; }
.special-carousel-wrapper::-webkit-scrollbar { display: none; }
.special-carousel { display: flex; gap: 40px; padding: 0 20px; }
.menu-card { scroll-snap-align: center; width: 350px; flex-shrink: 0; background: rgba(25,25,25,0.6); border-radius: 16px; overflow: hidden; transition: var(--transition-smooth); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.5); backdrop-filter: blur(10px); }
.menu-card:hover { transform: translateY(-10px); background: rgba(35,35,35,0.8); border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 15px 40px rgba(212,175,55,0.15); }

.img-wrapper { height: 250px; overflow: hidden; position: relative; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; filter: brightness(0.8); }
.menu-card:hover img { transform: scale(1.05); filter: brightness(1); }
.card-content { padding: 25px; }
.menu-card .card-title { font-size: 1.4rem; margin-bottom: 10px; color: var(--white); font-weight: 400; }
.menu-card .card-desc { color: #888; font-size: 0.9rem; margin-bottom: 15px; font-weight: 300; }
.order-link { color: var(--gold); text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid transparent; transition: var(--transition-smooth); display: inline-block; padding-bottom: 5px; }
.menu-card:hover .order-link { border-color: var(--gold); }

/* Pizza Scroll Section */
.pizza-scroll-section { padding: 80px 0; display: flex; justify-content: center; align-items: center; position: relative; z-index: 10; margin-bottom: -50px; }
.pizza-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: -1; }
.pizza-sticky-container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 1; }
.pizza-tagline { display: flex; flex-direction: column; gap: 5px; margin-bottom: 50px; text-align: center; }
.pizza-tagline .small-text { font-size: 1.2rem; font-family: var(--font-body); letter-spacing: 8px; text-transform: uppercase; color: #ddd; font-weight: 300; }
.pizza-tagline .large-text { font-size: 4rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 2px; font-weight: 900; background: linear-gradient(135deg, var(--gold) 0%, #fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 5px 15px rgba(0,0,0,0.8)); }
.spinning-pizza { width: 350px; height: 350px; border-radius: 50%; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.9); border: 8px solid #111; }

/* Areas Section */
.events-section { padding: 150px 0; background: #080808; }
.event-toggles { display: flex; justify-content: center; gap: 40px; margin-top: 50px; margin-bottom: 60px; }
.toggle-btn { background: none; border: none; color: #555; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: var(--transition-smooth); border-bottom: 2px solid transparent; padding-bottom: 5px; }
.toggle-btn.active, .toggle-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }

.tab-content { display: none; animation: fadeIn 0.8s ease; }
.tab-content.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-carousel-wrapper { overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 40px; margin-bottom: 100px; scrollbar-width: none; }
.feature-carousel-wrapper::-webkit-scrollbar { display: none; }
.feature-carousel { display: flex; }
.feature-area { min-width: 100%; scroll-snap-align: center; display: flex; align-items: center; gap: 0; padding-right: 20px; box-sizing: border-box; }
.feature-image { flex: 1.5; overflow: hidden; position: relative; height: 70vh; }
.slideshow img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: crossfade 25s infinite linear; }
.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 5s; }
.slideshow img:nth-child(3) { animation-delay: 10s; }
.slideshow img:nth-child(4) { animation-delay: 15s; }
.slideshow img:nth-child(5) { animation-delay: 20s; }
.slideshow img:only-child { opacity: 1; animation: none; }

@keyframes crossfade {
    0% { opacity: 0; transform: scale(1); z-index: 1; }
    5% { opacity: 1; transform: scale(1.01); z-index: 2; }
    20% { opacity: 1; transform: scale(1.05); z-index: 2; }
    25% { opacity: 0; transform: scale(1.06); z-index: 1; }
    100% { opacity: 0; transform: scale(1.06); z-index: 1; }
}

.feature-text { flex: 1; padding: 60px; background: rgba(17,17,17,0.9); backdrop-filter: blur(20px); margin-left: -80px; z-index: 2; border: 1px solid rgba(255,255,255,0.05); }
.feature-text h3 { font-size: 3rem; margin-bottom: 30px; font-weight: 400; color: var(--white); letter-spacing: 2px; }
.feature-text p { font-size: 1.1rem; color: #aaa; line-height: 1.8; font-weight: 300; }

.menu-list-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.menu-list-title { font-size: 3rem; margin-bottom: 80px; font-weight: 400; color: var(--gold); }
.menu-grid { display: flex; flex-direction: column; gap: 100px; margin-bottom: 80px; }
.menu-list-item { display: flex; gap: 80px; align-items: center; }
.menu-list-item:nth-child(even) { flex-direction: row-reverse; }
.menu-thumb { width: 50%; height: 450px; border-radius: 0; overflow: hidden; flex-shrink: 0; box-shadow: 0 30px 60px rgba(0,0,0,0.6); position: relative; }
.menu-thumb::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212, 175, 55, 0.1); opacity: 0; transition: var(--transition-smooth); pointer-events: none; }
.menu-list-item:hover .menu-thumb::after { opacity: 1; }
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); filter: brightness(0.8) grayscale(20%); }
.menu-list-item:hover .menu-thumb img { transform: scale(1.08); filter: brightness(1.1) grayscale(0%); }
.menu-details { flex: 1; }
.menu-list-item:nth-child(even) .menu-details { text-align: right; }
.menu-list-header { display: flex; flex-direction: column; margin-bottom: 20px; }
.menu-name { font-size: 2.5rem; color: var(--white); font-weight: 400; font-family: var(--font-heading); letter-spacing: 2px; margin-bottom: 10px; transition: color 0.4s; }
.menu-list-item:hover .menu-name { color: var(--gold); }
.menu-price { font-size: 1.5rem; color: var(--gold); font-weight: 400; font-family: var(--font-heading); }
.menu-desc { font-size: 1.1rem; color: #999; font-weight: 300; line-height: 1.8; }

/* Story Section */
.story-section { padding: 150px 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story-images { position: relative; height: 700px; }
.story-images img { position: absolute; object-fit: cover; filter: grayscale(20%); transition: var(--transition-smooth); }
.story-images:hover img { filter: grayscale(0%); }
.img-1 { width: 80%; height: 90%; top: 0; left: 0; z-index: 1; }
.img-2 { width: 50%; height: 50%; bottom: 0; right: 0; z-index: 2; box-shadow: -20px -20px 0 var(--bg-color); }
.story-content p { margin-bottom: 30px; color: #aaa; font-size: 1.1rem; font-weight: 300; }

/* Footer */
.footer { position: relative; padding: 150px 20px 50px; background: #050505; }
.footer .title { font-size: 4rem; margin-bottom: 60px; font-weight: 400; }
.contact-info { display: flex; justify-content: center; gap: 80px; margin-bottom: 60px; }
.contact-item { font-size: 1rem; color: #888; font-weight: 300; letter-spacing: 1px; }

.footer-bottom { margin-top: 120px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
.social-links { display: flex; gap: 40px; }
.social-links a { color: #666; text-decoration: none; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; transition: var(--transition-smooth); }
.social-links a:hover { color: var(--gold); }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 3000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; backdrop-filter: blur(10px); }
.modal.active { display: flex; opacity: 1; }
.modal-content { padding: 60px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; position: relative; background: #111; border: 1px solid rgba(255,255,255,0.1); transform: scale(0.95); transition: transform 0.4s ease; }
.modal.active .modal-content { transform: scale(1); }
.close-btn { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; color: #666; font-weight: 300; cursor: pointer; transition: color 0.3s; }
.close-btn:hover { color: var(--gold); }
input { width: 100%; padding: 15px 0; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2); color: var(--white); font-family: var(--font-body); font-size: 1rem; margin-bottom: 30px; transition: border-color 0.3s; }
input:focus { outline: none; border-color: var(--gold); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-content .title { font-size: 4rem; }
    .story-grid { gap: 40px; }
    .feature-text { margin-left: -50px; padding: 40px; }
}

@media (max-width: 768px) {
    .hero-section { background-attachment: scroll; }
    .pizza-scroll-section { background-attachment: scroll !important; }
    .header { padding: 20px; }
    .desktop-only { display: none; }
    
    /* Full Screen Overlay Menu */
    .mobile-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: var(--bg-color); flex-direction: column; justify-content: center;
        align-items: center; gap: 30px; opacity: 0; visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s; z-index: 1500;
    }
    .nav-links.active { opacity: 1; visibility: visible; }
    .nav-links a { font-size: 2.5rem; font-family: var(--font-heading); text-transform: capitalize; opacity: 0; transform: translateY(30px); transition: all 0.5s ease; }
    .nav-links.active a { opacity: 1; transform: translateY(0); }
    .nav-links button { opacity: 0; transform: translateY(30px); transition: all 0.5s ease; transition-delay: 0.5s; }
    .nav-links.active button { opacity: 1; transform: translateY(0); }
    .mobile-only { display: inline-block; margin-top: 30px; width: auto; }
    
    .hero-content .title { font-size: 3rem; }
    .menu-hero-content .title { font-size: 2.5rem; letter-spacing: 1px; }
    .menu-hero-content .subtitle { font-size: 0.85rem; letter-spacing: 4px; }
    .menu-hero-content p { font-size: 1rem; }
    /* Horizontal Swipe Carousel */
    .special-section { padding: 100px 0; }
    .special-section .section-header { padding: 0 20px; text-align: left; }
    .special-carousel { gap: 20px; padding: 0 20px; }
    .menu-card { min-width: 85vw; width: 85vw; scroll-snap-align: center; }
    
    /* Areas Mobile */
    .events-section { padding: 100px 20px; }
    .feature-area { flex-direction: column; margin-bottom: 60px; padding-right: 0; }
    .feature-image { flex: none; width: 100%; height: 60vh; min-height: 60vh; position: relative; }
    .feature-text { margin: -60px 20px 0 20px; padding: 30px; text-align: center; position: relative; z-index: 5; }
    .feature-text h3 { font-size: 2.2rem; margin-bottom: 15px; }
    
    .menu-list-wrapper { padding: 0; }
    .menu-grid { display: flex; flex-direction: column; gap: 60px; }
    .menu-list-item { flex-direction: row; gap: 20px; text-align: left; }
    .menu-list-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
    .menu-thumb { width: 45%; height: 250px; margin-left: -20px; }
    .menu-list-item:nth-child(even) .menu-thumb { margin-left: 0; margin-right: -20px; }
    .menu-details { padding: 0; }
    .menu-list-header { flex-direction: column; align-items: flex-start; margin-bottom: 10px; }
    .menu-list-item:nth-child(even) .menu-list-header { align-items: flex-end; }
    .menu-name { font-size: 1.4rem; letter-spacing: 1px; margin-bottom: 5px; }
    .menu-price { font-size: 1.1rem; }
    .menu-desc { font-size: 0.85rem; line-height: 1.5; }
    
    .pizza-tagline { margin-bottom: 30px; padding: 0 20px; }
    .pizza-tagline .small-text { font-size: 0.85rem; letter-spacing: 4px; }
    .pizza-tagline .large-text { font-size: 2.5rem; letter-spacing: 1px; }
    .spinning-pizza { width: 300px; height: 300px; border-width: 10px; }
    
    /* Story Layout */
    .story-section { padding: 100px 20px; }
    .story-grid { grid-template-columns: 1fr; gap: 60px; }
    .story-images { height: 100vw; max-height: 500px; }
    .img-1 { width: 100%; height: 100%; }
    .img-2 { display: none; }
    .story-content { text-align: center; }
    
    /* Footer */
    .footer .title { font-size: 2.5rem; }
    .contact-info { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 30px; margin-top: 80px; }
    
    .modal-content { padding: 40px 20px; }
}

/* Food Item Modal (Food Panda Style) */
.food-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 2000; display: flex; justify-content: center; align-items: flex-end; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.food-modal-overlay.active { opacity: 1; visibility: visible; }

.food-modal { background: #1a1a1a; width: 100%; max-width: 600px; max-height: 90vh; border-radius: 24px 24px 0 0; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; box-shadow: 0 -10px 40px rgba(0,0,0,0.5); }
.food-modal-overlay.active .food-modal { transform: translateY(0); }

.food-modal-close { position: absolute; top: 15px; right: 15px; width: 40px; height: 40px; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; z-index: 10; font-size: 1.5rem; transition: background 0.2s; }
.food-modal-close:hover { background: rgba(0,0,0,0.8); }

.food-modal-hero { width: 100%; height: 250px; background: #111; position: relative; flex-shrink: 0; }
.food-modal-hero img { width: 100%; height: 100%; object-fit: cover; }

.food-modal-content { padding: 25px; overflow-y: auto; flex-grow: 1; padding-bottom: 100px; /* space for sticky footer */ }
.food-modal-title { font-family: var(--font-heading); font-size: 1.8rem; color: #fff; margin-bottom: 10px; }
.food-modal-desc { color: #aaa; font-family: var(--font-body); font-size: 1rem; line-height: 1.5; margin-bottom: 25px; }

.food-modal-section-title { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.food-modal-section-title span { font-family: var(--font-body); font-size: 0.85rem; color: #888; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 20px; }

.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; }
.addon-info { display: flex; flex-direction: column; gap: 5px; }
.addon-name { color: #eee; font-family: var(--font-body); font-size: 1.05rem; }
.addon-price { color: var(--gold); font-size: 0.9rem; }
.silingan-theme .addon-price { color: #ff8c00; }
.modern-checkbox { appearance: none; -webkit-appearance: none; width: 22px; height: 22px; border: 2px solid rgba(255,255,255,0.3); border-radius: 6px; background: transparent; display: inline-block; transition: all 0.2s; cursor: pointer; flex: 0 0 auto; margin: 0; }
.modern-checkbox:checked { background-color: var(--gold); border-color: var(--gold); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; }
.silingan-theme .modern-checkbox:checked { background-color: #ff8c00; border-color: #ff8c00; }
.modern-radio { border-radius: 50%; }
.modern-radio:checked { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3C/svg%3E"); background-size: 14px; background-position: center; background-repeat: no-repeat; }

.special-instructions { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 15px; color: #fff; font-family: var(--font-body); font-size: 1rem; resize: none; margin-bottom: 20px; }
.special-instructions:focus { outline: none; border-color: var(--gold); }
.silingan-theme .special-instructions:focus { border-color: #ff8c00; }

.qty-row { display: flex; justify-content: center; align-items: center; gap: 25px; margin: 30px 0; }
.qty-btn { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; user-select: none; }
.qty-btn:hover { background: rgba(255,255,255,0.2); }
.qty-val { font-size: 1.5rem; font-family: var(--font-heading); color: #fff; font-weight: bold; width: 40px; text-align: center; }

.food-modal-footer { position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px 20px; background: rgba(26,26,26,0.95); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.1); z-index: 20; display: flex; align-items: center; gap: 15px; }
.quantity-selector { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.qty-value { font-size: 1.2rem; font-family: var(--font-heading); color: #fff; font-weight: bold; width: 25px; text-align: center; }
.btn-add-to-cart { flex-grow: 1; display: flex; justify-content: center; gap: 10px; align-items: center; background: var(--gold); color: #000; padding: 15px 20px; border-radius: 12px; font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; transition: background 0.2s; border: none; font-weight: bold; }
.silingan-theme .btn-add-to-cart { background: #ff8c00; }
.btn-add-to-cart:hover { background: #fff; }

@media (min-width: 769px) {
    .food-modal-overlay { align-items: center; }
    .food-modal { border-radius: 24px; max-height: 85vh; transform: scale(0.9); }
    .food-modal-overlay.active .food-modal { transform: scale(1); }
    .food-modal-hero { height: 300px; }
}

/* Floating Cart Button */
.floating-cart-btn { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 400px; background: var(--gold); color: #000; padding: 15px 25px; border-radius: 30px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; cursor: pointer; box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3); font-family: var(--font-heading); font-size: 1.1rem; transition: transform 0.2s, box-shadow 0.2s; }
.silingan-theme .floating-cart-btn { background: #ff8c00; box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3); }
.floating-cart-btn:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4); }
.silingan-theme .floating-cart-btn:hover { box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4); }
.cart-btn-left { display: flex; align-items: center; gap: 15px; }
.cart-icon-wrapper { position: relative; display: flex; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: #000; color: #fff; font-size: 0.75rem; font-family: var(--font-body); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.cart-btn-price { font-weight: bold; }

/* Cart Sidebar */
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; top: 0; right: 0; width: 100%; max-width: 400px; height: 100%; background: #111; z-index: 2001; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
.cart-sidebar.active { transform: translateX(0); }

.cart-header { padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.cart-header h2 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin: 0; }
.close-cart { width: 35px; height: 35px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 1.5rem; cursor: pointer; transition: background 0.2s; }
.close-cart:hover { background: rgba(255,255,255,0.2); }

.cart-items-container { flex-grow: 1; overflow-y: auto; padding: 25px; display: flex; flex-direction: column; gap: 20px; }
.cart-empty-msg { text-align: center; color: #888; font-family: var(--font-body); font-size: 1rem; margin-top: 50px; }

.cart-item { display: flex; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 20px; }
.cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: #222; }
.cart-item-details { flex-grow: 1; display: flex; flex-direction: column; gap: 5px; }
.cart-item-title { font-family: var(--font-heading); font-size: 1.1rem; color: #fff; margin: 0; display: flex; justify-content: space-between; }
.cart-item-remove { color: #888; font-size: 1.2rem; cursor: pointer; line-height: 1; }
.cart-item-remove:hover { color: #ff4444; }
.cart-item-addons { color: #888; font-family: var(--font-body); font-size: 0.85rem; line-height: 1.4; margin: 0; }
.cart-item-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; }
.cart-item-price { color: var(--gold); font-weight: bold; font-family: var(--font-body); }
.silingan-theme .cart-item-price { color: #ff8c00; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); padding: 5px; border-radius: 8px; }
.cart-qty-btn { width: 24px; height: 24px; background: rgba(255,255,255,0.1); border-radius: 4px; display: flex; justify-content: center; align-items: center; color: #fff; cursor: pointer; user-select: none; font-size: 1rem; }
.cart-qty-btn:hover { background: rgba(255,255,255,0.2); }
.cart-qty-val { color: #fff; font-family: var(--font-heading); font-size: 0.9rem; width: 15px; text-align: center; }

.cart-footer { padding: 25px; border-top: 1px solid rgba(255,255,255,0.1); background: #1a1a1a; flex-shrink: 0; }
.cart-summary-row { display: flex; justify-content: space-between; color: #fff; font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 20px; }
.cart-summary-row span:last-child { font-weight: bold; font-family: var(--font-heading); font-size: 1.3rem; }
.btn-checkout { width: 100%; display: flex; justify-content: space-between; align-items: center; background: var(--gold); color: #000; padding: 18px 25px; border-radius: 16px; font-family: var(--font-heading); font-size: 1.2rem; cursor: pointer; transition: background 0.2s; border: none; }
.silingan-theme .btn-checkout { background: #ff8c00; }
.btn-checkout:hover { background: #fff; }

/* Invert calendar icon for dark theme */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

