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

:root {
    --primary-color: #FFD700;
    --primary-dark: #E6C200;
    --secondary-color: #FFC700;
    --accent-orange: #FF8C00;
    --dark-bg: #000;
    --dark-card: #0a0a0a;
    --darker-card: #111111;
    --card-border: #1a1a1a;
    --text-light: #fff;
    --text-gray: #b0b0b0;
    --text-dark: #666;
    --transition: all 0.3s ease;
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    --shadow-gold-lg: 0 8px 40px rgba(255, 215, 0, 0.4);
}

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}
.navbar.scrolled { border-bottom: 3px solid var(--primary-color); box-shadow: var(--shadow-gold); }

.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; font-size: 1.4rem; font-weight: 800; color: var(--primary-color); letter-spacing: 0.05rem; text-transform: uppercase; transition: var(--transition); }
.nav-logo:hover { transform: scale(1.02); }

.nav-logo-img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-color); box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }

.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: var(--text-light); text-decoration: none; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05rem; transition: var(--transition); position: relative; padding: 0.5rem 0; white-space: nowrap; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--primary-color); transition: var(--transition); border-radius: 2px; }
.nav-menu a:hover { color: var(--primary-color); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 0.4rem; background: transparent; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.nav-toggle span { width: 28px; height: 3px; background: var(--primary-color); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ==========================================
   HERO SECTION WITH FULLSCREEN SLIDESHOW BG
   ========================================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
}

/* Fullscreen background slideshow */
.slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: translateZ(0);
}
.slide.active { opacity: 1; }
.slide img.slideshow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    cursor: zoom-in;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none; /* allow clicks to pass to image */
}

/* Controls floating above background */
.slide-controls {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}
.slide-prev, .slide-next {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.slide-prev:hover, .slide-next:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.08);
}
.slide-dots { display: flex; gap: 0.7rem; }
.dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
    cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--primary-color); transform: scale(1.25); }

/* Logo & CTA centered above background */
.logo-container {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    z-index: 2;
    padding: 1.5rem;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}
.hero-logo {
    width: 150px; height: 150px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
    from { box-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3); }
    to   { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.4); }
}
.tagline {
    font-size: 1.6rem;
    color: var(--text-light);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    line-height: 1.3;
}
.menu-button {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.5rem;
    background: var(--primary-color); color: var(--dark-bg);
    text-decoration: none; font-size: 1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08rem;
    border-radius: 50px; transition: var(--transition);
    box-shadow: var(--shadow-gold); border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; gap: 0.8rem; white-space: nowrap;
}
.menu-button:hover { background: var(--secondary-color); transform: translateY(-4px); box-shadow: var(--shadow-gold-lg); }
.menu-button:active { transform: translateY(-2px); }

/* Scroll hint */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    text-align: center; cursor: pointer; animation: bounce 2s infinite; z-index: 2;
    background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(5px);
    padding: 0.8rem 1.5rem; border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex; align-items: center; gap: 0.8rem;
}
.scroll-indicator span {
    color: var(--primary-color); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.1rem; font-weight: 600; white-space: nowrap;
}
.scroll-indicator i { color: var(--primary-color); font-size: 0.9rem; animation: bounceArrow 1.5s infinite; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }
@keyframes bounceArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ==========================================
   MENU TEXT SECTION + SUBNAV
   ========================================== */
.menu-text-section { background: var(--dark-bg); padding: 5rem 1.5rem; position: relative; border-bottom: 1px solid var(--card-border); }
.menu-container { max-width: 1400px; margin: 0 auto; }
.menu-header { text-align: center; margin-bottom: 2rem; }
.menu-header h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15rem; font-weight: 800; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.menu-header p { color: var(--text-gray); font-size: 1.1rem; font-weight: 300; }

