/*
 * General Setup and Reset
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    /* Luxury Color Palette */
    --header-background: #69c448;  /* Header Background*/
    --primary-color: #313648;   /* Deep Navy/Charcoal - Main Dark Color */
    --secondary-color: #000000; /* Dusty Green/Gold - Highlight/Accent */
    --text-color: #313647;      /* Dark text */
    --light-bg: #FFF8D4;        /* Creamy/Off-White Background */
    --dark-accent: #435663;     /* Secondary Dark Accent */
    --white-color: #fff;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* * Header and Navigation Styling
 */
header {
    background: var(--header-background);
    box-shadow: 0 2px 4px rgba(0, 1, 1, 0.5);
    position: sticky;
    border-radius: 0px 0px 15px 15px;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    /* nav के अंदर अब केवल sidebar और एक div है, इसलिए flex-start ही ठीक है */
    justify-content: flex-start;
    align-items: center;
    padding: 0 5%;
    height: 60px;
}

/* ************ PC VIEW FIX: LOGO LEFT, LINKS RIGHT ************ */
/* यह नए HTML में लोगो (a) और लिंक्स (ul) को रखने वाले div को टारगेट करता है */
nav > div {
    display: flex;
    justify-content: space-between; /* लोगो बाएँ और लिंक्स दाएँ करने के लिए */
    align-items: center;
    width: 100%; /* यह div nav में पूरी चौड़ाई लेगा */
}
/* ************************************************************************* */


nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Logo/Brand Styling (Shiv Shakti) */
/* यह अब nav > div > a को टारगेट करता है */
nav > div > a {
    font-size: 1.5rem; 
    font-weight: 900; 
    color: var(--light-bg);
    letter-spacing: 1px;
    font-family: 'Georgia', serif; 
    text-transform: uppercase; 
    white-space: nowrap; 
}

/* Main Navigation Links (Services, Category, etc.) */
nav ul li a {
    padding: 5px 10px;
    transition: color 0.3s ease;
    font-size: 0.95rem; 
    font-weight: 600;
    color: var(--light-bg);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

/* Mobile Sidebar Specific Styling */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: var(--dark-accent);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.3);
    display: none; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 20px;
    z-index: 1001;
}

.sidebar li {
    width: 100%;
    padding: 15px 30px;
}

.sidebar li a {
    display: block;
    font-size: 1.1rem;
    color: var(--white-color);
}

/* Menu Button (for Mobile) - 3 Lines Icon */
.menu-button,
.sidebar li:first-child {
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Menu Button Width Adjustment (Mobile Icon) */
.menu-button {
    display: none;
    padding: 0 10px; 
    margin-left: 10px;
}

/* *X Icon Fix: Sidebar Close Button Style* */
.sidebar li:first-child i {
    color: var(--secondary-color);
    font-size: 2.2rem; /* Increased size */
    padding-right: 15px;
}


/* * Hero Section Start (for index.html)
 */
.hero {
    background: url('../images/hero.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
}

.hero > div {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero .cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

.hero .cta-button:hover {
    background: #84936d; 
    transform: scale(1.05);
}
/* * Hero Section "End" (for index.html)
 */

/*
*
*
*
* Hero Section for Index.html Start
*
*
*
*/

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,1,1.5);
}
.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HEADING (TOP CENTER) */
.slide-heading {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgb(27,65,27);
    z-index: 2;
    width: 80%;
}

.slide-heading h1 {
    font-size: 2.8rem;
    text-shadow: 0 4px 8px rgba(248, 229, 229, 0.902);
}


/* PARAGRAPH (BOTTOM RIGHT) */
.slide-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 25%;
    padding: 10px 15px;
    text-align: center;

    background: rgba(116, 119, 74, 0.2);
    border-radius: 13px;
    border: 2px solid rgba(0,0,0,0.4);

    font-size: 1.1rem;
    color: rgb(0, 0, 0);
    text-shadow: 0 2px 5px rgba(0,0,0,0.4);

    z-index: 3;   /* VERY IMPORTANT */
}

/*
*
*
*
Hero Section for Index.html Start
*
*
*
*
*/

/* Information section Start */
.store-information {
    width: 100%;
    padding: 50px 5%;
    background: #A3b087
    color: var(--text-color);
    text-align: center;
    box-sizing: border-box;
}

/* Heading */
.store-information h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph block */
.store-information p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: justify;             /* clean reading */
    color: var(--text-color);
}

/* Image 100% width */
.store-information img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 6px; 

    box-shadow: 0 8px 25px rgba(0,0,1,1.5);

    /* Smooth hover animation */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.store-information img:hover {
    transform: scale(1.03);          /* Slight zoom effect */
    box-shadow: 0 12px 35px rgba(0,1,1,0.8);   /* Deeper shadow on hover */
}
/* Information section End */

