﻿/* ---------------------------------------------------------
   JEE READYMADES – Modern Dark Theme
--------------------------------------------------------- */

/* ---------- Variables ---------- */
:root {
    --brand1: #1d2671; /* Dark blue */
    --brand2: #c33764; /* Pink violet */
    --brand3: #0f0f0f;
    --card: #1a1a1a;
    --text-light: #f1f1f1;
    --text-muted: #bbbbbb;
    --border: #333;
    --radius: 12px;
    --shadow: 0 6px 20px rgba(0,0,0,0.4);
    --max-width: 1250px;
}

/* ---------- Reset ---------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

body {
    background: #111;
    color: var(--text-light);
}

/* Container */
.container {
    width: 94%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 120px; /* Space under fixed header */
}

/* ---------------------------------------------------------
   HEADER / NAVBAR
--------------------------------------------------------- */

.site-nav {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--brand1), var(--brand2));
    padding: 16px 32px;
    box-shadow: var(--shadow);
}

.nav-inner {
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .brand .logo img {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        object-fit: cover;
        margin-right: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    }

.shop-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* Right Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .nav-links a {
        color: var(--text-light);
        padding: 10px 18px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        transition: 0.3s;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,0.15);
            color: #ffe082;
        }

.btn-ghost {
    border: 1px solid #fff;
    padding: 10px 18px !important;
}

    .btn-ghost:hover {
        background: #fff;
        color: #000 !important;
    }

/* Mobile button hidden */
.nav-toggle {
    display: none;
}

/* ---------------------------------------------------------
   SLIDER
--------------------------------------------------------- */

.slider {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.slides {
    display: none;
    height: 100%;
    width: 100%;
}

    .slides img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 14px;
        filter: brightness(85%);
    }

.fade {
    animation: fadeEffect 1.8s ease-in-out;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: var(--card);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: 0.3s;
}

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.card-body {
    padding: 14px 16px;
}

.card h4 {
    color: #fff;
    margin-bottom: 8px;
}

.card p {
    color: var(--text-muted);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.05);
}

/* ---------------------------------------------------------
   CONTACT FORM
--------------------------------------------------------- */

.form {
    background: var(--card);
    padding: 22px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 16px;
}

.form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.form input, .form textarea {
    width: 100%;
    padding: 12px;
    background: #0d0d0d;
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 10px;
}

.form textarea {
    min-height: 130px;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    color: var(--text-muted);
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #222;
}

@media (max-width: 550px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .shop-name {
        font-size: 1.4rem;
    }

    .brand .logo img {
        width: 45px;
        height: 45px;
    }
}
@media (max-width:880px) {

    .nav-links {
        position: absolute;
        top: 75px;
        right: 20px;
        background: #111;
        width: 220px;
        flex-direction: column;
        padding: 12px 0;
        border-radius: 12px;
        box-shadow: 0 5px 18px rgba(0,0,0,0.50);
        display: none;
        z-index: 999;
    }

        .nav-links.open {
            display: flex !important;
            background: linear-gradient(180deg, #1d2671, #c33764); /* NEW COLOR */
            border: 1px solid rgba(255,255,255,0.2);
        }

        .nav-links a {
            color: #fff !important;
            padding: 14px 20px;
            display: block;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

            .nav-links a:last-child {
                border-bottom: none;
            }

    .nav-toggle {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
}
