/* ============================================
   FRIDA & DIEGO - Mexican Restaurant Website
   A tribute to Frida Kahlo & Diego Rivera
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Matched to Frida & Diego Logo */
    --terracotta: #A63D2F;
    --rust-red: #8B3A2F;
    --gold: #C9A227;
    --mustard: #D4A84B;
    --forest-green: #0F2924;
    --deep-green: #132E28;
    --teal: #1A4A40;
    --cream: #F5E6C8;
    --warm-white: #FDF8F0;
    --charcoal: #0A1F1A;
    --soft-black: #081914;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, var(--terracotta) 0%, var(--rust-red) 50%, var(--gold) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--mustard) 100%);
    --gradient-cool: linear-gradient(135deg, var(--deep-green) 0%, var(--teal) 100%);
    --gradient-dark: linear-gradient(180deg, var(--soft-black) 0%, var(--forest-green) 100%);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Josefin Sans', 'Helvetica Neue', sans-serif;
    --font-accent: 'Libre Baskerville', Georgia, serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--soft-black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s var(--transition-smooth);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.navbar.scrolled .nav-logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width 0.3s var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-toggle:hover {
    border-color: var(--gold);
    background: rgba(233, 196, 106, 0.1);
}

.lang-active {
    color: var(--gold);
    font-weight: 600;
}

.lang-inactive {
    opacity: 0.5;
}

.lang-divider {
    opacity: 0.3;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s var(--transition-smooth);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--soft-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(166, 61, 47, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 230, 200, 0.05) 0%, transparent 70%);
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 320px;
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: logoReveal 1.2s ease-out;
}

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-flowers {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-flowers-left {
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-flowers-right {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(166, 61, 47, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-55%) scale(1.05); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.title-frida {
    background: linear-gradient(135deg, var(--gold) 0%, var(--mustard) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out;
}

.title-ampersand {
    font-style: italic;
    color: var(--gold);
    font-size: 0.5em;
    animation: titleReveal 1s ease-out 0.2s backwards;
}

.title-diego {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out 0.4s backwards;
}

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

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    animation: fadeUp 1s ease-out 0.6s backwards;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    animation: fadeUp 1s ease-out 0.8s backwards;
}

.icon-pin {
    width: 18px;
    height: 18px;
    color: var(--terracotta);
}

.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-warm);
    color: var(--soft-black);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.4s var(--transition-smooth);
    animation: fadeUp 1s ease-out 1s backwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

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

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
    animation: fadeUp 1s ease-out 1.2s backwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   SECTION STYLES (Shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-light .section-title,
.section-header-light .section-desc {
    color: var(--cream);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--terracotta);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(250, 243, 224, 0.7);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Bento Grid Layout */
.about-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--transition-smooth);
}

.bento-card-inner {
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bento-card:hover {
    transform: translateY(-6px);
}

/* Main Story Card - Full Width */
.bento-main {
    grid-column: span 12;
    background: linear-gradient(135deg, var(--deep-forest-green) 0%, rgba(43, 63, 52, 0.95) 100%);
    border: 1px solid rgba(233, 196, 106, 0.2);
    min-height: 280px;
}

.bento-main .bento-card-inner {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-main:hover {
    border-color: var(--golden-mustard);
    box-shadow: 0 20px 60px rgba(43, 63, 52, 0.4);
}

.bento-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(233, 196, 106, 0.15);
    border: 1px solid rgba(233, 196, 106, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden-mustard);
    margin-bottom: 1.5rem;
    width: fit-content;
}

.bento-main h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--cream-flowers);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(250, 240, 230, 0.85);
    max-width: 700px;
}

.bento-decorative {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
}

.bento-decorative svg {
    width: 100%;
    height: 100%;
}

/* Atmosphere Card */
.bento-atmosphere {
    grid-column: span 6;
    background: linear-gradient(145deg, rgba(207, 92, 54, 0.15) 0%, rgba(207, 92, 54, 0.05) 100%);
    border: 1px solid rgba(207, 92, 54, 0.25);
    backdrop-filter: blur(10px);
}

