/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Colors (Light Theme & Vibrant Accents for Food) */
    --bg-color: #f7f9fc;
    --surface-color: #ffffff;
    --surface-hover: #f1f5f9;
    --text-primary: #121212;
    --text-secondary: #555555;
    
    /* Psychological Accents */
    /* Deep Orange: Stimulates appetite, creates urgency */
    --accent-primary: #ff5722; 
    --accent-hover: #e64a19;
    
    /* Warm Yellow: Venezuelan flag homage, optimistic, captures attention */
    --accent-secondary: #ffc107;
    
    /* Urgent Red */
    --urgent-color: #d32f2f;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- TOP BANNER (Scarcity & FOMO) --- */
.top-banner {
    background-color: var(--urgent-color);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

/* --- NAVBAR (Glassmorphism) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.85); /* Light Glass */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.logo span {
    color: var(--accent-primary);
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--accent-secondary);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--surface-hover);
    border-color: rgba(0, 0, 0, 0.2);
}

/* Von Restorff isolated CTA Button */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 87, 34, 0.4);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

/* Micro-animation: Pulse (Draws attention) */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* --- HERO SECTION --- */
/* The layout splits to show beautiful image and strong copy */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 5%;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark gradient to make text readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.85) 50%, rgba(13,13,13,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #ffffff; /* Explicitly white against the dark overlay */
}

.badge {
    background: rgba(255, 193, 7, 0.15);
    color: var(--accent-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.highlight {
    background: -webkit-linear-gradient(0deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-social-proof {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.stars {
    color: var(--accent-secondary);
    letter-spacing: 2px;
}

/* --- STORY SECTION (Nuestra Historia) --- */
.story-section {
    background-color: var(--surface-hover);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.story-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 400;
}

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

.story-image-container {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 193, 7, 0.2);
}

@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- SECTION STRUCTURE --- */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* --- OFFICIAL MENU LIST (Inspiration applied) --- */
.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.mt-5 {
    margin-top: 40px;
}

.category-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-secondary);
    padding-bottom: 15px;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.drinks-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.menu-item-clean {
    position: relative;
    padding-left: 25px;
    transition: transform 0.2s ease;
}

.menu-item-clean::before {
    content: "•";
    color: var(--accent-secondary);
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -10px;
}

.menu-item-clean h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
}

.menu-item-clean p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.drink-item::before {
    top: -5px; /* Adjust dot position for drinks without description */
}

.menu-item-clean:hover {
    transform: translateX(10px);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    background-color: var(--surface-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 20px 0;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
}

.info strong { display: block; }
.info span { font-size: 0.85rem; color: var(--text-secondary); }

/* --- CTA SECTION --- */
.cta-section {
    text-align: center;
    padding: 120px 5%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--surface-color) 0%, rgba(255,255,255,0) 100%);
    padding: 60px;
    border-radius: var(--radius-lg);
    border-top: 2px solid var(--accent-secondary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-container p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.small-text {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

.mt-3 { margin-top: 20px; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 60px 20px;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .brand {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 15px;
}

footer .brand span { color: var(--accent-primary); }
footer p { color: var(--text-secondary); font-size: 0.9rem; }
.copy { margin-top: 30px; opacity: 0.5; }

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

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Could add a hamburger menu in real scnenario */
    .hero h1 { font-size: 3rem; }
    .hero-bg { background-position: center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.7) 100%); }
    .hero-content {
        margin-top: 50px;
        text-align: center;
    }
    .hero-social-proof { justify-content: center; }
}


/* --- NEW MENU DESIGN (Based on Black Illustrative Menu) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;600&display=swap');

.new-menu-section {
    background-color: #FDF6E3;
    padding: 0 0 60px 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.menu-top-images {
    display: flex;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 60px;
}

.menu-top-images img {
    flex: 1;
    object-fit: cover;
}

.new-menu-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 5%;
}

.menu-category-new {
    margin-bottom: 40px;
}

.menu-heading-new {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    border-bottom: 1px solid #5a3c27;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.menu-item-new {
    margin-bottom: 15px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #222;
}

.item-name u {
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.item-name {
    font-weight: 700;
}

.item-price {
    font-weight: 700;
}

.item-desc {
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    margin-top: 4px;
}

.menu-footer-details {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    grid-column: 1 / -1;
}

.menu-footer-details p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #444;
    font-weight: 600;
}

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