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

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

:root {
    --color-primary: #4D3708;
    --color-accent: #FEB81C;
    --color-white: #FFFFFF;
    --color-light-gray: #EDEDED;
    --color-dark-gray: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-dark-gray);
    font-display: swap;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-primary);
}

.section-title.dark {
    color: var(--color-primary);
}

.section-title.light {
    color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
    font-weight: 400;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 184, 28, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(254, 184, 28, 0.5);
    background: #ffc640;
}

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

.cta-button.secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--color-primary);
    background-image: 
        linear-gradient(rgba(77, 55, 8, 0.85), rgba(77, 55, 8, 0.85)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234D3708" width="1200" height="600"/><circle cx="200" cy="100" r="80" fill="%23FEB81C" opacity="0.05"/><circle cx="800" cy="400" r="120" fill="%23FEB81C" opacity="0.05"/><circle cx="1000" cy="150" r="60" fill="%23FEB81C" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 1s ease;
}

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

.logo-image {
    max-width: 500px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

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

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--color-light-gray);
    font-weight: 400;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--color-accent);
    animation: bounce 2s infinite;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: var(--color-accent);
}

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

.menu-column {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-column:hover {
    transform: translateY(-5px);
}

.menu-category {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-category .icon {
    font-size: 2.5rem;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    gap: 10px;
}

.menu-item h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.menu-item .price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

/* Hours Section */
.hours {
    padding: 80px 0;
    background: var(--color-white);
}

.hours-table {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--color-light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #ddd;
}

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

.hours-row.closed {
    background: #f8f8f8;
    opacity: 0.7;
}

.hours-row .day {
    font-weight: 600;
    color: var(--color-primary);
}

.hours-row .time {
    color: var(--color-dark-gray);
    font-weight: 500;
}

.hours-note {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* Event Section */
.event {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.event-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--color-dark-gray);
}

.event-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.feature h4 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateX(5px);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-light-gray);
    transition: opacity 0.3s ease;
}

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

.map-loader p {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 600;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-light-gray);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: #2a1d05;
    color: var(--color-light-gray);
    text-align: center;
}

.footer p {
    margin: 5px 0;
}

.footer-love {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-credit a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 350px;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .event-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .menu-category {
        font-size: 1.5rem;
    }
}