.bento-atmosphere:hover {
    border-color: var(--terracotta-red);
    background: linear-gradient(145deg, rgba(207, 92, 54, 0.2) 0%, rgba(207, 92, 54, 0.08) 100%);
}

/* Location Card */
.bento-location {
    grid-column: span 6;
    background: linear-gradient(145deg, rgba(233, 196, 106, 0.12) 0%, rgba(233, 196, 106, 0.04) 100%);
    border: 1px solid rgba(233, 196, 106, 0.2);
    backdrop-filter: blur(10px);
}

.bento-location:hover {
    border-color: var(--golden-mustard);
    background: linear-gradient(145deg, rgba(233, 196, 106, 0.18) 0%, rgba(233, 196, 106, 0.06) 100%);
}

/* Icon Wrapper for smaller cards */
.bento-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(250, 243, 224, 0.15);
    border: 1px solid rgba(250, 243, 224, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bento-icon-wrapper svg {
    width: 26px;
    height: 26px;
    color: var(--cream-flowers);
    stroke-width: 2;
}

.bento-atmosphere h3,
.bento-location h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream-flowers);
    margin-bottom: 0.75rem;
}

.bento-atmosphere p,
.bento-location p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(250, 240, 230, 0.75);
}

/* Features Card - Full Width */
.bento-features {
    grid-column: span 12;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.bento-features:hover {
    border-color: rgba(233, 196, 106, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(233, 196, 106, 0.1);
    border-color: rgba(233, 196, 106, 0.2);
    transform: translateY(-4px);
}

.feature-emoji {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--cream-flowers);
}

/* Responsive Bento Grid */
@media (max-width: 900px) {
    .about-bento {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .bento-main {
        grid-column: span 2;
        min-height: auto;
    }
    
    .bento-main .bento-card-inner {
        padding: 2rem;
    }
    
    .bento-atmosphere,
    .bento-location {
        grid-column: span 1;
    }
    
    .bento-features {
        grid-column: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-decorative {
        display: none;
    }
}

@media (max-width: 600px) {
    .about-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bento-main,
    .bento-atmosphere,
    .bento-location,
    .bento-features {
        grid-column: span 1;
    }
    
    .bento-card-inner {
        padding: 1.5rem;
    }
    
    .bento-main .bento-card-inner {
        padding: 1.5rem;
    }
    
    .bento-main h3 {
        font-size: 1.75rem;
    }
    
    .bento-main p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 1rem 0.75rem;
    }
    
    .feature-emoji {
        font-size: 1.5rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--soft-black) 0%, rgba(200, 75, 49, 0.1) 50%, var(--soft-black) 100%),
        var(--soft-black);
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: 1fr;
    }
}

.menu-category {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 196, 106, 0.2);
}

.menu-category:hover::before {
    transform: scaleX(1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2rem;
}

.menu-category h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}

.category-desc {
    color: rgba(250, 243, 224, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
}

.menu-badge {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-warm);
    color: var(--soft-black);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.menu-price-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(233, 196, 106, 0.1);
    border: 1px solid rgba(233, 196, 106, 0.3);
    border-radius: 100px;
    display: inline-block;
    width: 100%;
}

.menu-price-note span {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
}

.menu-downloads {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 600px) {
    .menu-downloads {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-download-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

.menu-view-btn {
    background: var(--gradient-cool);
    color: var(--cream);
}

.menu-view-btn:hover {
    box-shadow: 0 15px 40px rgba(26, 74, 64, 0.4);
}

.menu-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-warm);
    color: var(--soft-black);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.4s var(--transition-smooth);
}

.menu-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.menu-download-btn svg {
    width: 20px;
    height: 20px;
}

.menu-download-btn-alt {
    background: var(--gradient-gold);
}

/* ============================================
   DRINKS SECTION - Cocktails
   ============================================ */
.drinks-category {
    margin-bottom: 3rem;
}

