/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s ease;
}

.cta-btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #c0392b;
}

/* ============================================
   HERO SECTION
   ============================================ */




  .hero{
    height: 100vh;
    background:
    linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
    url("WhatsApp Image 2026-06-06 at 4.31.52 AM.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-content{
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;

}


.hero-content h1{
    font-size: 70px;
    color: white;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0,0,0,.8);
}

.hero-content p {
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,.8);
}

.cta-btn-large {
    background-color: #e74c3c;
    color: white;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu {
    padding: 5rem 20px;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: #e74c3c;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    background-color: #ecf0f1;
    color: #2c3e50;
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover {
    background-color: #bdc3c7;
}

.category-btn.active {
    background-color: #e74c3c;
    color: white;
    border-color: #c0392b;
}

/* Menu Grid */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Menu Item Cards */
.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-item h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.menu-item p {
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.price {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 20px 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ecf0f1;
    padding: 8px 15px;
    background-color: #2c3e50;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e74c3c;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2c3e50;
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */

@media (max-width: 768px) {
    /* Header */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        gap: 0;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        border-bottom: 1px solid #34495e;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
    }

    .cta-btn {
        display: none;
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 2rem 20px;
        min-height: auto;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        max-width: 100%;
    }

    /* Menu Section */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .menu-item img {
        height: 150px;
    }

    .menu-item h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo h1 {
        font-size: 1.3rem;
    }

    .nav {
        gap: 0.5rem;
    }

    /* Hero Section */
    .hero-content h2 {
        font-size: 1.5rem;
    }

    /* Menu */
    .section-title {
        font-size: 1.5rem;
    }

    .category-tabs {
        flex-direction: column;
        gap: 0;
    }

    .category-btn {
        width: 100%;
        border-radius: 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #e74c3c;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ============================================
   CART ITEM STYLES
   ============================================ */

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid #e74c3c;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #e74c3c;
    font-weight: 600;
}

.cart-item-remove {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background-color: #c0392b;
}

/* ============================================
   ADD TO CART BUTTON
   ============================================ */

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.add-to-cart-btn:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header,
    .hero,
    .footer,
    .modal {
        display: none;
    }

    .menu {
        padding: 0;
    }

    .menu-item {
        page-break-inside: avoid;
    }
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:#e74c3c;
    color:white;
    border-radius:30px;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s;
}

.hero-btn:hover{
    background:#c0392b;
    transform:translateY(-3px);
}

