/* --- 1. Variables & Reset --- */
:root {
    --gold: #d4af37;
    --dark: #121212;
    --card-bg: #1e1e1e;
    --white: #ffffff;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

/* --- 2. Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- 3. Hero Section --- */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: clamp(30px, 5vw, 60px);
    margin-bottom: 15px;
}

.main-btn {
    padding: 12px 30px;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.main-btn:hover {
    background-color: var(--white);
    transform: translateY(-2px);
}

/* --- 4. Menu Section --- */
.menu-section {
    padding: 60px 8%;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: #000;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.card-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price {
    color: var(--gold);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* --- 5. Modal Styling --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: #1a1a1a;
    margin: 50px auto;
    padding: 25px;
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    border: 1px solid var(--gold);
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
}

.modal-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

#modalImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-text {
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
}

.styled-select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    background: #333;
    color: white;
    border: 1px solid var(--gold);
    border-radius: 8px;
    outline: none;
}

label {
    display: block;
    font-size: 14px;
    color: var(--gold);
    font-weight: bold;
    margin-top: 10px;
}

/* --- 6. Contact Section --- */
.contact-section {
    padding: 80px 8%;
    text-align: center;
    background: #000;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    color: #ccc;
}

/* --- 7. Responsive Mobile View --- */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }
    
    .nav-links {
        display: none; /* Mobile menu ke liye aap toggle baad mein bana sakte hain */
    }
    
    .hero {
        height: 50vh;
    }

    .modal-content {
        margin: 20px auto;
        width: 95%;
    }

    .menu-grid {
        grid-template-columns: 1fr; /* Mobile par 1 card per row */
    }
}
.contact-section {
    padding: 60px 8%;
    background-color: #1a1a1a;
    border-top: 2px solid var(--gold);
    text-align: center;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #ccc;
}

.contact-info strong {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed var(--gold);
}

.contact-link:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}