/* --- VARIABLES & DESIGN TOKENS --- */
:root {
    /* Colors */
    --color-bg-main: #060606;
    --color-bg-darker: #020202;
    --color-bg-card: #0c0c0c;
    --color-primary-gold: #D4AF37; /* Premium Gold */
    --color-primary-gold-hover: #F3E5AB;
    --color-text-light: #F8F8F8;
    --color-text-muted: #9E9E9E;
    --color-border: #2A2A2A;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-gold);
}

/* Selection */
::selection {
    background: var(--color-primary-gold);
    color: var(--color-bg-main);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none; /* For Custom Cursor */
}

/* --- CUSTOM CURSOR --- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary-gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-outline.hovering {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-gold);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 8rem 0;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-muted);
}

.small {
    font-size: 0.85rem;
}

.mt-2 { margin-top: 0.5rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary-gold);
    margin-bottom: 2rem;
}

.gold-icon {
    stroke: var(--color-primary-gold);
    margin-bottom: 1rem;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary-gold);
    color: var(--color-bg-main);
}

.btn-primary:hover {
    background-color: var(--color-primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    letter-spacing: 2.5px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary-gold);
    border-color: var(--color-primary-gold);
}

.btn-outline:hover {
    background-color: var(--color-primary-gold);
    color: var(--color-bg-main);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-al {
    color: var(--color-text-light);
}

.logo-arbania {
    color: var(--color-primary-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-light);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.hamburger.toggle .line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.toggle .line:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle .line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-darker);
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(6, 6, 6, 0.95) 0%, rgba(6, 6, 6, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.text-gold {
    color: var(--color-primary-gold);
}

.hero p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

/* --- ABOUT SECTION --- */
.staggered-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-primary-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.about-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.parallax-img-container {
    overflow: hidden;
    height: 600px;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.parallax-img {
    height: 120%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    will-change: transform;
}

.image-frame {
    position: relative;
    height: 100%;
}

/* --- MENU SECTION --- */
.menu h2 {
    font-size: 3.5rem;
}

.menu-subtitle {
    margin-bottom: 5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    text-align: left;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.category-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.menu-category h3 {
    font-size: 2.5rem;
    margin-bottom: 0;
    color: var(--color-text-light);
}

.dish-list {
    list-style: none;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.dish-list li {
    margin-bottom: 2.5rem;
}

.dish-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-gold);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
}

.dish-info p {
    color: var(--color-text-muted);
    font-size: 1.0rem;
}

/* --- EXTENDED MENU STYLES --- */
.menu-section-header {
    text-align: center;
    margin: 4rem 0 2rem 0;
}
.menu-section-header h3 {
    font-size: 2.5rem;
    color: var(--color-primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    gap: 1rem;
}
.dish-header h4 {
    margin-bottom: 0;
    flex: 1;
}
.dish-price {
    color: var(--color-primary-gold);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* --- GALLERY SECTION --- */
.mb-5 { margin-bottom: 3rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) sepia(20%); /* Heritage feel */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 6, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-overlay span {
    color: var(--color-primary-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Larger */
    font-weight: 600;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%) sepia(0%);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-text-light);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-primary-gold);
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    text-align: left;
}

.info-item {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.info-item:hover {
    border-color: var(--color-primary-gold);
    transform: translateY(-5px);
}

.info-item h4 {
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--color-text-muted);
}

/* --- CUSTOM FORM --- */
.custom-form-wrapper {
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-block {
    width: 100%;
    display: block;
}

/* --- FOOTER --- */
footer {
    background-color: #000;
    padding: 4rem 0 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary-gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-card);
    color: var(--color-primary-gold);
    border: 1px solid var(--color-border);
}

.social-icon:hover {
    background: var(--color-primary-gold);
    color: var(--color-bg-main);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: #050505;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.7);
}

/* --- ANIMATIONS & UTILS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- INTERACTIVE MENU ACCORDIONS & QUICK JUMP --- */
.quick-jump-nav {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    margin-bottom: 2rem;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg-darker);
    margin-top: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.quick-jump-nav::-webkit-scrollbar {
    display: none;
}
.jump-pill {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.jump-pill.active, .jump-pill:hover {
    background: var(--color-primary-gold);
    color: var(--color-bg-main);
    border-color: var(--color-primary-gold);
}

.accordion-header {
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}
.accordion-header:hover {
    background: rgba(212, 175, 55, 0.05);
}
.accordion-header .chevron-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--color-primary-gold);
}
.accordion-header.active .chevron-icon {
    transform: translateY(-50%) rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 1rem;
}
.accordion-content.active {
    transition: max-height 0.6s ease-in-out;
}

