:root {
    --primary-color: #d4af37;
    /* Gold-ish */
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --transition-speed: 0.4s;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 80px;
    /* Added for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    transition: all var(--transition-speed) ease;
    padding: 0.8rem 0;
    background: rgba(26, 26, 26, 0.95);
    /* Always dark */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-custom {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: white;
    color: black !important;
    border-color: white;
}

/* Collection Section */
.section-collection {
    background-color: #fff;
}

.text-tracking {
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color) !important;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.card-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-img-wrapper {
    overflow: hidden;
    height: auto;
    /* Allow full height */
}

.card-img-top {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.card-hover:hover .card-img-top {
    transform: scale(1.1);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-100 {
    animation-delay: 0.2s;
}

.delay-200 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.hover-white:hover {
    color: white !important;
}