/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

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

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideDown 0.6s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideUp 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    background-color: #FF6B6B;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #FF5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

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

.about-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #667eea;
}

.about-container p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    color: #FFE66D;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(to bottom, #ffecd2 0%, #fcb69f 100%);
    padding: 4rem 2rem;
}

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

.menu-container > h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #764ba2;
}

.menu-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.menu-category h3 {
    font-size: 1.8rem;
    color: #FF6B6B;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #FFE66D;
    padding-bottom: 0.5rem;
}

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

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item h4 {
    font-size: 1.2rem;
    color: #333;
}

.price {
    background-color: #FF6B6B;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
}

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

/* Offers Section */
.offers {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
}

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

.offers-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

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

.offer-card {
    padding: 2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: 0.3s ease;
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.offer-card p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.offer-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
}

.offer-card.pink {
    background-color: #FF6B6B;
}

.offer-card.green {
    background-color: #4ECDC4;
}

.offer-card.blue {
    background-color: #45B7D1;
}

.offer-card:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    padding: 2rem;
    border-radius: 10px;
    display: inline-block;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .about-container h2,
    .contact-container h2,
    .menu-container > h2,
    .offers-container h2 {
        font-size: 1.8rem;
    }
}