/* ===== MANGALCIM - ANA SITE CSS ===== */
:root {
    --primary: #0d0d0d;
    --secondary: #1a1a1a;
    --card-bg: #1e1e1e;
    --accent: #e85d04;
    --accent-light: #f48c06;
    --accent-dark: #c44c00;
    --text: #f5f5f5;
    --text-muted: #a0a0a0;
    --border: #2e2e2e;
    --success: #28a745;
    --gradient: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232,93,4,0.2);
    transition: all 0.3s;
}
.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(232,93,4,0.15);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 900;
    color: var(--text);
    display: flex; align-items: center; gap: 0.5rem;
}
.navbar-brand i { color: var(--accent); font-size: 1.6rem; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-links a {
    padding: 0.5rem 1rem; border-radius: 6px;
    font-size: 0.95rem; font-weight: 500;
    color: var(--text-muted); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(232,93,4,0.1); }
.nav-phone {
    background: var(--gradient) !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.2rem !important;
    font-weight: 600 !important;
}
.nav-phone:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-toggle {
    display: none; background: none; border: none;
    cursor: pointer; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 2rem; border-radius: 8px;
    background: var(--gradient); color: #fff;
    font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer;
    transition: all 0.3s; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,93,4,0.4); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 2rem; border-radius: 8px;
    border: 2px solid var(--accent); color: var(--accent);
    font-weight: 600; font-size: 0.95rem;
    background: transparent; transition: all 0.3s;
}
.btn-outline:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-sm {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 1rem; border-radius: 6px;
    background: var(--gradient); color: #fff;
    font-size: 0.85rem; font-weight: 600; transition: all 0.2s;
}
.btn-sm:hover { opacity: 0.85; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0800 50%, #0d0d0d 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,93,4,0.15) 0%, transparent 70%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px; padding: 2rem 1.5rem;
    margin-top: 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1.2rem; border-radius: 25px;
    background: rgba(232,93,4,0.15); border: 1px solid rgba(232,93,4,0.3);
    color: var(--accent-light); font-size: 0.9rem; font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 1.5rem;
    color: var(--text);
}
.accent { color: var(--accent); }
.hero-content p {
    font-size: 1.1rem; color: var(--text-muted);
    max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
    padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stats .stat span { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--accent); display: block; }
