/* Color Palette - el chilero Brand */
:root {
    /* Primary Colors - Green tones for organic/natural */
    --primary-green: #2D5A27;
    --light-green: #4A7C59;
    --accent-green: #6B8E5A;
    --soft-green: #A8C09A;
    
    /* Secondary Colors - Warm earth tones for Mexican heritage */
    --warm-orange: #D2691E;
    --burnt-orange: #CD853F;
    --terracotta: #E2725B;
    --golden-yellow: #F4A460;
    
    /* Neutral Colors - Clean whites and grays */
    --pure-white: #FFFFFF;
    --cream-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    
    /* Accent Colors */
    --fresh-mint: #98E4D6;
    --vibrant-coral: #FF6B6B;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--primary-green);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    color: var(--light-green);
}

h4 {
    font-size: 1.3rem;
    color: var(--dark-gray);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-white) 0%, var(--light-gray) 100%);
    padding: 120px 20px 80px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, var(--soft-green) 0%, var(--fresh-mint) 100%);
    opacity: 0.1;
    z-index: 1;
    max-width: 50vw;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--warm-orange);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--light-green);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--pure-white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1rem;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--medium-gray);
    font-size: 1rem;
}

/* Nutrition Section */
.nutrition {
    background: var(--pure-white);
}

.nutrition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.nutrition-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.nutrition-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.benefit h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.benefit-bar {
    height: 8px;
    background: var(--soft-green);
    border-radius: 4px;
    overflow: hidden;
}

.benefit-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-green) 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Menu Section */
.menu {
    background: var(--light-gray);
}

.menu-categories {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.menu-category h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.menu-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warm-orange);
}

/* Order Section */
.order {
    background: var(--pure-white);
}

.delivery-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.delivery-btn:hover {
    box-shadow: var(--box-shadow);
    border-color: var(--primary-green);
}

.delivery-icon {
    font-size: 2.5rem;
}

.delivery-text h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.delivery-text p {
    color: var(--medium-gray);
    margin: 0;
}

.grubhub:hover {
    background: linear-gradient(135deg, #FF8000 0%, #FFA500 100%);
    color: white;
}

.ubereats:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.doordash:hover {
    background: linear-gradient(135deg, #FF3008 0%, #FF6B35 100%);
    color: white;
}

.postmates:hover {
    background: linear-gradient(135deg, #00D4AA 0%, #00B894 100%);
    color: white;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--pure-white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--soft-green);
    margin-bottom: 0.5rem;
}

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

.social-links a {
    color: var(--soft-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-green);
}

.footer-bottom p {
    color: var(--soft-green);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--pure-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero-food-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .about-content,
    .nutrition-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        max-width: 100%;
    }
    
    .delivery-platforms {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero-food-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Professional hover effects - subtle only */
.feature:hover,
.menu-item:hover,
.delivery-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
