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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #d62d20, #b8221a);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.burger-icon {
    width: 45px;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3px 0;
}

.bun-top, .bun-bottom {
    width: 100%;
    height: 9px;
    background: linear-gradient(45deg, #deb887, #d2b48c);
    border-radius: 12px 12px 4px 4px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.bun-bottom {
    border-radius: 4px 4px 12px 12px;
}

.lettuce {
    width: 92%;
    height: 4px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    margin-left: 4%;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.tomato {
    width: 85%;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    margin-left: 7.5%;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.patty {
    width: 88%;
    height: 7px;
    background: linear-gradient(45deg, #8B4513, #654321);
    margin-left: 6%;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cheese {
    width: 92%;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #ffc107);
    margin-left: 4%;
    border-radius: 1px;
}

.logo-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Main Content */
.main-content {
    padding: 0;
    background: linear-gradient(135deg, #fafafa, #f0f2f5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #d62d20, #b8221a);
    color: white;
    padding: 60px 0;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-content {
    flex: 2;
    padding-right: 40px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
}

.hero-text strong {
    color: #FFD700;
    font-weight: bold;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.food-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.showcase-item {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: 1s;
}

.showcase-item:nth-child(3) {
    animation-delay: 2s;
}

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

.burrito-show {
    background: linear-gradient(45deg, #f4e4bc, #e8d5a3);
    border: 3px solid rgba(255,255,255,0.3);
}

.croissant-show {
    background: linear-gradient(45deg, #f4d03f, #f7dc6f);
    border: 3px solid rgba(255,255,255,0.3);
}

.burger-show {
    background: linear-gradient(45deg, #d4a574, #8B4513);
    border: 3px solid rgba(255,255,255,0.3);
}

/* Menu Sections */
.menu-section {
    padding: 50px 0;
    border-bottom: 1px solid #e9ecef;
}

.menu-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 2.5rem;
    color: #d62d20;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-intro {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 10px;
    border-left: 4px solid #d62d20;
}

.section-intro p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Table Styles */
.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.menu-table thead {
    background: linear-gradient(135deg, #d62d20, #b8221a);
    color: white;
}

.menu-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f3f4;
    transition: background-color 0.3s ease;
}

.menu-table tr:hover {
    background-color: #f8f9fa;
}

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

.price {
    font-weight: bold;
    color: #d62d20;
    font-size: 16px;
}

.calories {
    color: #666;
    font-weight: 500;
}

/* Subsection Title */
.subsection-title {
    font-size: 1.8rem;
    color: #d62d20;
    margin: 40px 0 20px 0;
    font-weight: bold;
    border-bottom: 2px solid #d62d20;
    padding-bottom: 8px;
    display: inline-block;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    border-radius: 15px;
    margin: 30px 0;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(214, 45, 32, 0.1);
    border: 2px solid rgba(214, 45, 32, 0.1);
}

.highlight-section .section-title {
    color: #d62d20;
    margin-bottom: 25px;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #d62d20, #b8221a);
    color: white;
    text-align: center;
    padding: 60px 40px;
    margin: 50px 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(214, 45, 32, 0.3);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #ffc107);
    color: #333;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #fff700, #ffed4e);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 4px solid #d62d20;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer p:first-child {
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .menu-table {
        font-size: 12px;
    }
    
    .menu-table th,
    .menu-table td {
        padding: 10px 8px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .menu-table th {
        font-size: 12px;
    }
    
    .showcase-item {
        width: 60px;
        height: 45px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}