/* Variables */
:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --luxury-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--body-font);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html,body{
    overflow-x:hidden;
}

.playfair {
    font-family: var(--luxury-font);
}

.gold-text {
    color: var(--gold);
}

.text-gold {
    color: var(--gold) !important;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.section-padding {
    padding: 80px 0;
}

.gold-underline {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

/* Transition Utilities */
.trans-3 {
    transition: all 0.3s ease;
}

/* Navbar Customization */
.navbar-brand .brand-text {
    font-family: var(--luxury-font);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 400;
    color: var(--dark) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 5px;
    left: 8px;
    background-color: var(--gold);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 16px);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: auto;
    min-height: auto;
}

.hero-banner{
    width: 100%;
    height: auto;
    display: block;
}

.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    border-radius: 0;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: 0.4s;
}

.btn-gold:hover {
    background-color: #bfa02c;
    color: white;
    transform: translateY(-2px);
}

/* Category Cards */
.category-img-wrapper img:hover {
    transform: scale(1.05);
}

.category-card:hover h5 {
    color: var(--gold) !important;
}

/* Hover Lift Effect */
.hover-lift:hover {
    transform: translateY(-10px);
}

/* Product Cards */
.product-card {
    margin-bottom: 2rem;
}

.product-img-container {
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.product-card:hover .product-img-container img {
    transform: scale(1.08);
}

.product-img-container img {
    transition: 0.5s;
}

/* Social Icons */
.social-icon {
    width: 35px;
    height: 35px;
    background-color: #eee;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--gold);
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Contact Styles */
.contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--light);
    color: var(--gold);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-box {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-box:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* Breadcrumb Styling */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
}

/* Borders and boxes for About page */
.border-box {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: -1;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
    .display-2 {
        font-size: 2.5rem;
    }
    .hero-section {
        min-height: 60vh;
    }
}

/* Instagram Section */
.instagram-item {
    position: relative;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.instagram-overlay i {
    color: white;
    font-size: 1.8rem;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.category-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.category-circle {
    flex: 0 0 calc(33.33% - 40px);
}

/* ========================================= */
/* MOBILE RESPONSIVE - NAVBAR & LAYOUT FIX */
/* ========================================= */

@media (max-width: 768px) {

    /* NAVBAR STICKY FIX */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background-color: white !important;
    }

    /* Body padding to prevent content hiding under fixed navbar */
    body {
        padding-top: 85px !important;
    }


    .hero-section {
        margin-top: 0 !important;
        padding-top: 1rem !important;
    }

    /* Mobile dropdown menu styling - Keep your original nav-link styles */
    .navbar-collapse {
        padding: 0.5rem 0;
        background-color: white;
    }

    .navbar-collapse .navbar-nav {
        text-align: left;
        padding: 0.5rem 0;
    }

    .navbar-collapse .nav-item {
        padding: 0.5rem 0;
    }

    .navbar-collapse .nav-link {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Keep original gold underline animation on mobile */
    .navbar-collapse .nav-link::after {
        display: none;
    }

    .navbar-collapse .nav-link:hover {
        background-color: #f9f9f9;
        color: var(--gold) !important;
    }

    .navbar-collapse .nav-link.active {
        color: var(--gold) !important;
        background-color: #f9f9f9;
    }

    /* Category carousel mobile */
    .category-carousel {
        padding: 10px 20px;
        gap: 30px;
    }

    .category-circle {
        min-width: 95px;
    }

    .category-circle img {
        width: 90px;
        height: 90px;
    }

    /* Hide arrows on mobile */
    .cat-arrow {
        display: none;
    }
}

@media (max-width:768px){
    .cat-arrow{
        display:none;
    }
}

/* ========================================= */
/* POPULAR COLLECTIONS CAROUSEL SECTION */
/* ========================================= */

.gold-dot {
    color: var(--gold);
    margin: 0 15px;
    font-size: 1.2rem;
}

.popular-collections-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.products-wrapper {
    flex: 1;
    overflow: hidden;
}

.products-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background-color: #f5f5f5;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.collection-card:hover {
    background-color: #efefef;
    transform: translateY(-5px);
}

.collection-card-bg {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-bg img {
    transform: scale(1.08);
}

.carousel-arrow {
    width: 45px;
    height: 45px;
    background-color: #2a2a2a;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background-color: var(--gold);
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 992px) {
    .collection-card {
        flex: 0 0 calc(50% - 1rem);
        padding: 1.5rem;
    }

    .collection-card-bg {
        height: 240px;
    }

    .gold-dot {
        margin: 0 10px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .popular-collections-carousel {
        gap: 1rem;
    }

    .collection-card {
        flex: 0 0 calc(100% - 1rem);
        padding: 1rem;
    }

    .collection-card-bg {
        height: 200px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-wrapper {
        margin: 0;
    }
}

.intro-video{
    height: 470px;
    width: 100%;
    object-fit: cover;
}

.navbar-logo{
    height:50px;
    width:90px;
}

.brand-marathi{
    font-family: var(--luxury-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
}

@media (max-width:768px){

    h2.playfair{
        font-size:28px;
        margin-bottom:20px;
    }

    .display-5{
        font-size:28px;
    }

}

@media (max-width:768px){

.container{
    padding-left:15px;
    padding-right:15px;
}

}

@media (max-width:768px){

.hero-section{
    min-height:auto;
}

}

/* ========================================= */
/* INSIDE STORE GALLERY */
/* ========================================= */

.store-img-box{
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.store-img-box img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:0.5s ease;
}

.store-img-box:hover img{
    transform:scale(1.08);
}

/* subtle gold border hover */
.store-img-box::after{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid transparent;
    transition:0.4s;
}

.store-img-box:hover::after{
    border-color:var(--gold);
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.store-img-box img{
    height:220px;
}

}








