/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #FFE4B5, #F0E68C);
    padding: 3rem 0;
    text-align: center;
}

.pricing-notice {
    background: #FFE4B5;
    color: #8B4513;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
    border: 3px solid #D2691E;
}

.pricing-notice h2 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #D2691E;
    text-decoration: none;
    background: #f8f8f8;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 1rem 0;
    transition: all 0.3s ease;
    border: 2px solid #D2691E;
}

.phone-number:hover {
    background: #D2691E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.coming-soon {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-top: 1rem;
}

/* Menu section */
.menu {
    padding: 4rem 0;
    background: white;
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 3rem;
    font-weight: 600;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: #D2691E;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.menu-item {
    background: #fef7e0;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: #D2691E;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.item-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.menu-item h4 {
    font-size: 1.4rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item p {
    color: #666;
    font-size: 1rem;
}

/* Delivery info */
.delivery-info {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.delivery-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.delivery-areas {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.area {
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.delivery-note {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .pricing-notice h2 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    .menu h2 {
        font-size: 2rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .delivery-areas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .delivery-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.3rem;
        padding: 0.7rem 1.2rem;
    }
}
