@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Outfit:wght@400;600;700;800&display=swap');

/* ==========================================================================
   CSS Variables - Black, Cream & Gold Theme
   ========================================================================== */
:root {
    --primary: #e2ab2a;
    --primary-light: #f0c04a;
    --primary-dark: #c99520;
    --secondary: #eeeeeb;
    --accent: #e2ab2a;
    --dark: #000000;
    --surface: #0a0a0a;
    --surface-light: #1a1a1a;
    --white: #eeeeeb;
    --text-primary: #eeeeeb;
    --text-secondary: #b8b8b5;
    --gradient-hero: linear-gradient(135deg, #e2ab2a 0%, #f0c04a 50%, #c99520 100%);
    --gradient-accent: linear-gradient(135deg, #e2ab2a 0%, #f0c04a 100%);
    --gradient-card: linear-gradient(135deg, rgba(226, 171, 42, .1) 0%, rgba(240, 192, 74, .08) 100%);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;
    --space-8: 6rem;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-bounce: cubic-bezier(.68, -.55, .265, 1.55);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, .4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, .5);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, .6);
    --shadow-glow: 0 0 40px rgba(226, 171, 42, .4);
    --shadow-accent: 0 0 30px rgba(226, 171, 42, .5);
}

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

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

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

/* Background Pattern - Black, Cream & Gold */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(226, 171, 42, .12) 0%, transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(226, 171, 42, .08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(238, 238, 235, .03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle Grid Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(226, 171, 42, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 171, 42, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    opacity: .5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s var(--ease);
}

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-5);
    position: relative;
    z-index: 1;
}

.section {
    padding: var(--space-8) 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-3);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto var(--space-6);
    line-height: 1.8;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto var(--space-6);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-6);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    transition: all .4s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-display);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    transition: width .6s, height .6s, top .6s, left .6s;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(226, 171, 42, .5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--gradient-accent);
    color: var(--dark);
    border-color: var(--primary);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 171, 42, .2);
    transition: all .3s var(--ease);
}

.header.scrolled {
    background: rgba(0, 0, 0, .98);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    gap: var(--space-4);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    transition: transform .3s var(--ease);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.nav-link {
    font-weight: 600;
    font-size: .95rem;
    position: relative;
    padding: var(--space-2) 0;
    transition: color .3s var(--ease);
    font-family: var(--font-display);
    letter-spacing: .5px;
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width .3s var(--ease);
    border-radius: var(--radius-full);
}

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

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

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: rgba(226, 171, 42, .1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 171, 42, .3);
}

.lang-btn {
    padding: var(--space-2) var(--space-3);
    font-size: .85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all .3s var(--ease);
    text-transform: uppercase;
    color: var(--text-secondary);
    font-family: var(--font-display);
}

.lang-btn.active {
    background: var(--gradient-hero);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.lang-btn:hover:not(.active) {
    background: rgba(226, 171, 42, .2);
    color: var(--white);
}

.lang-divider {
    color: rgba(226, 171, 42, .4);
    font-weight: 300;
}

/* ==========================================================================
   Hamburger Menu
   ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all .3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 85px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center top, rgba(226, 171, 42, .15) 0%, transparent 50%),
        radial-gradient(ellipse at center bottom, rgba(238, 238, 235, .05) 0%, transparent 50%);
    animation: hero-pulse 10s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .85;
        transform: scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto var(--space-5);
    animation: float 4s ease-in-out infinite;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    animation: title-glow 4s ease-in-out infinite;
    padding: 0.1em 0;
}

@keyframes title-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(226, 171, 42, .4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(226, 171, 42, .7));
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--primary);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: var(--space-6);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: rgba(10, 10, 10, .9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 2px solid rgba(226, 171, 42, .15);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 171, 42, .08), transparent);
    transition: left .6s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.card-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto var(--space-4);
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: all .4s var(--ease-bounce);
    border: 2px solid rgba(226, 171, 42, .25);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-hero);
    color: var(--dark);
}

.card-icon-img {
    background: transparent;
    border: none;
    padding: 0;
}

.card-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(226, 171, 42, .5));
}

.card:hover .card-icon-img {
    background: transparent;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
    transition: fill .3s var(--ease);
}

.card:hover .card-icon svg {
    fill: var(--dark);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    text-align: center;
    color: var(--white);
}

.card-text {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-7);
}

/* ==========================================================================
   Menu Slider
   ========================================================================== */
.menu-slider {
    position: relative;
    max-width: 1100px;
    margin: var(--space-7) auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(226, 171, 42, .25);
}

.menu-slides {
    display: flex;
    transition: transform .5s var(--ease);
}

.menu-slide {
    min-width: 100%;
    position: relative;
}

.menu-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    pointer-events: none;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    background: rgba(226, 171, 42, .95);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dark);
    cursor: pointer;
    transition: all .3s var(--ease);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-accent);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(226, 171, 42, .3);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.slider-dot.active {
    background: var(--primary);
    width: 35px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-7);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 3px solid rgba(226, 171, 42, .2);
    transition: all .4s var(--ease);
}

