/* ==========================================
   1. रीसेट और बेस स्टाइल (Reset & Base Styles)
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #faf6f0; /* हल्का रॉयल बैकग्राउंड */
    color: #333;
}

/* ==========================================
   2. हेडर व नेविगेशन (Header & Navbar)
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #800020; /* बर्गंडी / रॉयल कलर */
}

.logo span {
    font-size: 16px;
    color: #d4af37; /* गोल्ड कलर */
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #800020;
}

/* ==========================================
   3. हीरो स्लाइडर (Hero Section / Background Slider)
   ========================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh; /* डेस्कटॉप के लिए हाइट */
    min-height: 450px;
    background-color: #1a050a; /* डार्क बर्गंडी बेस (ताकि इमेज साइड्स में खाली न लगे) */
    overflow: hidden;
}

.slides-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* contain से इमेज बिना कटे पूरी दिखेगी */
    background-size: contain; 
    background-position: center; 
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* टेक्स्ट के ऊपर हल्का काला साया */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 40% काला शेड */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* ==========================================
   4. ऑफर्स बैनर (Offers Banner)
   ========================================== */
.offer-banner {
    background: #d4af37;
    color: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.offer-banner h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* ==========================================
   5. प्रोडक्ट्स व फ़िल्टर (Products & Filters)
   ========================================== */
.products { 
    padding: 50px 20px; 
    text-align: center; 
}

.products h2 {
    color: #800020;
    margin-bottom: 20px;
}

/* फ़िल्टर बटन स्टाइल */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    color: #800020;
    border: 1.5px solid #800020;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: #800020;
    color: #fff;
}

/* प्रोडक्ट ग्रिड */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-box {
    height: 280px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #eee;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.product-card p {
    color: #800020;
    font-weight: bold;
    margin-bottom: 12px;
}

/* ==========================================
   6. बटन व फॉर्म (Buttons & Order Form)
   ========================================== */
.btn, button {
    background: #800020;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover, button:hover {
    background: #600018;
}

.order-section {
    padding: 50px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.order-section h2 {
    text-align: center;
    color: #800020;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #800020;
}

/* ==========================================
   7. फुटर (Footer)
   ========================================== */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    font-size: 14px;
}

/* ==========================================
   8. रेस्पॉन्सिव / मोबाइल व्यू (Mobile Responsive)
   ========================================== */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }

    nav {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        font-size: 14px;
    }

    .hero-slider {
        height: 50vh; /* मोबाइल पर सही प्रोपोर्शन */
        min-height: 320px;
    }

    .slide {
        background-size: cover; /* मोबाइल पर कवर लुक ज्यादा अच्छा लगता है */
    }

    .hero-content h1 { 
        font-size: 26px; 
    }

    .hero-content p { 
        font-size: 14px; 
    }

    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 320px;
    }
}