/* --------------Our Services section Start------------ */
/* PRODUCT SECTION MAIN WRAPPER */
.store-products {
    width: 100%;
    padding: 60px 5%;
    background: var(--dark-accent);

    margin: auto;
}

/* Heading */
.store-products h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--light-bg);
    margin-bottom: 70px;
}

/* PRODUCT ROW COMMON DESIGN */
#product-r1,
#product-r2,
#product-r3 {
    width: 100%;
    display: flex;

    justify-content: center;

    gap: 80px;
    margin-bottom: 35px;
}

/* Row 2 me sirf 1 product hai */
#product-r2 a{
    width: 75%;
    height: 250px;
}
#product-r2 {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
#product-r1 div,
#product-r2 div,
#product-r3 div{
    box-shadow: 0 12px 35px rgba(0,1,1,0.8);
    border-radius: 10px;
}
/* PRODUCT NAME */
.store-products h4 {
    text-align: center;
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--white-color);
    font-weight: 700;
}

/* PRODUCT BOX */
.store-products div div a {
    display: block;
    width: 100%;
}

/* IMAGE STYLE */
.store-products img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.20);
    transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover zoom */
.store-products img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

#product-r1 div:hover{
    background: #a58a00;
}
#product-r3 div:hover{
    background: #a58a00;
}
/* PRODUCT NAME */
.store-products h4 {
    text-align: center;
    margin-top: 10px;
    font-size: 1.5rem;
    color: var(--white-color);
    font-weight: 700;
}

/* ----------Our Services section End------------ */
/*
*
*
*
*/

/* ----------Work Progress css Start------------ */
/* ----------- WORK PROCESS SECTION ----------- */

.work-process {
    width: 100%;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;  /* Heading top, steps below */
    gap: 50px;
}

/* ----------- HEADING SECTION ----------- */
.work-process > div:first-child {
    width: 100%;
    text-align: center;
}

.work-process > div:first-child h3 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

/* Heading underline */
.work-process > div:first-child h3::after {
    content: "";
    width: 60%;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    left: 20%;
    bottom: 0;
    border-radius: 4px;
}

/* ----------- STEPS WRAPPER ----------- */
.work-process > div:last-child {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

/* ----------- EACH STEP BOX ----------- */
.work-process > div:last-child > div {
    width: 18%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Number Badge (top-left) */
.work-process > div:last-child > div > h4:first-child {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #a58a00;
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 800;
    z-index: 3;
}

/* Image Box */
.work-process > div:last-child > div > div {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    background: #8fbf7a;           /* fallback for missing image */
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transition: .35s ease;
}

/* Image inside box */
.work-process img {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* crops correctly */
    display: block;
}

/* Hover Effect */
.work-process > div:last-child > div > div:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0,1,1,0.8);
}

