:root {
    --primary: #e63946;
    --secondary: #ffb703;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: var(--light); color: var(--dark); overflow-x: hidden; scroll-behavior: smooth; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Navbar */
.navbar { height: 80px; display: flex; align-items: center; background: var(--white); position: sticky; top:0; z-index: 1000; box-shadow: var(--shadow); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-text { font-family: 'Playfair Display', serif; color: var(--dark); }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.call-btn { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 50px; }

/* Hero Section */
#hero { position: relative; height: 90vh; display: flex; align-items: center; overflow: hidden; color: white; }
.hero-slider { position: absolute; top:0; left:0; width: 100%; height: 100%; z-index: -2; }
.slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.slide.active { opacity: 1; }
.hero-overlay { position: absolute; top:0; left:0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.8), transparent); z-index: -1; }

.hero-content { animation: fadeInUp 1s ease; }
.badge { background: var(--secondary); color: var(--dark); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 0.9rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; margin: 20px 0; }
.hero-content h1 span { color: var(--secondary); }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; opacity: 0.9; }
.hero-btns { display: flex; gap: 20px; }
.btn-main { background: var(--primary); color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-outline { border: 2px solid white; color: white; padding: 13px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }
.btn-main:hover { transform: scale(1.05); background: var(--secondary); color: var(--dark); }

/* Menu Grid Card Design */
.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 3rem; font-family: 'Playfair Display', serif; }
.cat-label { font-size: 2rem; margin: 40px 0 20px; border-left: 5px solid var(--primary); padding-left: 15px; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; }
.menu-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; position: relative; }
.menu-card:hover { transform: translateY(-10px); }
.menu-img { height: 200px; width: 100%; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.menu-card:hover .menu-img img { transform: scale(1.1); }
.menu-info { padding: 20px; text-align: center; }
.menu-info h4 { font-size: 1.2rem; margin-bottom: 10px; }
.menu-price { color: var(--primary); font-weight: 800; font-size: 1.3rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .menu-grid { grid-template-columns: 1fr; }
}

/* Contact Section Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info chota, Map bada */
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light);
    border-radius: 15px;
    transition: 0.3s;
}

.info-card:hover {
    background: #fff1f1;
    transform: translateX(10px);
}

.info-card .icon {
    font-size: 1.8rem;
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.info-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-card p, .info-card a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.final-footer {
    text-align: center;
    padding: 30px;
    background: var(--dark);
    color: white;
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Mobile Fix for Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-map iframe {
        height: 300px;
    }
}
/* Tablet & Mobile Optimization */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem; /* Mobile pe heading thodi chhoti taaki screen se bahar na jaye */
    }
    
    .hero-btns {
        flex-direction: column; /* Buttons ek ke niche ek aayenge mobile pe */
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        padding: 20px; /* Mobile pe padding kam */
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
}