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

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
    color: #333;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: #FF6B35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B35;
}

.login-btn {
    background: linear-gradient(45deg, orange, red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.login-btn:hover {
    background: red;
    transform: scale(1.05);
}

/* HERO */
.hero {
    background: #333 url('menu.jpeg') no-repeat center center/cover;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 60px;
    color: white;
}

.hero-content {
    background: transparent;
    backdrop-filter: none;
    padding: 50px;
    border-radius: 15px;
    color: white;
    text-align: left;
    max-width: 600px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(45deg, orange, red);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    background: red;
}

/* MENU */
.menu {
    padding: 50px 5%;
    text-align: center;
}

.menu h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* GRID */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* CARD */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-align: center;
    padding-bottom: 15px;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.card h3 {
    margin: 10px 0 5px;
    padding: 0 10px;
}

.card p {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

.price {
    color: #ff4d4d;
    font-weight: bold;
    margin: 10px 0;
    font-size: 18px;
}

/* BUTTON */
.card button {
    background: linear-gradient(45deg, orange, red);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.card button:hover {
    background: red;
    transform: scale(1.05);
}

/* Offers Section */
.offers {
    padding: 60px 5%;
    background: #f8f8f8;
    text-align: center;
}

.offers h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: gray;
    margin-bottom: 40px;
}

/* Container */
.offer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(45deg, orange, red);
    color: white;
    padding: 25px;
    width: 250px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.offer-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.offer-card p {
    margin-bottom: 15px;
}

/* Coupon */
.coupon {
    display: block;
    background: white;
    color: red;
    padding: 8px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Button */
.offer-card button {
    background: white;
    color: red;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

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

/* Hover Effect */
.offer-card:hover {
    transform: translateY(-10px);
}

/* About Section */
.about {
    padding: 60px 5%;
    background: #ffffff;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image */
.about-image img {
    width: 350px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Content */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Features */
.about-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 140px;
    text-align: center;
    transition: 0.3s ease;
}

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

.feature h4 {
    margin-bottom: 5px;
}

/* FOOTER */
.footer {
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 16px 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #5E5E5E;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #E63946;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.copyright {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.developer-credit {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.mt-32 {
    margin-top: 32px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5E5E5E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.social-icons a:hover {
    border-color: #E63946;
    color: #E63946;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 5%;
    }
    
    .hero {
        padding: 0 5%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero {
        height: 70vh;
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        padding: 30px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 300px;
    }

    .about-features {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .brand-col .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 14px;
        gap: 10px;
    }
    
    .login-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}