/* Sticky sub-navigation */
.menu-subnav {
    position: sticky; top: 80px; z-index: 5;
    display: flex; gap: 1rem; justify-content: center; align-items: center;
    padding: 0.6rem 1rem; margin: 0 auto 2rem; max-width: 900px;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.25); border-radius: 999px;
    box-shadow: var(--shadow-gold);
}
.menu-subnav-link { color: var(--text-light); text-decoration: none; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06rem; padding: 0.5rem 0.9rem; border-radius: 999px; transition: var(--transition); }
.menu-subnav-link:hover { color: var(--primary-color); background: rgba(255, 215, 0, 0.1); }
.menu-subnav-link.active, .menu-subnav-link.active:visited { background: var(--primary-color) !important; color: var(--dark-bg) !important; box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
.menu-subnav-link.active:hover { background: var(--primary-color) !important; color: var(--dark-bg) !important; }

/* Sections and items */
.menu-category { margin-bottom: 4rem; scroll-margin-top: 160px; }
.menu-category-title { color: var(--primary-color); font-size: 2rem; margin-bottom: 2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary-color); display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.menu-item { background: linear-gradient(145deg, var(--darker-card), var(--dark-card)); border: 1px solid var(--card-border); border-radius: 12px; padding: 1.8rem; transition: var(--transition); position: relative; overflow: hidden; height: 100%; }
.menu-item:hover { border-color: var(--primary-color); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.menu-item.highlight { border: 1px solid var(--primary-color); box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); }
.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 0.8rem; gap: 1rem; }
.menu-item-title { color: var(--text-light); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.03rem; }
.menu-item-price { color: var(--primary-color); font-weight: 700; font-size: 1.2rem; white-space: nowrap; text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
.menu-item-desc { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.6; font-style: italic; }
.menu-item-allergens { font-size: 0.8rem; color: var(--text-dark); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05rem; }
.sauce-list { list-style: none; color: var(--text-gray); font-size: 0.95rem; }
.sauce-list li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.sauce-list li::before { content: '•'; color: var(--primary-color); font-weight: bold; }

/* ==========================================
   SOCIAL ICONS (Shared)
   ========================================== */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.social-link svg { width: 22px; height: 22px; fill: currentColor; }
.social-link:hover { background: var(--secondary-color); transform: scale(1.15) rotate(5deg); box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5); }

/* ==========================================
   MODAL STYLES (shared)
   ========================================== */
.modal { display: none; position: fixed; z-index: 2000; padding-top: 60px; inset: 0; overflow: auto; background-color: rgba(0, 0, 0, 0.97); backdrop-filter: blur(15px); -webkit-overflow-scrolling: touch; }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 75vh; border: 3px solid var(--primary-color); border-radius: 15px; box-shadow: var(--shadow-gold-lg); animation: zoomIn 0.3s ease; object-fit: contain; cursor: zoom-in; transition: transform 0.3s ease; transform-origin: center center; }

.modal-controls { position: absolute; top: 20px; right: 80px; display: flex; gap: 10px; z-index: 2001; }
.modal-zoom-btn { background: var(--primary-color); color: var(--dark-bg); border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-zoom-btn:hover { background: var(--secondary-color); transform: scale(1.1); }
.modal-zoom-btn:active { transform: scale(0.95); }

#menuCaption, #imageCaption {
    margin: auto; display: block; width: 80%; max-width: 700px; text-align: center;
    color: var(--primary-color); padding: 20px 0; font-size: 1.2rem; font-weight: 700; line-height: 1.4;
}

.close-modal {
    position: absolute; top: 20px; right: 35px; color: var(--primary-color);
    font-size: 45px; font-weight: bold; transition: var(--transition); cursor: pointer;
    z-index: 2001; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.5); border-radius: 50%; border: 2px solid var(--primary-color);
}
.close-modal:hover { color: var(--secondary-color); transform: rotate(90deg) scale(1.1); background: rgba(0, 0, 0, 0.7); }

@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ==========================================
   INFO SECTION
   ========================================== */