.hero-stats .stat p { font-size: 0.85rem; color: var(--text-muted); }
.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.hero-scroll a { color: var(--accent-light); font-size: 1.5rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Features ── */
.features { padding: 5rem 0; background: var(--secondary); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.feature-card {
    background: var(--card-bg); border-radius: 12px; padding: 2rem;
    text-align: center; border: 1px solid var(--border); transition: all 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,93,4,0.15); }
.feature-icon { width: 60px; height: 60px; background: rgba(232,93,4,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: var(--accent); }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 1rem; border-radius: 25px; background: rgba(232,93,4,0.1); border: 1px solid rgba(232,93,4,0.2); color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 0.8rem; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ── Featured Products ── */
.featured-products { padding: 5rem 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; }
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(232,93,4,0.15); }
.product-image { height: 200px; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a0800, #2d1000); font-size: 3rem; color: var(--accent); }
.product-category { position: absolute; top: 1rem; right: 1rem; background: var(--accent); color: #fff; padding: 0.25rem 0.8rem; border-radius: 25px; font-size: 0.75rem; font-weight: 600; }
.product-info { padding: 1.2rem; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 1.3rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; }

/* ── About Preview ── */
.about-preview { padding: 5rem 0; background: var(--secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-img-placeholder { background: linear-gradient(135deg, #1a0800, #2d1000); border-radius: 16px; height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--border); }
.about-badge-float { position: absolute; bottom: -1rem; right: -1rem; background: var(--gradient); color: #fff; padding: 1rem 1.5rem; border-radius: 12px; display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; }
.about-badge-float i { font-size: 1.8rem; }
.about-text .section-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 1rem; border-radius: 25px; background: rgba(232,93,4,0.1); border: 1px solid rgba(232,93,4,0.2); color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 1.2rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.5rem 0; }
.about-features div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.about-features i { color: var(--accent); }

/* ── CTA Banner ── */
.cta-banner { padding: 5rem 0; background: linear-gradient(135deg, #1a0800 0%, #2d1000 50%, #1a0800 100%); position: relative; text-align: center; overflow: hidden; }
.cta-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,93,4,0.2) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.cta-content p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Page Hero ── */
.page-hero { min-height: 40vh; display: flex; align-items: center; justify-content: center; position: relative; background: linear-gradient(135deg, #0d0d0d, #1a0800); overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(232,93,4,0.2) 0%, transparent 70%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; margin-top: 80px; padding: 3rem 1.5rem; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.8rem; }
.page-hero-content p { color: var(--text-muted); font-size: 1.1rem; }

/* ── Menu Page ── */
.menu-section { padding: 4rem 0; }
.menu-category { margin-bottom: 3rem; }
.category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.category-header h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; white-space: nowrap; }
.category-header h2 i { color: var(--accent); }
.category-line { flex: 1; height: 1px; background: var(--border); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.2rem; }
.menu-item { display: flex; gap: 1rem; background: var(--card-bg); border-radius: 12px; padding: 1.2rem; border: 1px solid var(--border); transition: all 0.3s; }
.menu-item:hover { border-color: var(--accent); transform: translateX(4px); }
.menu-item-image { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-placeholder { width: 80px; height: 80px; border-radius: 8px; background: linear-gradient(135deg, #1a0800, #2d1000); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--accent); }
.menu-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.menu-item-header h3 { font-size: 1rem; }
.menu-price { font-size: 1.1rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; white-space: nowrap; }
.menu-item-info p { color: var(--text-muted); font-size: 0.85rem; }

/* ── Gallery Page ── */
.gallery-section { padding: 4rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--card-bg); border: 1px solid var(--border); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--accent); background: linear-gradient(135deg, #1a0800, #2d1000); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; }

/* ── About Page ── */
.about-section { padding: 4rem 0; }
.about-story { margin-bottom: 4rem; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.story-text p { color: var(--text-muted); margin-bottom: 1rem; }
.story-values { display: flex; flex-direction: column; gap: 1.2rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--card-bg); border-radius: 10px; padding: 1rem; border: 1px solid var(--border); }
.value-item i { color: var(--accent); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.value-item h4 { margin-bottom: 0.2rem; }
.value-item p { color: var(--text-muted); font-size: 0.9rem; }
.stats-section { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; background: linear-gradient(135deg, #1a0800, #2d1000); border-radius: 16px; padding: 3rem; border: 1px solid rgba(232,93,4,0.2); }
.stat-box { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--accent); display: block; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ── Contact Page ── */
.contact-section { padding: 4rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2, .contact-map h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 45px; height: 45px; background: rgba(232,93,4,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-item p a { color: var(--text); } .contact-item p a:hover { color: var(--accent); }
.social-contact { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: all 0.2s; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.facebook { background: #1877f2; color: #fff; }
.whatsapp { background: #25d366; color: #fff; }
.social-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.map-container { border-radius: 12px; overflow: hidden; margin-bottom: 1rem; }
.map-cta { text-align: center; }

/* ── Footer ── */
.footer { background: #0a0a0a; padding: 4rem 0 0; border-top: 1px solid var(--border); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; }
.footer-brand i { color: var(--accent); }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.5rem; }
.footer-col h4 { color: var(--accent); margin-bottom: 1rem; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.social-links { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-links a { width: 38px; height: 38px; background: var(--card-bg); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer-bottom { text-align: center; padding: 1.5rem; margin-top: 3rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* ── Misc ── */
.text-center { text-align: center; }
.empty-state { text-align: center; padding: 4rem; color: var(--text-muted); }
.empty-state i { font-size: 4rem; color: var(--accent); display: block; margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 70px; right: -100%; width: 70%; height: calc(100vh - 70px); background: var(--secondary); flex-direction: column; align-items: flex-start; padding: 2rem; gap: 0.5rem; transition: right 0.3s; border-left: 1px solid var(--border); }
    .nav-links.open { right: 0; }
    .about-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    .about-badge-float { display: none; }
}
