/* ==================
   Modern Minimal Variables 
   ================== */
:root {
    --primary: #1a1a1a;       /* Dark Grey for text */
    --secondary: #6c757d;     /* Muted Grey for subtext */
    --accent: #cda45e;        /* NEW: Modern Gold Accent */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==================
   Navigation (Floating Rounded)
   ================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px; 
    margin: 20px;
    padding: 0.8rem 2rem;
    transition: var(--transition);
}

.fixed-top {
    top: 0;
    right: 0;
    left: 0;
    width: auto; 
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary);
}

.dot {
    color: var(--accent); /* Gold Dot */
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-left: 2rem;
    color: var(--primary) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent); /* Gold Underline */
    transition: 0.3s;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--accent);
    color: var(--white) !important;
    transform: translateY(-2px);
    /* Gold Shadow */
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.4); 
}

.btn-contact::after { display: none; }

/* ==================
   Hero Carousel 
   ================== */
.carousel-item {
    height: 90vh;
    min-height: 500px;
    background-color: #000;
    position: relative;
}

.hero-img {
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 30%;
    text-align: left;
}

.carousel-caption h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: var(--accent); /* Gold Subhead */
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.95);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
}

.carousel-caption h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-width: 2px;
    background: rgba(0,0,0,0.2);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ==================
   General Sections 
   ================== */
.section-padding {
    padding: 6rem 0;
}

.ls-2 { letter-spacing: 2px; }

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 1rem;
}

/* ==================
   Features 
   ================== */
.feature-box {
    padding: 2rem;
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    border-radius: 12px;
}

.feature-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-box h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ==================
   Collection Cards
   ================== */
.collection-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gold Tint Overlay */
    background: rgba(205, 164, 94, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.hover-overlay span {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.collection-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.collection-card:hover .hover-overlay {
    opacity: 1;
}

.card-details {
    padding: 1.5rem 0;
    text-align: center;
}

.card-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    transition: 0.3s;
}

.collection-card:hover .card-details h3 {
    color: var(--accent);
}

.card-details p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================
   Footer 
   ================== */
.footer-section {
    background-color: var(--primary);
    color: #aeaeae;
    padding: 5rem 0 2rem;
}

.brandname-footer {
    color: var(--white);
    margin-bottom: 1.5rem;
}


.col-lg-4 .text-muted {
    color: var(--white) !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}


.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
    padding-left: 5px;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.contact-item span {
    margin-left: 10px;
}

/* ==================
   Responsive 
   ================== */
@media (max-width: 991px) {
    .carousel-caption h1 { font-size: 2.5rem; }
    
    .navbar {
        margin: 10px;
        padding: 0.8rem 1rem;
    }
    
    .nav-link { margin-left: 0; padding: 10px 0; }
    .img-wrapper { height: 300px; }
    
    .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid #eee;
    }
}