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

:root {
    /* Color Palette - Dark Green Theme */
    --bg-primary: #0a0f0a;
    --bg-secondary: #111a11;
    --bg-card: #162016;
    --bg-card-hover: #1d2d1d;
    --bg-elevated: #1a2a1a;

    /* Accent Colors */
    --gold: #d4a843;
    --gold-light: #e8c76a;
    --gold-dark: #b8922f;
    --green-accent: #2d5a2d;
    --green-light: #3a7a3a;
    --green-glow: rgba(45, 90, 45, 0.3);

    /* Text Colors */
    --text-primary: #f5f0e8;
    --text-secondary: #b8b0a0;
    --text-muted: #7a7468;
    --text-dark: #0a0f0a;

    /* Gradient */
    --gradient-gold: linear-gradient(135deg, #d4a843 0%, #e8c76a 50%, #d4a843 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 15, 10, 0.9) 0%, rgba(10, 15, 10, 0.6) 100%);
    --gradient-card: linear-gradient(145deg, rgba(22, 32, 22, 0.9) 0%, rgba(26, 42, 26, 0.7) 100%);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(212, 168, 67, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Font */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: var(--space-4xl) 0;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader {
    text-align: center;
}

.coffee-cup {
    font-size: 4rem;
    animation: float 2s ease-in-out infinite;
    position: relative;
}

.steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.steam span {
    display: block;
    width: 4px;
    height: 20px;
    background: rgba(212, 168, 67, 0.4);
    border-radius: 4px;
    animation: steam 1.5s ease-in-out infinite;
}

.steam span:nth-child(2) { animation-delay: 0.3s; }
.steam span:nth-child(3) { animation-delay: 0.6s; }

@keyframes steam {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.4; }
    50% { transform: translateY(-10px) scaleY(1.5); opacity: 0; }
}

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

.loader-text {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: var(--space-md);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.navbar.scrolled {
    background: rgba(10, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(212, 168, 67, 0.4);
    transition: all var(--transition-base);
}

.nav-logo:hover .nav-logo-img {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.3);
}

.logo-text {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 15, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    transition: right var(--transition-slow);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-sm) var(--space-md);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 10, 0.7) 0%,
        rgba(10, 15, 10, 0.5) 40%,
        rgba(10, 15, 10, 0.7) 70%,
        rgba(10, 15, 10, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    letter-spacing: 0.5px;
}

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: var(--space-xl);
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-logo {
    width: clamp(180px, 35vw, 300px);
    height: clamp(180px, 35vw, 300px);
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 3px solid rgba(212, 168, 67, 0.4);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.2), 0 0 80px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-slow);
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.35), 0 0 100px rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--text-primary);
}

.title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

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

.btn-outline:hover {
    background: rgba(212, 168, 67, 0.1);
    transform: translateY(-2px);
}

.hero-info {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 168, 67, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 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 fadeInDown {
    from { opacity: 0; transform: translateY(-60px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.accent {
    color: var(--gold);
    font-style: italic;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

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

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

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 168, 67, 0.3);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.about-content .section-tag {
    display: block;
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.feature:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.menu-tabs-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-sm);
    position: relative;
    /* Scroll shadow hints for mobile */
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

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

.menu-tabs {
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-start;
    min-width: max-content;
    padding: 4px;
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.menu-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.menu-tab.active {
    background: var(--gradient-gold);
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.tab-icon {
    font-size: 1.1rem;
}

/* Menu Categories */
.menu-category {
    margin-bottom: var(--space-3xl);
    animation: fadeInUp 0.6s ease forwards;
}

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

.category-header {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

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

.category-header:hover .category-img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10, 15, 10, 0.9) 0%,
        rgba(10, 15, 10, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.category-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Menu Items Grid */
.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.menu-item {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-item:hover::before {
    opacity: 1;
}

.item-content {
    padding: var(--space-lg);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xs);
}

.item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-price-multi {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    flex-shrink: 0;
}

.size-price {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
}

.item-desc-en {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.item-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tag-veg { background: rgba(76, 175, 80, 0.15); color: #81c784; }
.tag-meat { background: rgba(244, 67, 54, 0.1); color: #ef9a9a; }
.tag-sea { background: rgba(33, 150, 243, 0.1); color: #90caf9; }
.tag-popular { background: rgba(212, 168, 67, 0.15); color: var(--gold-light); }
.tag-spicy { background: rgba(255, 87, 34, 0.15); color: #ff8a65; }
.tag-drink { background: rgba(156, 39, 176, 0.1); color: #ce93d8; }

/* Menu Subgroups */
.menu-subgroup {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.subgroup-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}



/* ===== CONTACT ===== */
.contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-note {
    display: inline-block;
    margin-top: var(--space-sm);
    padding: 3px 12px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--gold);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hours-grid span:nth-child(even) {
    text-align: right;
    color: var(--gold);
    font-weight: 500;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(45, 90, 45, 0.2);
    border: 1px solid rgba(45, 90, 45, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: #81c784;
    font-weight: 500;
}

.contact-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-map iframe {
    display: block;
}

.map-overlay-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(10, 15, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid rgba(212, 168, 67, 0.3);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE - TABLET (768px+) ===== */
@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-header {
        height: 250px;
    }
}

/* ===== RESPONSIVE - DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: row;
        gap: var(--space-sm);
    }

    .nav-link {
        font-size: 0.95rem;
        padding: var(--space-sm) var(--space-md);
    }

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

    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-header {
        height: 300px;
    }

    .about-grid {
        gap: var(--space-4xl);
    }
}

/* ===== RESPONSIVE - LARGE DESKTOP (1400px+) ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

/* ===== MOBILE SPECIFIC FIX (< 480px) ===== */
@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 3rem;
        --space-4xl: 4rem;
    }

    .hero-content {
        padding: var(--space-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .item-header {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .item-price-multi {
        margin-top: var(--space-xs);
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .tab-icon {
        font-size: 1rem;
    }

    .category-header {
        height: 160px;
    }

    .contact-map {
        min-height: 280px;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    .contact-card {
        padding: var(--space-lg);
    }

    .nav-logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

/* ===== VERY SMALL PHONES (< 360px) ===== */
@media (max-width: 360px) {
    :root {
        --space-lg: 0.85rem;
        --space-xl: 1.25rem;
        --space-2xl: 1.75rem;
    }

    .hero-logo {
        width: 150px !important;
        height: 150px !important;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .item-content {
        padding: var(--space-md);
    }

    .item-name {
        font-size: 0.95rem;
    }

    .item-price {
        font-size: 1rem;
    }

    .size-price {
        font-size: 0.8rem;
    }

    .category-header {
        height: 140px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ===== DARK MODE SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--green-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-light);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Touch devices */
@media (hover: none) {
    .menu-item:hover {
        transform: none;
        box-shadow: none;
    }

    .menu-item:active {
        background: var(--bg-card-hover);
        border-color: rgba(212, 168, 67, 0.2);
    }

    /* Larger touch targets for mobile */
    .menu-tab {
        min-height: 44px;
    }

    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero-logo {
        width: 120px !important;
        height: 120px !important;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Safe area for iOS notch */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(30px + env(safe-area-inset-bottom));
    }

    .navbar {
        padding-top: calc(var(--space-md) + env(safe-area-inset-top));
    }

    .navbar.scrolled {
        padding-top: calc(var(--space-sm) + env(safe-area-inset-top));
    }
}