/* --- RESPONSIVE DESIGN --- */
@media screen and (max-width: 1024px) {
    .staggered-layout, .menu-grid, .contact-grid { gap: 3rem; }
    .hero h1 { font-size: 4.5rem; }
}

@media screen and (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
    .about-image { margin-top: 2rem; }
}

@media screen and (max-width: 768px) {
    .section-padding { padding: 5rem 0; }
    .hamburger { display: block; z-index: 1001; }
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh; width: 75%;
        background-color: var(--color-bg-main); flex-direction: column;
        justify-content: center; align-items: center; transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .menu-grid { grid-template-columns: 1fr; gap: 4rem; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    
    .custom-form-wrapper { padding: 1.5rem; }
    .toast { width: 90%; max-width: 400px; font-size: 0.9rem; padding: 1rem; justify-content: center; text-align: center; }
    .toast.show { bottom: 20px; }
    
    /* Footer Stacking */
    .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .footer-links { text-align: center; }
}

@media screen and (max-width: 480px) {
    .section-padding { padding: 4rem 0; }
    .hero h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
    h2 { font-size: 2rem !important; }
    
    .menu-section-header h3 { font-size: 1.8rem; }
    .menu-category h3 { font-size: 1.6rem; }
    .category-header { display: flex; flex-direction: column; text-align: center; align-items: center; gap: 0.5rem; }
    .category-img { margin-bottom: 0.5rem; }
    
    .dish-list { padding-left: 0; border-left: none; }
    .dish-header { flex-direction: column; align-items: flex-start; gap: 0.3rem; border-bottom: 1px solid rgba(212, 175, 55, 0.1); padding-bottom: 0.5rem; }
    .dish-price { font-size: 0.95rem; }
    .dish-info h4 { font-size: 1.2rem; }
    
    .about-text h2 { font-size: 2rem; }
    .parallax-img-container { height: 400px; }
    
    /* Interactive Mobile Rescaling */
    .jump-pill { padding: 0.4rem 1rem; font-size: 0.85rem; }

    /* Contact Specific */
    .contact-info { gap: 1.5rem !important; }
    .info-item { padding: 1.5rem; text-align: center; }
    .info-item .gold-icon { margin: 0 auto 1rem auto; display: block; }
    .full-width-map iframe { height: 250px; }
}

/* --- TOAST NOTIFICATION --- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary-gold);
    color: var(--color-bg-main);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: none;
}

.toast.show {
    bottom: 40px;
    opacity: 1;
}

.toast svg {
    stroke: var(--color-bg-main);
}

/* --- PREMIUM RESTAURANT THEMES & EFFECTS --- */
.theme-arabic {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    position: relative;
}
.theme-arabic::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
    background-image: radial-gradient(var(--color-primary-gold) 1px, transparent 1px);
    background-size: 20px 20px;
}

.theme-chinese {
    background: radial-gradient(circle at center, rgba(168, 28, 28, 0.07) 0%, transparent 70%);
    position: relative;
}
.theme-chinese::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.02;
    background: linear-gradient(135deg, rgba(255,0,0,0.4) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgba(255,0,0,0.4) 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
}

