﻿@import url('https://fonts.googleapis.com/css2?family=Della+Respira&display=swap');

:root {
    --primary-gold: #d4af37;
    --theme-bg: #ffffff; /* White Background */
    --theme-text: #333333; /* Dark Gray Text */
    --accent-color: #800000; /* Royal Maroon/Red for accents */
    --section-bg: #f9f9f9; /* Light gray for alternate sections */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--theme-bg);
    color: var(--theme-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
    color: #111111; /* Dark headings */
}

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

/* Custom Navbar - Light Theme Update */
.navbar {
    background-color: #ffffff; /* White navbar */
    border-bottom: 2px solid var(--primary-gold);
    transition: all 0.4s ease;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Soft shadow */
}

.navbar-nav .nav-link {
    color: #333333; /* Dark text for links */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: var(--primary-gold);
    }

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        display: block;
        margin-top: 5px;
        right: 0;
        background: var(--primary-gold);
        transition: width .3s ease;
    }

/* Force text-white classes to be dark in light theme */
.text-white, .text-light {
    color: #333333 !important;
}

/* Special Effect Text Logo */
.text-logo {
    font-family: 'Della Respira', serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 20px;
    /* NEW GRADIENT: Pure gold base with a Deep Antique Gold shine */
    background: linear-gradient( 110deg, #d4af37 0%, /* Classic Gold */
    #ffd700 35%, /* Bright Yellow-Gold */
    #8a5a19 50%, /* Deep Antique Gold (The Shine - Not Black!) */
    #ffd700 65%, /* Bright Yellow-Gold */
    #d4af37 100% /* Classic Gold */
    );
    background-size: 200% auto;
    color: #d4af37;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Drop Shadow taaki text utha hua (3D) lage */
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
    /* Animation call */
    animation: goldShine 6s linear infinite;
}

/* YEH BLOCK ANIMATION CHALANE KE LIYE SABSE ZAROORI HAI */
@keyframes goldShine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.btn-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 0;
}

    .btn-gold:hover {
        background-color: var(--primary-gold);
        color: #000;
        box-shadow: 0 0 15px var(--primary-gold);
    }

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

/* Highlight Gallery / Features */
.gallery-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Reference site jaisa light gray background */
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #333;
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 30px;
    background-color: #000;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .gallery-item:hover {
        border-color: var(--primary-gold);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

.gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid var(--primary-gold);
    padding-top: 70px;
    color: #cccccc;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 4px 15px rgba(212, 175, 55, 0.15));
}

.footer-heading {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-gold);
    }

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

    .footer-link:hover {
        color: var(--primary-gold);
        transform: translateX(8px); /* Hover par text aage slide hoga */
    }

.footer-contact-item {
    display: flex;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

/* Bottom Copyright & Credit Bar */
.footer-bottom {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    margin-top: 50px;
}

.dev-credit {
    color: #888;
    font-size: 0.9rem;
}

    .dev-credit span {
        color: var(--primary-gold);
        font-weight: 600;
        letter-spacing: 1px;
        font-family: 'Poppins', sans-serif;
    }

/* Custom Modal & Form Styling */
.modal-content.custom-modal {
    background-color: #121212;
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.modal-header {
    border-bottom: 1px solid #333;
}

.form-control.custom-input {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}

    .form-control.custom-input:focus {
        background-color: #222;
        border-color: var(--primary-gold);
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        color: #fff;
    }

.form-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* WOW Section - Interactive Hotspots */
.wow-section {
    padding: 100px 0;
    background: #ffffff; /* Clean white background */
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.hotspot-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
}

    .hotspot-wrapper img {
        width: 100%;
        display: block;
        border-radius: 8px;
    }

/* Pulsing Dot */
.hotspot-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    transform: translate(-50%, -50%); /* Centering exact coordinate */
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Info Card that shows on hover */
.hotspot-info {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--primary-gold);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    pointer-events: none; /* Prevents flickering */
}

    .hotspot-info::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -8px;
        border-width: 8px;
        border-style: solid;
        border-color: var(--primary-gold) transparent transparent transparent;
    }

.hotspot-dot:hover .hotspot-info {
    opacity: 1;
    visibility: visible;
    bottom: 180%; /* Slides up slightly */
}



/* Force headings to be dark in light sections */
.gallery-section .text-white,
.wow-section .text-white {
    color: #222222 !important;
}

/* Make paragraph text dark */
.gallery-section p,
.wow-section p {
    color: #555555 !important;
}

/* Gallery image overlay hover text - Ise white hi rehne dein kyunki overlay dark hai */
.gallery-overlay .text-white {
    color: #ffffff !important;
}

.wow-section h2.display-5 {
    color: #111111 !important; /* Changes "Discover The Craftsmanship" to dark */
}

.wow-section p {
    color: #444444 !important; /* Changes "Hover over the glowing dots..." to dark gray */
}

/* Fix the Hotspot Info Card visibility */
/* Currently, the card is dark with light text, which is fine, 
   but we can make the text sharper. */
.hotspot-info h6 {
    color: #ffffff !important; /* Keeps hotspot heading white inside the dark box */
}

.hotspot-info p {
    color: #dddddd !important; /* Keeps hotspot description light gray inside the dark box */
}

/* ==========================================
   WhatsApp Floating Button 
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite; /* Attention seeking animation */
}

    .whatsapp-float:hover {
        background-color: #128C7E; /* Darker green on hover */
        transform: scale(1.1);
    }

/* Pulsing effect for the button */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Devices ke liye button thoda chhota */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* ==========================================
   Custom Design Box (6th Box) Styling 
   ========================================== */
.custom-design-box {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 350px;
    border: 3px double #d4af37;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 5;
    cursor: pointer; /* Mouse point karne par hand icon aayega */
    transition: all 0.4s ease;
}

    /* Hover Effect: Box upar uthega aur button fill ho jayega */
    .custom-design-box:hover {
        transform: translateY(-10px); /* Box ko thoda upar lift karega */
        box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); /* Gold shadow */
        background-color: #ffffff;
    }

        .custom-design-box:hover .custom-btn {
            background-color: #d4af37;
            color: #ffffff !important;
        }