.gallery-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 171, 42, .9), rgba(201, 149, 32, .9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s var(--ease);
}

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

.gallery-icon {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
    border: 3px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark);
    transform: scale(0) rotate(-180deg);
    transition: transform .4s var(--ease-bounce);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1) rotate(0);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-4);
    background: linear-gradient(to top, rgba(0, 0, 0, .95), transparent);
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-display);
    text-align: center;
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

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

/* ==========================================================================
   Bulk Order Section
   ========================================================================== */
.bulk-order {
    background: linear-gradient(180deg, transparent 0%, rgba(226, 171, 42, .03) 50%, transparent 100%);
}

.bulk-content {
    max-width: 750px;
    margin: 0 auto;
}

.bulk-card {
    background: rgba(10, 10, 10, .95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-7);
    border: 2px solid rgba(226, 171, 42, .25);
    text-align: center;
}

.bulk-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--space-5);
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    border: 2px solid rgba(226, 171, 42, .25);
}

.bulk-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.bulk-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.bulk-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.bulk-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.bulk-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.check-icon {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.bulk-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(226, 171, 42, .05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 171, 42, .12);
    transition: all .3s var(--ease);
}

.contact-item:hover {
    background: rgba(226, 171, 42, .1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 171, 42, .25);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.contact-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.contact-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.contact-text a:hover {
    text-decoration: underline;
}

.hours-card {
    background: rgba(226, 171, 42, .05);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    border: 1px solid rgba(226, 171, 42, .12);
}

.hours-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--white);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(226, 171, 42, .1);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: var(--space-2) 0;
    color: var(--text-secondary);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--primary);
    font-weight: 600;
}

.hours-24-7 {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(226, 171, 42, .5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(226, 171, 42, .8));
    }
}

.hours-note {
    margin-top: var(--space-3);
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(226, 171, 42, .1);
    border: 2px solid rgba(226, 171, 42, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
    font-size: 1.3rem;
    color: var(--primary);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    stroke: var(--primary);
}

.social-link i {
    color: var(--primary);
    transition: color .3s var(--ease);
}

.social-link:hover {
    background: var(--gradient-hero);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-glow);
}

.social-link:hover svg {
    fill: var(--dark);
    stroke: var(--dark);
}

.social-link:hover i {
    color: var(--dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(226, 171, 42, .2);
    height: 100%;
    min-height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--surface);
    border-top: 2px solid rgba(226, 171, 42, .2);
    padding: var(--space-7) 0 var(--space-5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

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

.footer-logo {
    width: 140px;
    height: auto;
    margin: 0 auto var(--space-3);
}

.footer-brand p {
    color: var(--text-secondary);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-4);
    color: var(--primary);
}

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

.footer-links a {
    color: var(--text-secondary);
    transition: all .3s var(--ease);
    padding: var(--space-1) 0;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: var(--space-2);
}

.footer-contact p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--primary);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-5);
    border-top: 1px solid rgba(226, 171, 42, .12);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: .875rem;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
}

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

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(226, 171, 42, .95);
    border: 2px solid var(--white);
    color: var(--dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.lightbox-close:hover {
    background: var(--white);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    background: rgba(226, 171, 42, .95);
    border: 2px solid var(--white);
    color: var(--dark);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.lightbox-prev {
    left: var(--space-5);
}

.lightbox-next {
    right: var(--space-5);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* ==========================================================================
   Menu Viewer Modal
   ========================================================================== */
.menu-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .98);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
}

.menu-viewer.active {
    opacity: 1;
    visibility: visible;
}

.menu-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-5);
    background: rgba(0, 0, 0, .9);
    border-bottom: 1px solid rgba(226, 171, 42, .3);
}

.menu-viewer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-viewer-page {
    font-size: .9rem;
    color: var(--text-secondary);
}

.menu-viewer-controls {
    display: flex;
    gap: var(--space-2);
}

.menu-viewer-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(226, 171, 42, .15);
    border: 1px solid rgba(226, 171, 42, .3);
    color: var(--primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.menu-viewer-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.menu-viewer-content {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    cursor: grab;
}

.menu-viewer-content:active {
    cursor: grabbing;
}

.menu-viewer-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s var(--ease);
    transform-origin: center center;
}

.menu-viewer-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    user-select: none;
    -webkit-user-drag: none;
}

.menu-viewer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: rgba(0, 0, 0, .9);
    border-top: 1px solid rgba(226, 171, 42, .3);
}

.menu-viewer-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    border: 2px solid var(--white);
    color: var(--dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s var(--ease);
}