/* Accordion Staggered Cascade */
.accordion-content li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.accordion-content.active li {
    opacity: 1;
    transform: translateY(0);
}
.accordion-content.active li:nth-child(1) { transition-delay: 0.05s; }
.accordion-content.active li:nth-child(2) { transition-delay: 0.1s; }
.accordion-content.active li:nth-child(3) { transition-delay: 0.15s; }
.accordion-content.active li:nth-child(4) { transition-delay: 0.2s; }
.accordion-content.active li:nth-child(5) { transition-delay: 0.25s; }
.accordion-content.active li:nth-child(6) { transition-delay: 0.3s; }
.accordion-content.active li:nth-child(n+7) { transition-delay: 0.35s; }

/* Chattakam Custom Cursor */
body { cursor: none; }
a, button, input, textarea, .category-header { cursor: none !important; }
.chattakam-cursor {
    position: fixed; top: 0; left: 0; width: 32px; height: 32px;
    pointer-events: none; z-index: 9999;
    transform-origin: top left;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}
.chattakam-cursor.hovering {
    transform: scale(1.1) rotate(-15deg);
}

/* Steam Tap Particle */
.steam-particle {
    position: fixed; pointer-events: none; z-index: 9998;
    width: 20px; height: 20px; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    animation: steamRise 1s ease-out forwards;
}

@keyframes steamRise {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { transform: translate(-50%, -100px) scale(3); opacity: 0; }
}

/* --- SKEWER SCROLLBAR --- */
::-webkit-scrollbar { width: 12px; background: #050505; }
::-webkit-scrollbar-track { 
    background: repeating-linear-gradient(90deg, #111, #111 2px, #222 2px, #222 4px);
    border-left: 1px solid #333;
}
::-webkit-scrollbar-thumb {
    background: radial-gradient(circle at top, #ff9d00, #ff2a00 80%);
    border-radius: 6px;
    box-shadow: 0 0 8px #ff2a00, inset 0 0 4px #fff;
    border: 1px solid #ff4500;
}
::-webkit-scrollbar-thumb:hover, ::-webkit-scrollbar-thumb:active { 
    background: radial-gradient(circle at top, #fff, #ff2a00 80%); 
}

/* --- NEON MODE (2 AM CRAVING) --- */
body.neon-mode {
    --color-primary-gold: #ff0055;
    --color-bg-main: #05000a;
    --color-bg-card: #0a001a;
    --color-text-muted: #b05792;
}
body.neon-mode h1, body.neon-mode h2, body.neon-mode h3, body.neon-mode .logo-arbania {
    text-shadow: 0 0 15px rgba(255, 0, 85, 0.8), 0 0 30px rgba(255, 0, 85, 0.4);
}
body.neon-mode .btn-primary {
    box-shadow: 0 0 15px var(--color-primary-gold);
}
body.neon-mode .navbar {
    border-bottom: 1px solid rgba(255,0,85, 0.3);
    box-shadow: 0 4px 20px rgba(255,0,85,0.1);
}

/* --- DISH HOVER/ACTIVE EFFECTS --- */
.dish-list li { transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s; cursor: pointer; }
.dish-list li:hover { transform: scale(1.02); background: rgba(255,255,255,0.02); border-radius: 8px; padding-left: 10px; }
.dish-list li:active { transform: scale(0.98); background: rgba(0,0,0,0.5); }

/* --- POLAROID GALLERY PHYSICS --- */
.polaroid-lightbox {
    position: fixed; inset: 0; pointer-events: none; z-index: 10000;
}
.polaroid-card {
    position: absolute; pointer-events: auto; touch-action: none; /* Crucial for touch dragging */
    background: white; padding: 10px; padding-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    border-radius: 4px; border: 1px solid #ddd;
    left: 50%; top: 50%; 
    transition: transform 0.1s ease-out; /* Spring physics feel */
    cursor: grab; max-width: 90vw;
}
.polaroid-card:active { cursor: grabbing; box-shadow: 0 10px 20px rgba(0,0,0,0.9); }
.polaroid-card img { width: 100%; height: auto; max-height: 60vh; border: 1px solid #ccc; pointer-events: none; }
.polaroid-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999;
    opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.polaroid-overlay.active { opacity: 1; pointer-events: auto; }
