/* =======================================================
   MEŞHUR MALATYA ASPAVA - MAIN STYLESHEET
   Luxury Imperial Theme (Royal Burgundy, Champagne Gold & Obsidian)
   ======================================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Backgrounds */
    --bg-primary: #0c0d11;
    --bg-secondary: #13151c;
    --bg-tertiary: #191c26;
    --bg-card: rgba(22, 25, 36, 0.75);
    --bg-card-hover: rgba(30, 34, 48, 0.9);
    --bg-glass: rgba(18, 21, 30, 0.7);
    --bg-glass-strong: rgba(14, 16, 23, 0.92);

    /* Royal Colors */
    --accent-gold: #d4af37;
    --accent-gold-light: #f5e4ab;
    --accent-gold-dark: #a67c13;
    --accent-gold-subtle: rgba(212, 175, 55, 0.12);

    --accent-burgundy: #85141d;
    --accent-ruby: #a51d28;
    --accent-crimson: #c02836;
    --accent-red-glow: rgba(165, 29, 40, 0.35);

    /* Text */
    --text-primary: #fcfbf9;
    --text-secondary: #cfc7bc;
    --text-muted: #888075;
    --text-light-gold: #f0debb;

    /* Borders */
    --border-gold: rgba(212, 175, 55, 0.28);
    --border-gold-subtle: rgba(212, 175, 55, 0.12);
    --border-light: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #f7e6b5 0%, #d4af37 50%, #a67c13 100%);
    --gradient-burgundy: linear-gradient(135deg, #a51d28 0%, #701017 100%);
    --gradient-ruby-gold: linear-gradient(135deg, #a51d28 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #0c0d11 0%, #15171f 100%);
    --gradient-card: linear-gradient(145deg, rgba(28, 32, 45, 0.75), rgba(16, 18, 26, 0.85));

    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-subheading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Sizes */
    --section-padding: 110px 0;
    --container-max: 1240px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.2);
    --shadow-ruby: 0 0 30px rgba(165, 29, 40, 0.25);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(133, 20, 29, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 60%, rgba(212, 175, 55, 0.06) 0%, transparent 45%);
    background-attachment: fixed;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
.accent {
    color: var(--accent-gold);
}

.accent-gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow-x: clip;
    max-width: 100%;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--accent-gold-subtle);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--accent-gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-badge::before,
.section-badge::after {
    content: "❖";
    font-size: 0.75rem;
    color: var(--accent-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    outline: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #121318;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}

.btn-burgundy {
    background: var(--gradient-burgundy);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-burgundy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(165, 29, 40, 0.6);
    border-color: var(--accent-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--accent-gold-subtle);
    border-color: var(--accent-gold);
    color: var(--accent-gold-light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #08090c;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-emblem {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border: 3px solid var(--border-gold);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.preloader-letter {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    animation: pulseLetter 1.8s infinite ease-in-out;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.preloader-subtitle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLetter {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gold-subtle);
    box-shadow: var(--shadow-md);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px !important;
    background: var(--gradient-burgundy);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(165, 29, 40, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.hamburger .bar {
    width: 26px;
    height: 2px;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 90px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    filter: brightness(0.38) contrast(1.15);
    transition: transform 1.2s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(12, 13, 17, 0.6) 0%,
        rgba(12, 13, 17, 0.4) 45%,
        rgba(12, 13, 17, 0.95) 100%
    );
}

/* Floating Gold Shimmer Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.gold-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: floatGold linear infinite;
}

@keyframes floatGold {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-600px) scale(1.3);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-motto-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(133, 20, 29, 0.45);
    border: 1px solid var(--border-gold);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-motto-badge span {
    color: var(--accent-gold-light);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero-title-line {
    display: block;
}

.hero-title-line.gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

.hero-scroll-indicator .scroll-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ===== ASPAVA ACRONYM CALLOUT BAR ===== */
.aspava-bar {
    background: var(--gradient-burgundy);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
}

.aspava-bar-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.aspava-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.aspava-bar-letter {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #121318;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.aspava-bar-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover .about-image img {
    transform: scale(1.04);
}

.about-badge-card {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    padding: 24px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 18px;
}

.badge-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold-subtle);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.badge-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold-light);
    font-weight: 600;
    text-transform: uppercase;
}

.badge-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

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

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== MEŞHUR ASPAVA İKRAM ŞÖLENİ (SPECIAL HIGHLIGHT) ===== */
.ikram-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #151216 50%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-gold-subtle);
    border-bottom: 1px solid var(--border-gold-subtle);
    position: relative;
}