.drinks-category-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.drinks-category-subtitle {
    text-align: center;
    color: rgba(250, 243, 224, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .drinks-grid {
        grid-template-columns: 1fr;
    }
}

.drink-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s var(--transition-smooth);
}

.drink-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.drink-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.drink-ingredients {
    display: block;
    font-size: 0.85rem;
    color: rgba(250, 243, 224, 0.6);
    line-height: 1.5;
}

.drinks-grid-compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .drinks-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .drinks-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

.drink-item-compact {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--cream);
    transition: all 0.3s var(--transition-smooth);
}

.drink-item-compact:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.1);
}

/* ============================================
   BEVERAGES SECTION - Beer, Wine, Soft Drinks
   ============================================ */
.beverages {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.beverages-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--charcoal) 0%, rgba(201, 162, 39, 0.08) 50%, var(--charcoal) 100%),
        var(--charcoal);
}

.beverages .container {
    position: relative;
    z-index: 1;
}

.beverages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .beverages-grid {
        grid-template-columns: 1fr;
    }
}

.beverage-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--transition-smooth);
}

.beverage-category:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.beverage-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.beverage-icon {
    font-size: 1.5rem;
}

.beverage-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
}

.beverage-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beverage-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.beverage-group-title {
    font-weight: 500;
    color: var(--gold);
    font-size: 0.9rem;
}

.beverage-sizes {
    font-size: 0.8rem;
    color: rgba(250, 243, 224, 0.5);
}

.beverage-items {
    font-size: 0.9rem;
    color: rgba(250, 243, 224, 0.7);
    line-height: 1.6;
}

.beverage-items span {
    display: block;
}

.beverage-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.beverage-items-grid span {
    font-size: 0.85rem;
    color: rgba(250, 243, 224, 0.7);
}

/* ============================================
   DRINKS SECTION
   ============================================ */
.drinks {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    position: relative;
}

.drinks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.drinks-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .drinks-showcase {
        grid-template-columns: 1fr;
    }
}

.drink-featured {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.4s var(--transition-smooth);
}

.drink-featured:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.drink-visual {
    position: relative;
    flex-shrink: 0;
}

.drink-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

.drink-glow-alt {
    background: radial-gradient(circle, rgba(166, 61, 47, 0.3) 0%, transparent 70%);
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.drink-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    display: block;
}

.drink-info {
    flex: 1;
}

.drink-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--gradient-cool);
    color: var(--cream);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.drink-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.drink-info p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.drinks-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 16px;
    text-align: center;
}

.note-icon {
    font-size: 2rem;
}