.info-section { background: var(--dark-bg); padding: 5rem 1.5rem; }
.info-container { max-width: 1400px; margin: 0 auto; }
.info-header { text-align: center; margin-bottom: 3.5rem; }
.info-header h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15rem; font-weight: 800; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.info-card { background: linear-gradient(145deg, var(--darker-card), var(--dark-card)); padding: 2.2rem; border-radius: 18px; border: 2px solid var(--card-border); transition: var(--transition); text-align: center; height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; }
.info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary-color); transform: scaleX(0); transition: var(--transition); }
.info-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-gold); border-color: var(--primary-color); }
.info-card:hover::before { transform: scaleX(1); }
.info-icon { font-size: 2.8rem; margin-bottom: 1.2rem; height: 60px; display: flex; align-items: center; justify-content: center; }
.info-card h3 { color: var(--primary-color); font-size: 1.5rem; margin-bottom: 1.2rem; font-weight: 700; line-height: 1.3; }
.info-card p { color: var(--text-gray); line-height: 1.7; margin-bottom: 0.7rem; font-size: 0.95rem; }
.info-card a { text-decoration: none; transition: var(--transition); font-weight: 500; color: var(--primary-color); }
.info-card a:hover { color: var(--secondary-color); text-decoration: underline; }

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section { background: var(--dark-card); padding: 5rem 1.5rem; }
.map-container { max-width: 1400px; margin: 0 auto; }
.map-header { text-align: center; margin-bottom: 3rem; }
.map-header h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15rem; font-weight: 800; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.map-wrapper { border: 3px solid var(--primary-color); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-gold-lg); height: 450px; position: relative; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section { background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-card) 100%); padding: 5rem 1.5rem; min-height: auto; display: flex; align-items: center; justify-content: center; }
.contact-container { max-width: 800px; width: 100%; }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
.contact-header h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.15rem; font-weight: 800; text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.contact-header p { color: var(--text-gray); font-size: 1.1rem; font-weight: 300; line-height: 1.6; }
.contact-form { background: linear-gradient(145deg, var(--darker-card), var(--dark-card)); padding: 2.5rem; border-radius: 18px; border: 2px solid var(--primary-color); box-shadow: var(--shadow-gold); }
.form-group { margin-bottom: 1.8rem; }
.form-group label { display: block; color: var(--primary-color); font-size: 0.95rem; margin-bottom: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; background: var(--dark-bg); border: 2px solid var(--card-border); color: var(--text-light); font-size: 1rem; border-radius: 10px; transition: var(--transition); font-family: 'Poppins', sans-serif; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.form-group textarea { resize: vertical; min-height: 160px; max-height: 300px; }
.submit-btn { width: 100%; padding: 1.2rem; background: var(--primary-color); color: var(--dark-bg); border: none; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12rem; cursor: pointer; border-radius: 50px; transition: var(--transition); font-family: 'Poppins', sans-serif; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.submit-btn:hover { background: var(--secondary-color); transform: translateY(-3px); box-shadow: var(--shadow-gold-lg); }
.submit-btn:active { transform: translateY(-1px); }
.success-message { display: none; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--dark-bg); padding: 1.2rem; border-radius: 10px; text-align: center; font-weight: 600; margin-top: 1.5rem; animation: slideIn 0.5s ease; font-size: 0.95rem; }
.success-message.show { display: block; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--dark-bg); border-top: 3px solid var(--primary-color); padding: 3.5rem 1.5rem 2rem; }
.footer-container { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-column h4 { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.08rem; font-weight: 700; }
.footer-column p { color: var(--text-gray); line-height: 1.7; margin-bottom: 0.7rem; font-size: 0.95rem; }
.footer-column a { color: var(--text-gray); line-height: 1.7; text-decoration: none; margin-bottom: 0.7rem; transition: var(--transition); font-weight: 500; font-size: 0.95rem; }
.footer-column a:hover { color: var(--primary-color); padding-left: 8px; }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.footer-logo-img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-color); box-shadow: 0 0 15px rgba(255, 215, 0, 0.4); }
.footer-logo span { font-size: 1.6rem; font-weight: 800; color: var(--primary-color); letter-spacing: 0.1rem; text-transform: uppercase; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--primary-color); color: var(--dark-bg); border-radius: 50%; text-decoration: none; transition: var(--transition); flex-shrink: 0; }
.footer-social-link svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social-link:hover { background: var(--secondary-color); transform: scale(1.15) rotate(5deg); box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5); }
.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 1.8rem; text-align: center; color: var(--text-dark); font-size: 0.9rem; }
.footer-bottom p { margin-bottom: 1rem; color: var(--text-gray); font-size: 0.9rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-links a { color: var(--text-dark); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-color); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed; bottom: 25px; right: 25px;
    width: 50px; height: 50px; background: var(--primary-color); color: var(--dark-bg);
    border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999;
    box-shadow: var(--shadow-gold); display: flex; align-items: center; justify-content: center; transform: translateY(10px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary-color); transform: translateY(-5px) scale(1.1); box-shadow: var(--shadow-gold-lg); }