.ikram-banner {
    background: var(--gradient-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-gold);
    flex-wrap: wrap;
    gap: 20px;
}

.ikram-banner-info {
    max-width: 750px;
}

.ikram-banner-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.ikram-banner-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.ikram-badge {
    background: var(--gradient-gold);
    color: #121318;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.ikram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ikram-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ikram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.ikram-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.ikram-card:hover::before {
    opacity: 1;
}

.ikram-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: inline-block;
}

.ikram-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.ikram-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.ikram-free-pill {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    margin-top: 14px;
    text-transform: uppercase;
}

/* ===== WHY US (NEDEN MALATYA ASPAVA) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(133, 20, 29, 0.35);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 22px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== MENU SECTION ===== */
.menu {
    background: var(--bg-secondary);
}

.menu-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-tab {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-tab:hover {
    color: var(--accent-gold);
    border-color: var(--border-gold);
}

.menu-tab.active {
    background: var(--gradient-gold);
    color: #121318;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.menu-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all var(--transition-base);
    position: relative;
}

.menu-item.hidden {
    display: none;
}

.menu-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}

.menu-item-img {
    width: 105px;
    height: 105px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-gold-subtle);
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.1);
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.35);
    height: 1px;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Badges */
.menu-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.menu-badge.popular {
    background: var(--gradient-gold);
    color: #121318;
}

.menu-badge.chef {
    background: var(--gradient-burgundy);
    color: #ffffff;
    border: 1px solid var(--border-gold);
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-gold-subtle);
    height: 280px;
}

.gallery-item.gallery-item-lg {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 16, 23, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: all var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
}

.gallery-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #121318;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 7, 10, 0.94);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 80vh;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-btn {
    position: absolute;
    background: rgba(22, 25, 36, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-btn:hover {
    background: var(--accent-gold);
    color: #121318;
}

.lightbox-close {
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition-base);
    text-align: center;
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}

.service-icon-wrap {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== RESERVATION SECTION ===== */
.reservation-box {
    background: var(--gradient-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    overflow: hidden;
}

.res-info-col {
    background: linear-gradient(145deg, rgba(133, 20, 29, 0.45), rgba(18, 20, 28, 0.9));
    padding: 50px;
    border-right: 1px solid var(--border-gold-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.res-info-col .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.res-info-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.res-highlights {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 36px;
}

.res-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.res-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gold-subtle);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.res-item-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.res-item-val {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.res-form-col {
    padding: 50px;
}

.res-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light-gold);
}

.form-control {
    background: rgba(12, 13, 18, 0.7);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.form-control.error {
    border-color: #ef4444;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-success-box {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success-box.show {
    display: block;
}

.success-icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid #25D366;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
}

.contact-card-info {
    background: var(--bg-card);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 30px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(133, 20, 29, 0.4);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--accent-gold);
}

.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-lg);
    min-height: 440px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #08090d;
    border-top: 1px solid var(--border-gold-subtle);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.25fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-col .brand-logo-img {
    height: 54px;
    margin-bottom: 22px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold-subtle);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social-btn:hover {
    background: var(--accent-gold);
    color: #121318;
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-copyright-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.if-max-copyright {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.if-max-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px 4px 6px;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.if-max-link:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.5);
    transform: translateY(-2px);
    background: rgba(15, 28, 50, 0.95);
}

.if-max-badge-logo {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: block;
}

.if-max-text {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
}

.if-max-text .cyan {
    color: #38bdf8;
}

.if-max-text .dash {
    color: #fb923c;
}

.if-max-text .white {
    color: #ffffff;
}

.if-max-domain {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    margin-left: 2px;
    opacity: 0.85;
}

.admin-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.82rem;
    transition: all var(--transition-fast);
}

.admin-link-btn:hover {
    color: var(--accent-gold);
    border-color: var(--border-gold);
    background: var(--accent-gold-subtle);
}

