/* --- AU CABINET DARK LUXURY THEME --- */

:root {
    --primary-gold: #c5a059;
    --dark-deep: #0a0a0a;
    --dark-card: #161616;
    --text-gray: #a0a0a0;
    --white: #ffffff;
}

body {
    background-color: var(--dark-deep);
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif; /* Professional clean font */
    overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

/* Navbar - High End Dark Glass */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-link {
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Gold Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 0px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

/* --- NEW ADDITIONS FOR SHOWROOM PAGES --- */

/* 1. Style Cards (The Explanation Boxes) */
.style-card { 
    background: var(--dark-card); 
    border: 1px solid #222; 
    padding: 40px 30px; 
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    cursor: pointer;
    height: 100%;
    text-align: center;
    position: relative;
}

.style-card:hover { 
    border-color: var(--primary-gold); 
    transform: translateY(-10px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.style-card i { 
    color: var(--primary-gold); 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    display: block; 
}

.style-card h4 { 
    font-size: 1.15rem; 
    margin-bottom: 15px; 
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.style-card p { 
    font-size: 0.85rem; 
    color: var(--text-gray); 
    line-height: 1.7;
    margin-bottom: 0;
}

/* 2. Dynamic Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.5s;
    background: #000;
}

.gallery-grid a:hover { 
    border-color: var(--primary-gold); 
}

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    opacity: 0.85;
}

.gallery-grid a:hover img { 
    transform: scale(1.1); 
    opacity: 1;
}

/* 3. Lightbox Customization (Making the zoom look high-end) */
.lb-outerContainer {
    background-color: #000 !important;
    border-radius: 0 !important;
}

.lb-container {
    padding: 0 !important;
}

.lb-dataContainer {
    background-color: #000 !important;
    padding-top: 15px !important;
}

.lb-caption {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold) !important;
    font-size: 1.1rem !important;
    font-weight: bold;
}

.lb-number {
    color: #555 !important;
}

/* 4. Section Title Decoration */
.section-title-container {
    position: relative;
    padding-bottom: 20px;
}

.section-title-container::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--primary-gold);
    bottom: 0;
    left: 50%;
    margin-left: -25px;
}

/* --- HERO CAROUSEL LUXURY STYLING --- */
.header-carousel {
    position: relative;
    overflow: hidden;
}

.header-carousel .owl-carousel-item {
    position: relative;
    height: 85vh;
    min-height: 560px;
    max-height: 850px;
    overflow: hidden;
    background: #000;
}

.header-carousel .carousel-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.0);
    transition: transform 9s cubic-bezier(0.1, 0.5, 0.1, 1);
    opacity: 0.85;
}

.header-carousel .owl-item.active .carousel-bg {
    transform: scale(1.08);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(5, 5, 5, 0.4) 0%, 
        rgba(10, 10, 10, 0.75) 70%, 
        rgba(10, 10, 10, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content-box {
    background: rgba(12, 12, 12, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 45px 50px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-top: 3px solid var(--primary-gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 75vh;
        min-height: 480px;
    }
    .carousel-content-box {
        padding: 25px 20px;
    }
}

.badge-gold {
    display: inline-block;
    color: var(--primary-gold);
    border: 1px solid rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.08);
    padding: 6px 16px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}

.btn-gold-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    border-radius: 0;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-gold-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-2px);
}

/* Custom Owl Navigation */
.header-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.header-carousel .owl-nav button.owl-prev,
.header-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 15, 0.75) !important;
    border: 1px solid rgba(197, 160, 89, 0.4) !important;
    color: var(--primary-gold) !important;
    font-size: 1.5rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.header-carousel .owl-nav button.owl-prev:hover,
.header-carousel .owl-nav button.owl-next:hover {
    background: var(--primary-gold) !important;
    color: #000 !important;
    border-color: var(--primary-gold) !important;
}

.header-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.header-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none;
    border-radius: 50%;
    transition: 0.3s;
}

.header-carousel .owl-dots .owl-dot.active {
    background: var(--primary-gold) !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.8);
}

/* Trust Features Bar */
.trust-bar {
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.trust-text h6 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.trust-text p {
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-bottom: 0;
}

/* Footer Refinement */
.footer {
    background-color: #050505 !important;
    border-top: 1px solid #222;
    padding: 80px 0 40px;
}

.contact-link {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--primary-gold);
}

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