.drinks-note p {
    color: var(--cream);
    font-family: var(--font-accent);
    font-style: italic;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--soft-black) 0%, rgba(19, 46, 40, 0.3) 50%, var(--soft-black) 100%),
        var(--soft-black);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 196, 106, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cool);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cream);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.contact-card p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(201, 162, 39, 0.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-instagram:hover {
    border-color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
}

.social-instagram:hover svg {
    color: #E1306C;
}

.social-google:hover {
    border-color: #FBBC05;
    background: rgba(251, 188, 5, 0.1);
}

.social-google:hover svg {
    color: #FBBC05;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
    display: block;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.4s var(--transition-smooth);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ============================================
   LEGAL INFO - Allergens & Additives
   ============================================ */
.legal-info {
    padding: 4rem 0;
    background: var(--soft-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.legal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    font-size: 0.85rem;
    color: rgba(250, 243, 224, 0.5);
    font-style: italic;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.legal-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

@media (max-width: 500px) {
    .legal-list {
        grid-template-columns: 1fr;
    }
}

.legal-list li {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(250, 243, 224, 0.7);
}

.legal-number,
.legal-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    background: rgba(201, 162, 39, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    flex-shrink: 0;
}

.legal-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(250, 243, 224, 0.6);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--soft-black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(250, 243, 224, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(250, 243, 224, 0.7);
    transition: all 0.3s var(--transition-smooth);
}

.footer-social-link:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(250, 243, 224, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================ */

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hero mobile */
    .hero-logo-img {
        max-width: 200px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
    
    .hero-scroll {
        bottom: 1.5rem;
    }
    
    .scroll-line {
        height: 40px;
    }
    
    /* Section headers mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
    }
    
    /* About section mobile - handled in main bento styles */
    
    /* Menu section mobile */
    .menu-category {
        padding: 1.5rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }
    
    .menu-category h3 {
        font-size: 1.25rem;
    }
    
    .category-desc {
        font-size: 0.9rem;
    }
    
    .menu-price-note {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .menu-download-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Drinks section mobile */
    .drinks-category-title {
        font-size: 1.25rem;
    }
    
    .drink-item {
        padding: 1rem;
    }
    
    .drink-name {
        font-size: 1rem;
    }
    
    .drink-ingredients {
        font-size: 0.8rem;
    }
    
    .drinks-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .drink-item-compact {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Beverages section mobile */
    .beverage-category {
        padding: 1.5rem;
    }
    
    .beverage-header h3 {
        font-size: 1.1rem;
    }
    
    .beverage-items-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact section mobile */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-social {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
    
    .contact-map iframe {
        height: 250px;
    }
    
    /* Legal section mobile */
    .legal-header h3 {
        font-size: 1.25rem;
    }
    
    .legal-list {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .legal-list li {
        font-size: 0.8rem;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Medium phones */
@media (max-width: 600px) {
    .drinks-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    .nav-link {
        padding: 0.75rem 0.5rem;
    }
    
    .lang-toggle {
        padding: 0.6rem 1.25rem;
    }
    
    .hero-cta {
        padding: 1.125rem 2.5rem;
    }
    
    .menu-download-btn {
        padding: 1.125rem 2rem;
    }
    
    .social-link {
        padding: 1.125rem 1.5rem;
    }
    
    /* Remove hover effects on touch */
    .bento-card:hover,
    .menu-category:hover,
    .drink-item:hover,
    .beverage-category:hover,
    .contact-card:hover {
        transform: none;
    }
    
    .menu-category:hover::before {
        transform: scaleX(0);
    }
}

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

/* Scroll reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

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

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--soft-black);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-black);
}

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

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

/* ============================================
   LARGE SCREENS & FULLSCREEN
   ============================================ */
@media (min-width: 1400px) {
    :root {
        --container-max: 1600px;
    }
    
    html {
        font-size: 18px;
    }
    
    .hero-logo-img {
        max-width: 320px;
    }
    
    .hero-title {
        font-size: clamp(4rem, 8vw, 7rem);
    }
    
    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .about-bento {
        max-width: 1400px;
        gap: 2rem;
    }
    
    .bento-main .bento-card-inner {
        padding: 3.5rem 4rem;
    }
    
    .bento-main h3 {
        font-size: 3.2rem;
    }
    
    .bento-main p {
        font-size: 1.25rem;
        max-width: 800px;
    }
    
    .menu-categories {
        gap: 2.5rem;
    }
    
    .drinks-grid {
        gap: 2.5rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
}

@media (min-width: 1800px) {
    :root {
        --container-max: 1800px;
    }
    
    html {
        font-size: 20px;
    }
    
    .hero-logo-img {
        max-width: 380px;
    }
    
    .hero-title {
        font-size: clamp(5rem, 8vw, 8rem);
    }
    
    .about-bento {
        max-width: 1600px;
    }
    
    .bento-main h3 {
        font-size: 3.5rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-emoji {
        font-size: 2.5rem;
    }
}

@media (min-width: 2200px) {
    :root {
        --container-max: 2000px;
    }
    
    html {
        font-size: 22px;
    }
    
    .hero-logo-img {
        max-width: 440px;
    }
    
    .hero-title {
        font-size: clamp(6rem, 8vw, 9rem);
    }
    
    .about-bento {
        max-width: 1800px;
    }
}