/* ===== FLOATING BUTTONS ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    transition: all var(--transition-base);
    animation: floatWa 3s infinite ease-in-out;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

@keyframes floatWa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 980;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--accent-gold);
    color: #121318;
    transform: translateY(-4px);
}

/* ===== ANIMATIONS & DATA-ANIMATE ===== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.3rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .about-grid,
    .reservation-box,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .res-info-col {
        border-right: none;
        border-bottom: 1px solid var(--border-gold-subtle);
    }
    .about-image img {
        height: 400px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ikram-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Prevent horizontal translation animation from expanding viewport on mobile */
    [data-animate="fade-left"],
    [data-animate="fade-right"],
    [data-animate="fade-up"],
    [data-animate="fade-down"] {
        transform: translateY(20px);
    }

    [data-animate].animated {
        transform: translate(0, 0);
    }

    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* ===== NAVBAR (MOBILE) ===== */
    .navbar {
        padding: 14px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .brand-logo-img {
        height: 40px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: rgba(14, 16, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px 30px;
        border-left: 1px solid var(--border-gold);
        transform: translateX(105%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.05rem;
    }

    /* ===== HERO & HEADERS (MOBILE) ===== */
    .hero {
        padding: 110px 0 50px;
        min-height: calc(100vh - 40px);
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-content {
        padding: 0 4px;
        width: 100%;
    }

    .hero-motto-badge {
        padding: 6px 14px;
        margin-bottom: 16px;
        max-width: 100%;
        border-radius: var(--radius-full);
    }

    .hero-motto-badge span {
        font-size: 0.74rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 6.5vw, 2.35rem);
        line-height: 1.22;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 10px;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 0.92rem;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* ===== ASPAVA ACRONYM BAR (MOBILE) ===== */
    .aspava-bar {
        padding: 16px 0;
        overflow: hidden;
    }

    .aspava-bar-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 6px;
        justify-items: center;
    }

    .aspava-bar-item {
        gap: 8px;
    }

    .aspava-bar-letter {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .aspava-bar-text {
        font-size: 0.88rem;
    }

    /* ===== UNIVERSAL SECTION HEADERS ===== */
    .section-header {
        margin: 0 auto 32px;
        padding: 0 4px;
    }

    .section-badge {
        font-size: 0.78rem;
        padding: 5px 14px;
        margin-bottom: 12px;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(1.65rem, 5.8vw, 2.15rem);
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    /* ===== ABOUT SECTION (MOBILE) ===== */
    .about-text {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .about-stats {
        gap: 12px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .stat-number-wrapper {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    .about-badge-card {
        position: static;
        margin-top: 16px;
        width: 100%;
        padding: 14px 18px;
    }

    /* ===== MENU SECTION (MOBILE OPTIMIZATIONS) ===== */
    .menu-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
        padding: 6px 2px 14px;
        margin: 0 0 22px;
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        flex-shrink: 0;
        padding: 9px 18px;
        font-size: 0.86rem;
        white-space: nowrap;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-item {
        padding: 14px;
        gap: 14px;
        align-items: flex-start;
        position: relative;
        margin-top: 6px;
    }

    .menu-item-img {
        width: 82px;
        height: 82px;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .menu-item-info {
        flex: 1;
        min-width: 0;
    }

    .menu-item-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 4px;
    }

    .menu-item-name {
        font-size: 1.02rem;
        line-height: 1.35;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-break: break-word;
        flex: 1;
    }

    .menu-item-dots {
        display: none;
    }

    .menu-item-price {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--accent-gold);
        white-space: nowrap;
        flex-shrink: 0;
        margin-left: 6px;
    }

    .menu-item-desc {
        font-size: 0.82rem;
        line-height: 1.45;
        margin-top: 4px;
    }

    .menu-badge {
        position: absolute;
        top: -9px;
        left: 18px;
        right: auto;
        padding: 2px 9px;
        font-size: 0.65rem;
        letter-spacing: 0.3px;
        font-weight: 700;
        z-index: 2;
    }

    /* ===== OTHER GRIDS & FORMS ===== */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.gallery-item-lg {
        grid-column: span 1;
    }

    .ikram-grid,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .res-info-col,
    .res-form-col,
    .contact-card-info {
        padding: 24px 18px;
    }

    .contact-map-wrapper,
    .contact-map-wrapper iframe {
        min-height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ===== EXTRA SMALL MOBILES (iPhone SE, Small Android <= 480px) ===== */
@media (max-width: 480px) {
    .brand-logo-img {
        height: 35px;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6.2vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .menu-item {
        padding: 12px;
        gap: 12px;
    }

    .menu-item-img {
        width: 76px;
        height: 76px;
        border-radius: 8px;
    }

    .menu-item-name {
        font-size: 0.98rem;
    }

    .menu-item-price {
        font-size: 1.08rem;
    }

    .aspava-bar-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px 4px;
    }

    .aspava-bar-letter {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .aspava-bar-text {
        font-size: 0.82rem;
    }
}
