:root {
    --bg-main: #0b0b0b;
    --bg-section: #111111;
    --bg-card: #1a1a1a;
    --text-main: #f5f5f5;
    --text-muted: #b5b5b5;
    --primary-red: #e10600;
    --primary-red-dark: #b00400;
    --accent-green: #3ddc84;
    --border-soft: rgba(255, 255, 255, 0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden !important; height: 100vh; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 10; }
.section { padding: 100px 0; }
.bg-section { background-color: var(--bg-section); }

.grain::before {
    content: "";
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04; z-index: 9999; pointer-events: none;
}

.navbar {
    position: fixed; top: 0; width: 100%; height: 90px;
    background: rgba(11, 11, 11, 0.85); backdrop-filter: blur(10px);
    z-index: 1000; display: flex; align-items: center;
    border-bottom: 1px solid var(--border-soft); transition: var(--transition);
}
.navbar.scrolled { height: 70px; background: rgba(11, 11, 11, 0.95); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: white; }
.logo span { color: var(--primary-red); }
.nav-menu a { margin: 0 15px; color: var(--text-muted); font-weight: 500; transition: var(--transition); }
.nav-menu a:hover { color: var(--primary-red); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { display: block; width: 28px; height: 3px; background: white; margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.hero {
    min-height: 95vh; display: flex; align-items: center;
    padding-top: 100px; position: relative; overflow: hidden;
    background-color: #000;
}
.hero-parallax-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 130%;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.7)), url('../img/hero-bg.webp');
    background-size: cover; background-position: center;
    z-index: 1; will-change: transform;
}
.hero-content { display: flex; flex-direction: row; align-items: center; gap: 40px; width: 100%; z-index: 5; }
.hero-text { flex: 1; }
.hero-visual { flex: 1; display: flex; justify-content: flex-end; }
.floating-img { width: 100%; max-width: 550px; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
h1 { font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 0.9; margin-bottom: 24px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.text-outline { -webkit-text-stroke: 1px white; color: transparent; }
.hero-sub { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; }
.hero-badge { display: inline-block; padding: 6px 16px; background: var(--border-soft); border-radius: 100px; font-size: 0.8rem; margin-bottom: 20px; color: var(--accent-green); border: 1px solid rgba(61, 220, 132, 0.2); }

.btn {
    display: inline-flex; padding: 14px 32px; border-radius: 12px;
    font-weight: 700; transition: var(--transition); cursor: pointer;
    border: none; align-items: center; transform-origin: center;
}
.btn-primary { background: var(--primary-red); color: white; box-shadow: 0 10px 20px rgba(225, 6, 0, 0.3); }
.btn-primary:hover { background: var(--accent-green); color: #0b0b0b; transform: scale(1.05); box-shadow: 0 15px 30px rgba(61, 220, 132, 0.4); }
.btn-outline { border: 2px solid var(--border-soft); color: white; background: rgba(255,255,255,0.05); backdrop-filter: blur(5px); }
.btn-outline:hover { background: var(--primary-red); border-color: var(--primary-red); color: white; transform: scale(1.05); box-shadow: 0 15px 30px rgba(225, 6, 0, 0.3); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.section-title { font-family: var(--font-heading); font-size: 2.5rem; text-align: center; margin-bottom: 50px; }
.section-title span { color: var(--primary-red); }
.accordion-grid { display: grid; gap: 20px; max-width: 900px; margin: 0 auto; }
.menu-card { background: var(--bg-card); border-radius: 20px; border: 1px solid var(--border-soft); overflow: hidden; transition: var(--transition); }
.menu-card:hover { border-color: rgba(225, 6, 0, 0.3); transform: translateY(-4px); }
.accordion-trigger { width: 100%; padding: 25px 30px; display: flex; justify-content: space-between; background: none; border: none; color: white; cursor: pointer; font-family: var(--font-heading); font-size: 1.2rem; align-items: center; outline: none; gap: 10px; text-align: left; }
.accordion-trigger .cat-title { flex: 1; min-width: 0; word-wrap: break-word; }
.accordion-trigger:focus-visible { outline: 2px solid var(--primary-red); outline-offset: -2px; border-radius: 12px; }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.4);
}
.cat-subtitle { display: block; font-size: 0.75rem; color: var(--text-dim); font-family: var(--font-body); font-weight: 400; margin-top: 2px; }
.menu-items { padding: 10px 0; }
.menu-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 25px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
.menu-row b { color: var(--primary-red); font-weight: 600; }
.menu-row > span:last-child { white-space: nowrap; text-align: right; flex-shrink: 0; min-width: fit-content; }
.dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.2); margin: 0 10px; height: 14px; min-width: 10px; }
.faq-text {
    padding: 30px 30px 35px;
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

.about-card {
    max-width: 800px; margin: 0 auto; background: var(--bg-card);
    border: 1px solid var(--border-soft); border-radius: 20px;
    padding: 50px 45px; text-align: center;
}
.about-heading {
    font-family: var(--font-heading); font-size: 1.8rem; color: white;
    margin-bottom: 30px;
}
.about-card p {
    color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; font-size: 1rem;
}
.about-cta {
    font-size: 1.15rem !important; color: var(--accent-green) !important;
    font-weight: 600; margin-top: 30px !important;
}
.about-sign {
    margin-top: 10px !important; color: var(--text-muted);
}
.about-sign strong { color: white; font-size: 1.05rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: stretch; }
.contact-details { display: flex; flex-direction: column; justify-content: flex-start; gap: 20px; }
.contact-card { display: flex; align-items: center; gap: 20px; background: var(--bg-card); padding: 25px; border-radius: 20px; border: 1px solid var(--border-soft); transition: var(--transition); margin: 0; }
.contact-card:hover { border-color: var(--primary-red); transform: translateX(5px); }
.contact-icon-box { font-size: 1.5rem; background: rgba(225,6,0,0.1); padding: 15px; border-radius: 12px; color: var(--primary-red); display: flex; align-items: center; justify-content: center; }
.contact-link, .contact-address { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: white; }
.contact-text small { color: var(--accent-green); text-transform: uppercase; font-weight: 700; font-size: 0.7rem; display: block; margin-bottom: 5px; }
.contact-map-wrapper { min-height: 450px; }
.contact-map-wrapper iframe { height: 100%; border-radius: 24px; filter: grayscale(1) invert(0.9); }

.gallery-wrapper { position: relative; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-auto-rows: 250px; gap: 20px; }
.gallery-item { border-radius: 20px; overflow: hidden; cursor: zoom-in; position: relative; border: 1px solid var(--border-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(225, 6, 0, 0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; backdrop-filter: blur(4px); }
.gallery-overlay span { color: white; border: 2px solid white; padding: 8px 16px; font-weight: 800; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.size-large { grid-column: span 2; grid-row: span 2; }
.gallery-item.size-wide { grid-column: span 2; }
.gallery-item.size-tall { grid-row: span 2; }
.gallery-dots { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 11000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.lightbox.active { display: flex; }
.lightbox-content img { max-width: 90%; max-height: 80vh; border-radius: 12px; box-shadow: 0 0 50px rgba(225,6,0,0.2); }
.lightbox-close { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: white; background: none; border: none; cursor: pointer; }

.site-footer { background-color: #050505; border-top: 1px solid var(--border-soft); padding: 80px 0 30px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); margin-bottom: 25px; max-width: 300px; }
.footer-contact .fc-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.fc-icon { width: 35px; height: 35px; background: rgba(225, 6, 0, 0.1); color: var(--primary-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.footer-contact a { font-weight: 700; transition: 0.3s; }
.footer-contact a:hover { color: var(--primary-red); }
.footer-col h4 { color: white; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links button { background: none; border: none; padding: 0; color: var(--text-muted); cursor: pointer; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.footer-links button:hover { color: var(--primary-red); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: var(--primary-red); }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 8px; color: var(--text-main); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; }
.social-link:hover { background: var(--primary-red); border-color: var(--primary-red); color: white; }

.modal { position: fixed; inset: 0; z-index: 12000; display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; animation: fadeIn 0.3s ease; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); }
.modal-container { background: var(--bg-card); width: 90%; max-width: 600px; padding: 40px; border-radius: 20px; border: 1px solid var(--border-soft); position: relative; z-index: 12001; max-height: 80vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 2rem; cursor: pointer; line-height: 1; transition: 0.3s; }
.modal-close:hover { color: var(--primary-red); }
.modal h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; color: white; }
.modal-body p { margin-bottom: 15px; color: var(--text-muted); }
.modal-body strong { color: white; }

.cookie-overlay { position: fixed; inset: 0; background: #000; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.cookie-card { background: var(--bg-card); padding: 50px; border-radius: 30px; text-align: center; border: 1px solid var(--border-soft); max-width: 450px; }

@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-visual { order: -1; }
    .hero-btns { justify-content: center; }
    .about-card { padding: 35px 25px; }
    .dots { display: none; }
    .menu-row { gap: 12px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    h1 { font-size: 3.5rem; }

    .hamburger { display: block; }
    .nav-cta { display: none; }
    .nav-menu {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(11, 11, 11, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center; gap: 0; z-index: 999;
    }
    .nav-menu.open { display: flex; animation: fadeIn 0.3s ease; }
    .nav-menu a { margin: 0; padding: 20px 0; font-size: 1.5rem; color: white; font-family: var(--font-heading); font-weight: 700; }
    .nav-menu a:hover { color: var(--primary-red); }

    .gallery-wrapper { overflow: hidden; }
    .gallery-grid {
        display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item {
        flex: 0 0 85%; scroll-snap-align: center; border-radius: 16px;
        height: 300px; margin: 0 8px;
    }
    .gallery-item.size-large, .gallery-item.size-wide, .gallery-item.size-tall {
        grid-column: auto; grid-row: auto;
    }
    .gallery-item:first-child { margin-left: 0; }
    .gallery-item:last-child { margin-right: 0; }
    .gallery-overlay { display: none; }
    .gallery-dots {
        display: flex; justify-content: center; gap: 8px; margin-top: 20px;
    }
    .gallery-dot {
        width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0;
        background: rgba(255, 255, 255, 0.25); cursor: pointer; transition: var(--transition);
    }
    .gallery-dot.active { background: var(--primary-red); transform: scale(1.3); }
}

@media (max-width: 480px) {
    .gallery-item { flex: 0 0 92%; height: 260px; }
    h1 { font-size: 2.5rem; }
    .hero-sub { font-size: 1rem; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }