/* ===== SCROLL REVEAL ===== */
    .reveal-on-scroll { opacity: 1; transform: translateY(0px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
    
    /* ===== HERO SECTION ===== */
    .hero-section { position: relative; overflow: hidden; padding: 120px 0 80px; }
    .hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(201,162,74,0.12) 0%, transparent 70%); animation: heroGlow 5s ease-in-out infinite; pointer-events: none; z-index: 1; }
    @keyframes heroGlow { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.03); } }
    .hero-section .section-title { position: relative; z-index: 2; animation: titleSlideUp 1s ease; }
    @keyframes titleSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    
    /* ===== STICKY NAVIGATION ===== */
    .scroll-nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(201,162,74,0.2); padding: 12px 0; margin-bottom: 30px; }
    .scroll-nav ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 16px; list-style: none; padding: 0; margin: 0; }
    .scroll-nav a { display: inline-flex; align-items: center; padding: 10px 18px; color: #ccc; text-decoration: none; font-size: 13px; font-weight: 500; border-radius: 30px; transition: all 0.3s ease; }
    .scroll-nav a:hover { color: #FFC107; transform: translateY(-2px); }
    .scroll-nav a.act-scrlink { color: #fff; background: rgba(201,162,74,0.15); border: 1px solid rgba(201,162,74,0.4); }
    
    
    
    /* ===== MENU SECTIONS ===== */
    .menu-wrapper {background: rgb(26 26 26); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }
    .menu-wrapper:hover { border-color: rgba(201,162,74,0.25); }
    .menu-wrapper-title { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .menu-wrapper-title h4 {  color: #fff; font-size: 28px; margin: 0 0 6px; }
    .menu-wrapper-title h5 { color: #FFC107; font-size: 13px; margin: 0; text-transform: uppercase; letter-spacing: 2px; }
    .menu-wrapper-title_number { float: right; font-size: 42px; color: rgba(201,162,74,0.12);  }
    
    .menu-subsection { margin: 10px 0 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.08); }
    .menu-subsection:first-child { margin-top: 0; padding-top: 0; border-top: none; }
    .menu-subsection-title {  color: #fff; font-size: 22px; margin: 0 0 18px; }
    
    /* ===== MENU ITEMS GRID ===== */
    .menu-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .hero-menu-item { background: rgba(255,255,255,0.03); border-radius: 12px; padding: 5px 10px;margin-bottom: 0px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; }
    .hero-menu-item:hover { background: rgba(201,162,74,0.08); border-color: rgba(201,162,74,0.3); transform: translateY(-3px); }
    .hero-menu-item.hidden-item { display: none; }
    
    .menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
    .menu-item-title {  color: #fff; font-size: 16px; margin: 0; }
    
    .menu-item-price { color: #FFC107; font-size: 17px;  white-space: nowrap; }
    .menu-item-description { color: #aaa; font-size: 14px; line-height: 1.6; margin: 0;float:left; }
    .hero-menu-item:hover .menu-item-description { color: #ccc; }
    
    /* ===== DECORATIVE ===== */
    .brush-dec, .brush-dec2, .section-bg .bg { pointer-events: none; }
    .brush-dec { animation: brushFloat 8s ease-in-out infinite; }
    .brush-dec2 { animation: brushFloat 10s ease-in-out infinite reverse; }
    @keyframes brushFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 25% { transform: translateY(-10px) rotate(1deg); } 75% { transform: translateY(10px) rotate(-1deg); } }
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
        .menu-items-grid { grid-template-columns: 1fr; }
        .menu-wrapper { padding: 10px 5px; }
    }
    
    @media (max-width: 768px) {
        .scroll-nav ul { gap: 6px 10px; }
        .scroll-nav a { padding: 8px 14px; font-size: 12px; }
        .menu-wrapper-title h4 { font-size: 18px; }
        .menu-wrapper-title h5 {font-size: 12px; }
        .menu-wrapper-title_number { font-size: 36px; }
        .menu-item-title { font-size: 14px; }
        .menu-item-price { font-size: 16px; }
        .menu-item-description { font-size: 11px;text-align: left; }
        .menu-subsection-title {font-size: 16px;color: #ffc107;font-family: 'Playfair Display';}
        .menu-items-grid{gap: 10px;}
    }