/* ROOT COLORS */
:root {
    --black: #111111;
    --dark-grey: #3a3a3a;
    --light-grey: #f5f5f5;
    --wood: #A57A52;
    --wood-dark: #8f673e;
    --text-dark: #1a1a1a;
    --smooth: cubic-bezier(.3, .02, .3, 1);
}

/* GLOBAL */
body {
    background: #ffffff;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}
.header-space {
    height: 50px; /* Same height as your fixed header */
}
/* Heading Style */
.section-title {
    color: var(--black);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 6px solid var(--wood);
    padding-left: 15px;
    margin-bottom: 25px;
}


/* BANNER */
.banner {
    height: 70vh;
    border-bottom: 6px solid var(--wood);
}
.banner img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    animation: fadeHero 1.2s ease forwards;
}

@keyframes fadeHero {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

/* CATEGORY CARDS */
.category-box {
    background: var(--light-grey);
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
    transition: all .3s var(--smooth);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    box-shadow: 0 2px 5px #00000010;
    cursor: pointer;
}
.category-box:hover {
    background: var(--wood);
    color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 8px 18px #00000020;
}

/* PRODUCT CARDS */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: all .3s var(--smooth);
    box-shadow: 0 3px 6px #00000010;
}
.product-card:hover {
    transform: translateY(-7px);
    border-color: var(--wood);
    box-shadow: 0 12px 25px #00000025;
}
.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .4s var(--smooth);
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card .details {
    padding: 18px;
}
.product-card .details h6 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--black);
}

/* BUTTONS */
.btn-primary,
.product-card .btn,
.contact-btn {
    background: var(--wood);
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}
.btn-primary:hover,
.product-card .btn:hover,
.contact-btn:hover {
    background: var(--wood-dark);
    color: #fff;
}

/* FEATURE HIGHLIGHT BOXES (optional) */
.feature-box {
    padding: 22px;
    border-radius: 12px;
    background: var(--light-grey);
    border-left: 6px solid var(--wood);
    transition: .3s;
}
.feature-box:hover {
    background: #fff;
    box-shadow: 0 6px 16px #00000015;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: #ddd;
    padding: 35px 0;
    text-align: center;
    margin-top: 50px;
    border-top: 4px solid var(--wood);
}

/* RESPONSIVE */
@media (max-width: 991px){
    .banner {
        height: 40vh;
    }
    .banner img {
        height: 40vh;
    }
    .category-box {
        font-size: 16px;
        padding: 18px;
    }
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 576px){
    .product-card img {
        height: 200px;
    }
    .section-title {
        font-size: 22px;
    }
}


/* Sticky Button */
.sticky-enquiry {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: #A57A52;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    font-weight: 600;
    box-shadow: 0 0 10px #0007;
    transition: 0.3s ease;
}
.sticky-enquiry:hover {
    background: #8f673e;
    transform: scale(1.05);
}

/* Popup Overlay */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

/* Popup Box */
.popup-box {
    background: #222;
    border: 1px solid #444;
    border-left: 5px solid #A57A52;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 8px;
    animation: popupOpen 0.3s ease;
}

@keyframes popupOpen {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.close-popup {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #ccc;
}
.close-popup:hover {
    color: #fff;
}

.popup-title {
    font-size: 22px;
    color: #A57A52;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Input Fields */
.popup-input {
    width: 100%;
    background: #333;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 5px;
}
.popup-input:focus {
    border-color: #A57A52;
    outline: none;
}

/* Submit Button */
.popup-btn {
    width: 100%;
    background: #A57A52;
    padding: 12px;
    border: none;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}
.popup-btn:hover {
    background: #8f673e;
}

/* Success box */
.success-box {
    color: #A57A52;
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
}


    /* HERO SLIDER */
.hero-slider {
    width: 100%;
    height: 75vh;
    overflow: hidden;
    position: relative;
}

.slider-image-wrapper {
    height: 75vh;
    width: 100%;
}

.slider-image {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    animation: fadeIn 1.5s ease;
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to   { opacity: 1; transform: scale(1); }
}

/* CAPTION */
.slider-caption h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px #000;
}

.slider-caption p {
    font-size: 18px;
    color: #f1f1f1;
}

/* INDICATORS */
.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    background-color: #A57A52;
    opacity: 0.8;
    border-radius: 50%;
    margin: 3px;
}

.carousel-indicators .active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px){
    .hero-slider,
    .slider-image-wrapper,
    .slider-image {
        height: 45vh;
    }

    .slider-caption h2 {
        font-size: 26px;
    }

    .slider-caption p {
        font-size: 14px;
    }
}

/* Spinner */
/* ===== PAGE LOADER ===== */
#pageLoader {
    position: fixed;
    inset: 0;
    background: #faf7f2; /* light premium background */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .6s ease, visibility .6s ease;
}

/* Loader box */
.loader-box {
    text-align: center;
}

/* Premium Golden Spinning Circle */
.loader-circle {
    width: 70px;
    height: 70px;
    border: 4px solid #d8b079;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1.1s linear infinite;
    margin: 0 auto 18px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Branding text */
.loader-text {
    font-size: 22px;
    font-weight: 800;
    color: #b87b32;
    letter-spacing: 2px;
}

/* Hidden state */
#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
}


/*Whatsapp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


