:root {
    --gold: #D4AF37;
    --gold-hover: #C5A028;
    --dark: #111111;
    --gray: #333333;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

body {
    font-family: var(--font-body);
    color: var(--gray);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }

/* --- Modern Navbar --- */
.navbar-modern {
    background: #000000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 9999; /* Ensure it stays on top */
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white) !important;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-brand img {
    height: 120px; /* Increased from 80px */
    margin-right: 15px;
    vertical-align: middle;
}

.navbar-brand span { color: var(--gold); }

.nav-link {
    font-weight: 600;
    color: var(--white) !important; /* White text */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin: 0 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

.nav-icons a {
    color: var(--white); /* White icons */
    font-size: 1.2rem;
    margin-left: 20px;
}

.nav-icons a:hover { color: var(--gold); }

/* --- Hero Section (Carousel) --- */
.hero-slider .carousel-item {
    height: 90vh;
    min-height: 600px;
    background: #000;
}

.hero-slider .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    width: 100%;
    text-align: center;
    padding: 0 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-modern {
    background: var(--gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 2px solid var(--gold);
    display: inline-block;
    transition: var(--transition);
}

.btn-modern:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.feature-box:hover { transform: translateY(-10px); }

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.feature-title { font-size: 1.2rem; margin-bottom: 15px; }
.feature-text { font-size: 0.9rem; color: #666; }

/* --- Product Cards (Modern Minimalist) --- */
.products-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.product-card-modern {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-action {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
}

.product-card-modern:hover .product-action {
    bottom: 0;
    opacity: 1;
}

.product-info { padding: 25px; text-align: center; }

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
    font-family: var(--font-body);
}

/* --- Story Section (Split) --- */
.story-section { padding: 0; }
.story-img {
    height: 600px;
    background-size: cover;
    background-position: center;
}
.story-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: var(--dark);
    color: var(--white);
}
.story-content h2 { color: var(--white); font-size: 3rem; margin-bottom: 30px; }
.story-content p { color: #ccc; margin-bottom: 30px; font-size: 1.1rem; }

/* --- Footer Modern --- */
.footer-modern {
    background: #000;
    color: #fff;
    padding: 80px 0 30px;
}
.footer-title { color: var(--gold); margin-bottom: 30px; font-size: 1.5rem; }
.footer-text { color: #888; margin-bottom: 30px; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #888; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 5px; }
.social-modern a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #222;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}
.social-modern a:hover { background: var(--gold); }
.copyright {
    border-top: 1px solid #222;
    margin-top: 60px;
    padding-top: 30px;
    color: #555;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-slider .carousel-item { height: 70vh; }
    .story-content { padding: 40px; }
    .story-img { height: 300px; }
}