.menu-viewer-nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.menu-viewer-nav-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.menu-viewer-thumbnails {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    max-width: 70vw;
    padding: var(--space-2);
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(0, 0, 0, .3);
}

.menu-viewer-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.menu-viewer-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .3);
    border-radius: var(--radius-full);
}

.menu-viewer-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

.menu-thumb {
    width: 60px;
    height: 80px;
    min-width: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s var(--ease);
    opacity: .6;
}

.menu-thumb:hover {
    opacity: 1;
}

.menu-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: var(--shadow-glow);
}

.menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make menu slides clickable */
.menu-slide {
    cursor: pointer;
    transition: transform .3s var(--ease);
}

.menu-slide:hover {
    transform: scale(1.02);
}

.menu-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 40%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    pointer-events: none;
}

.menu-slide:hover::after {
    opacity: 1;
}

.menu-slide .click-hint {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--primary);
    color: var(--dark);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 600;
    opacity: 0;
    transition: all .3s var(--ease);
    pointer-events: none;
    white-space: nowrap;
}

.menu-slide:hover .click-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   Fixed WhatsApp Button - Site Theme Styled
   ========================================================================== */
.whatsapp-fixed {
    position: fixed;
    bottom: var(--space-5);
    right: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    z-index: 1500;
    text-decoration: none;
    animation: whatsapp-float 3s ease-in-out infinite;
}

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

.whatsapp-fixed:hover {
    animation: none;
    transform: scale(1.05);
}

.whatsapp-text {
    background: var(--dark);
    color: var(--primary);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 2px solid var(--primary);
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: all .3s var(--ease);
}

.whatsapp-fixed:hover .whatsapp-text {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 73px;
    height: 73px;
    border-radius: var(--radius-full);
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--dark);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transition: all .3s var(--ease);
    border: 3px solid var(--primary-light);
}

.whatsapp-fixed:hover .whatsapp-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(226, 171, 42, .7);
}

/* ==========================================================================
   Menu Slider Touch & Page Turn Effect
   ========================================================================== */
.menu-slides {
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.menu-slide {
    position: relative;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform .6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-slide.turning-left {
    animation: page-turn-left .6s ease-in-out;
}

.menu-slide.turning-right {
    animation: page-turn-right .6s ease-in-out;
}

@keyframes page-turn-left {
    0% {
        transform: perspective(1200px) rotateY(0deg);
        transform-origin: left center;
    }
    50% {
        transform: perspective(1200px) rotateY(-15deg);
        transform-origin: left center;
    }
    100% {
        transform: perspective(1200px) rotateY(0deg);
        transform-origin: left center;
    }
}

@keyframes page-turn-right {
    0% {
        transform: perspective(1200px) rotateY(0deg);
        transform-origin: right center;
    }
    50% {
        transform: perspective(1200px) rotateY(15deg);
        transform-origin: right center;
    }
    100% {
        transform: perspective(1200px) rotateY(0deg);
        transform-origin: right center;
    }
}

/* Menu slide images fit properly */
.menu-slide img {
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Gallery swipe support */
.gallery-grid {
    touch-action: pan-y pinch-zoom;
}

.gallery-item {
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: var(--space-4);
        right: var(--space-3);
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .whatsapp-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .whatsapp-text {
        font-size: .85rem;
        padding: var(--space-2) var(--space-3);
        order: -1;
    }
    
    .menu-slide img {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .menu-viewer-header {
        padding: var(--space-2) var(--space-3);
    }
    
    .menu-viewer-title {
        font-size: 1rem;
    }
    
    .menu-viewer-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .menu-viewer-content {
        padding: var(--space-2);
    }
    
    .menu-viewer-nav {
        padding: var(--space-2) var(--space-3);
    }
    
    .menu-viewer-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .menu-thumb {
        width: 50px;
        height: 65px;
        min-width: 50px;
    }
    
    .menu-viewer-thumbnails {
        max-width: 60vw;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-6);
        transition: right .4s var(--ease);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-4);
    }

    .nav-link {
        font-size: 1.3rem;
        padding: var(--space-3) 0;
    }

    .hamburger {
        display: flex;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
    }

    .hero-logo {
        width: 160px;
    }

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

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

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .bulk-card {
        padding: var(--space-5);
    }

    .bulk-buttons {
        flex-direction: column;
    }

    .bulk-buttons .btn {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }

    .header-content {
        height: 70px;
    }

    .logo-img {
        height: 45px;
    }

    .language-switcher {
        padding: var(--space-1) var(--space-2);
    }

    .lang-btn {
        padding: var(--space-1) var(--space-2);
        font-size: .75rem;
    }

    .hero-logo {
        width: 130px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .lightbox-close {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
        top: var(--space-3);
        right: var(--space-3);
    }
}