.back-to-top:active { transform: translateY(-3px) scale(1); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .info-header h2, .map-header h2, .contact-header h2, .menu-header h2 { font-size: 2.4rem; }
    .tagline { font-size: 1.4rem; }
    .hero-logo { width: 130px; height: 130px; }
    .slide-controls { bottom: 95px; }
}
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 75px; right: -100%; flex-direction: column; background: rgba(0, 0, 0, 0.98); width: 100%; padding: 2rem; gap: 1.5rem; transition: var(--transition); border-top: 3px solid var(--primary-color); z-index: 999; max-height: calc(100vh - 75px); overflow-y: auto; }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-container { padding: 0 1rem; }
    .hero-logo { width: 120px; height: 120px; }
    .tagline { font-size: 1.3rem; margin-bottom: 1.8rem; }
    .menu-button { padding: 1rem 2rem; font-size: 0.95rem; }
    .info-header h2, .map-header h2, .contact-header h2, .menu-header h2 { font-size: 2rem; letter-spacing: 0.1rem; }
    .contact-form { padding: 2rem; }
    .info-grid, .footer-grid, .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .map-wrapper { height: 400px; }
    .crown-icon { font-size: 2.5rem; }
    .modal-controls { top: 15px; right: 65px; }
    .modal-zoom-btn { width: 40px; height: 40px; font-size: 1rem; }
    .close-modal { right: 20px; top: 15px; font-size: 40px; width: 40px; height: 40px; }
    .scroll-indicator { bottom: 20px; padding: 0.7rem 1.2rem; }
    .scroll-indicator span { font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .nav-logo { font-size: 1.2rem; }
    .nav-logo-img { width: 40px; height: 40px; }
    .hero-logo { width: 100px; height: 100px; margin-bottom: 1.2rem; }
    .tagline { font-size: 1.1rem; padding: 0 1rem; margin-bottom: 1.5rem; }
    .menu-button { padding: 0.9rem 1.8rem; font-size: 0.9rem; gap: 0.6rem; }
    .info-header h2, .map-header h2, .contact-header h2, .menu-header h2 { font-size: 1.7rem; letter-spacing: 0.05rem; }
    .info-section, .map-section, .contact-section, .menu-text-section { padding: 4rem 1rem; }
    .contact-form { padding: 1.5rem; }
    .map-wrapper { height: 350px; border-radius: 12px; }
    .dot { width: 8px; height: 8px; }
    .close-modal { font-size: 35px; right: 15px; top: 15px; width: 35px; height: 35px; }
    .modal-controls { top: 12px; right: 55px; gap: 8px; }
    #menuCaption, #imageCaption { font-size: 1.1rem; padding: 15px 0; }
    .modal-content { max-width: 95%; max-height: 70vh; }
    .footer { padding: 3rem 1rem 1.5rem; }
    .footer-logo span { font-size: 1.4rem; }
    .footer-logo-img { width: 45px; height: 45px; }
    .scroll-indicator { bottom: 15px; padding: 0.6rem 1rem; gap: 0.6rem; }
    .scroll-indicator span { font-size: 0.7rem; }
    .scroll-indicator i { font-size: 0.8rem; }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .slide-prev:hover, .slide-next:hover, .modal-zoom-btn:hover, .footer-social-link:hover, .social-link:hover, .menu-button:hover { transform: none; }
    .slide-prev:active, .slide-next:active, .modal-zoom-btn:active, .footer-social-link:active, .social-link:active, .menu-button:active { transform: scale(0.95); }
    .nav-menu a:hover::after { width: 0; }
    .info-card:hover { transform: none; }
    .menu-item:hover { transform: none; }
    .back-to-top:hover { transform: none; }
    .back-to-top:active { transform: scale(0.95); }
}

/* Prevent horizontal scrolling */
html, body { max-width: 100%; overflow-x: hidden; }

/* Social icons color overrides */
#social-a{color: black;}
#social-b{color: black;}
#social-c{color: black;}   
#social-d{color: black;}
#social-e{color: black;}
#social-f{color: black;}



        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .lang-switcher:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        .lang-flag {
            font-size: 1.2rem;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        @media (max-width: 768px) {
            .lang-switcher {
                margin-top: 1rem;
            }
        }
    