/* Step Title */
.work-process > div:last-child > div > h4:last-child {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* ----------Work Progress css End------------ */




/* ----------Footer Section Start------------ */

/* ============================
   FOOTER MAIN WRAPPER
============================= */
.footer {
    background: var(--primary-color); /* Dark theme */
    color: var(--light-bg);
    padding: 60px 6% 20px;
    margin-top: 40px;
}

/* ============================
   TOP TAGLINE SECTION
============================= */
.footer-tagline {
    width: 100%;
    border: 2px solid;
    border-radius: 8px;
    background: var(--dark-accent);
    padding: 35px 0px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease;
}
.footer-tagline:hover {
    box-shadow: 0 12px 28px rgba(0,1,1,0.8);
    transform: scale(1.02);
    color: #f1f5eb;
}

.footer-tagline .footer-col {
    width: 100%;
}

.footer-tagline h3 {
    font-size: 2.2rem;
    font-weight: 700;
    font-style: oblique;
    color: blanchedalmond;
    margin-bottom: 8px;
    white-space: nowrap;
}

.footer-tagline h5 {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer-tagline button {
    background: #84936d;
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-tagline button:hover {
    transform: scale(1.05);
    color: #f1f5eb;
    background: #799b3a;
}

.footer-ss-link{
    font-size: 2.8rem;
}

/* ============================
   MAIN FOOTER CONTENT (Second Child)
============================= */
.footer > div:nth-child(2) {
    display: flex;
    flex-direction: row;        /* 4 columns in row layout */
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* FOOTER COLUMNS (About, Kitchen, Wardrobe, Contact) */
.footer > div:nth-child(2) > div {
    width: 22%;
    min-width: 240px;
    display: flex;
    flex-direction: column;    /* Vertical structure */
    align-items: flex-start;
}

/* Column Headings */
.footer-col h4,
.footer-col h2 {
    color: rgb(214, 191, 41);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col h2 {
    font-size: 2rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: 0.3s ease;
}
.footer-col h4:hover {
    transform: scale(1.05);
}

/* About Text */
.footer-col p {
    color: var(--light-bg);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Footer Lists (UL inside columns) */
.footer > div:nth-child(2) ul {
    display: flex;
    flex-direction: column;    /* Always vertical */
    gap: 6px;
}

.footer > div:nth-child(2) ul li a {
    color: var(--light-bg);
    font-size: 1rem;
    transition: 0.3s ease;
}

.footer > div:nth-child(2) ul li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

/* Social Icons */
.footer-col div a i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--light-bg);
    transition: 0.3s ease;
}

.footer-col div a i:hover {
    color: var(--secondary-color);
}

/* Contact Links */
.footer-col a {
    color: var(--light-bg);
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: var(--white-color);
}

/* ============================
   FOOTER BOTTOM STRIP
============================= */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin-top: 45px;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: var(--light-bg);
}

/* ----------Footer Section End------------ */
/* ----------Index.html CSS End------------ */
/*
*
*
*
*/

/* ============================================
   MOBILE VIEW CSS — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

    /* ---------- HEADER ---------- */
    .hideOnMobile {
        display: none;
    }

    .menu-button {
        display: block;
        font-size: 2rem;
    }

    nav {
        padding: 0 4%;
    }

    nav > div > a {
        font-size: 1.3rem;
    }

    /* ---------- SIDEBAR ---------- */
    .sidebar {
        width: 230px;
    }

    .sidebar li a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }



    @media (max-width: 768px) {

    .hero-slider {
        height: 60vh;
        overflow: hidden;
    }

    /* IMAGE – full cover, NO GAP */
    .hero-slider .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;       /* full image, no gap */
    }

    /* HEADING – center top */
    .slide-heading {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
    }

    .slide-heading h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        color: rgb(27,65,27);
    }

    /* P TAG – LEFT side bottom */
    .slide-text {
        position: absolute;
        bottom: 6%;
        left: 5%;
        width: 85%;
        padding: 10px;
        text-align: left;
        background: rgba(0,0,0,0.18);
        border-radius: 10px;
    }

    .slide-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        color: #fff;
    }
}



    /* ============================================
       ABOUT SECTION (General Content)
       ============================================ */
    .about {
        padding: 40px 5%;
        text-align: center;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 1rem;
    }



    /* ============================================
       STORE INFORMATION
       ============================================ */
    .store-information {
        padding: 40px 5%;
    }

    .store-information h2 {
        text-align: center;
        font-size: 1.8rem;
    }

    .store-information p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .store-information img {
        width: 100%;
        height: auto;
    }



    /* ============================================
       STORE PRODUCTS SECTION
       ============================================ */
    .store-products h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    #product-r1,
    #product-r2,
    #product-r3 {
        flex-direction: column;
        gap: 30px;
    }

    .store-products img {
        height: 220px;
    }

    .store-products h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }



    /* ============================================
       WORK PROCESS SECTION
       ============================================ */
    .work-process {
        flex-direction: column;
        padding: 40px 5%;
    }

    /* Heading */
    .work-process > div:first-child h3 {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    /* Steps container */
    .work-process > div:nth-child(2) {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    /* Each step box */
    .work-process > div:nth-child(2) > div {
        width: 100%;
        align-items: center;
    }

    /* Numbers */
    .work-process > div:nth-child(2) > div > h4:first-child {
        font-size: 1rem;
        padding: 4px 8px;
    }

    /* Image wrapper */
    .work-process > div:nth-child(2) > div > div {
        width: 100%;
        height: 170px;
    }

    /* Bottom text */
    .work-process > div:nth-child(2) > div > h4:last-child {
        font-size: 1rem;
    }



    /* ============================================
       FOOTER — TAGLINE
       ============================================ */
    .footer-tagline {
        padding: 25px 10px;
        margin-bottom: 40px;
    }

    .footer-tagline h3 {
        font-size: 1.6rem;
        white-space: normal;
    }

    .footer-tagline h5 {
        font-size: 1rem;
    }

    .footer-tagline button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    /* ============================================
       FOOTER MAIN CONTENT
       ============================================ */
    .footer > div:nth-child(2) {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer > div:nth-child(2) > div {
        width: 100%;
        align-items: center;
    }

    .footer-col h2 {
        font-size: 1.8rem;
    }

    .footer-col h4 {
        font-size: 1.3rem;
    }

    /* Social icons center */
    .footer-col div a i {
        font-size: 2rem;
        margin: 10px;
    }



    /* ============================================
       FOOTER BOTTOM
       ============================================ */
    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

}

