/* --- 1. SETTINGS (Yahan se sab control hoga) --- */
:root {
    /* Colors */
    --primary-color: #b08d57;    /* Elegant Gold/Bronze */
    --secondary-color: #1a1a1a;  /* Deep Black */
    --text-color: #333333;       /* Professional Grey-Black */
    --light-bg: #fdf8f2;         /* Luxury Off-white background */
    --white: #ffffff;
    
    /* Fonts */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing & Transitions */
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

/* --- 2. RESET & BASE --- */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* --- 3. REUSABLE COMPONENTS (Jo baar baar kaam aayenge) --- */

/* Buttons */
.btn-premium {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 12px 30px;
    border-radius: 0; /* Square edges look more premium */
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid var(--secondary-color);
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--secondary-color) !important;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Custom Header Styling */
:root {
    --gold: #b08d57;
    --dark: #333;
}

.bg-gold { background-color: var(--gold) !important; }

.search-box .form-control {
    border: 1px solid #eee;
    border-radius: 8px 0 0 8px;
    padding: 10px 15px;
}

.btn-gold {
    background-color: var(--gold);
    color: white;
    border-radius: 0 8px 8px 0;
}

.nav-icon {
    color: var(--dark);
    text-decoration: none;
}

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    font-size: 10px;
}

.nav-menu .nav-link {
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.nav-menu .nav-link:hover {
    color: var(--gold);
}

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 991px) {
    .brand-logo { font-size: 22px; }
}




.bg-gold { background-color: #b08d57 !important; }
.border-gold { border: 1px solid #b08d57 !important; }
.btn-gold { background-color: #b08d57 !important; }

.nav-icon {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.nav-icon:hover {
    color: #b08d57;
}

.nav-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    font-size: 10px;
}

.nav-menu .nav-link {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu .nav-link:hover {
    color: #b08d57;
}