:root {
    --bg-dark: #0a0f16;
    --bg-surface: #121a24;
    --bg-surface-light: #1a2432;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8620;
    --text-primary: #ffffff;
    --text-secondary: #a0aab2;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-dark); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
ul { list-style: none; }

/* Utilities */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-gold { color: var(--gold-primary); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 5rem; }
.mb-5 { margin-bottom: 5rem; }
.py-5 { padding: 5rem 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; width: 60px; height: 3px; background: var(--gold-primary); bottom: -12px; left: 50%; transform: translateX(-50%); border-radius: 2px;}

/* Buttons */
.btn-gold {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: #000;
    padding: 14px 35px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}
.btn-gold:hover { background: linear-gradient(45deg, var(--gold-primary), var(--gold-light)); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5); color: #000; }
.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold-primary);
    padding: 12px 33px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2); }

/* Header */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(10, 15, 22, 0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.05); transition: var(--transition-smooth); }
header.scrolled { background: rgba(10, 15, 22, 0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.5); border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding: 5px 0;}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 90px; transition: var(--transition-smooth); }
header.scrolled .nav-container { height: 75px; }

.nav-links { display: flex; gap: 35px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; position: relative; padding-bottom: 5px;}
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; background: var(--gold-primary); bottom: 0; left: 0; transition: var(--transition-smooth); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-primary); text-shadow: 0 0 10px rgba(212, 175, 55, 0.3); }
.menu-toggle { display: none; cursor: pointer; font-size: 1.8rem; color: var(--gold-primary); }

/* --- NEW RICH HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    padding-top: 80px; /* offset for header */
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(10,15,22,0.4) 0%, rgba(10,15,22,0.9) 80%, rgba(10,15,22,1) 100%);
    z-index: -1;
}
.hero-overlay-pattern {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}
.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s forwards 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gold-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-title {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hero-title span {
    color: var(--gold-primary);
    font-style: italic;
    font-weight: 700;
}
.hero-divider {
    width: 80px; height: 3px; background: var(--gold-primary); margin: 0 auto 30px;
    box-shadow: 0 0 15px var(--gold-primary);
}
.hero-desc {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto; margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Hero Features Bar */
.hero-features-bar {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(18, 26, 36, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px 50px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 1000px;
    justify-content: space-between;
    z-index: 10;
}
.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item .icon-box {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.feature-item .feature-text { display: flex; flex-direction: column; }
.feature-item .feature-text strong { font-size: 1.1rem; color: #fff; letter-spacing: 1px; }
.feature-item .feature-text span { font-size: 0.9rem; color: var(--text-secondary); }

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-down-indicator i { font-size: 1.2rem; color: var(--gold-primary); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } 40% { transform: translateY(-10px) translateX(-50%); } 60% { transform: translateY(-5px) translateX(-50%); } }

/* Stats Section */
.stats-section {
    background: var(--bg-surface);
    padding-top: 100px; /* compensate for hero-features-bar overlap */
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-box {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-box:last-child { border-right: none; }
.stat-box h3 { font-size: 3.5rem; margin-bottom: 5px; text-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
.stat-box p { color: var(--text-secondary); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }


/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background: var(--bg-surface);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}
.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}
.product-image { width: 100%; height: 280px; overflow: hidden; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.product-card:hover .product-image img { transform: scale(1.15); }
.product-image::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(18, 26, 36, 1) 100%);
}
.product-info { padding: 30px; position: relative; z-index: 2; margin-top: -60px; }
.product-info h3 { font-size: 1.6rem; color: var(--gold-primary); margin-bottom: 12px; }
.product-info p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 20px; line-height: 1.7; }
.read-more {
    color: var(--text-primary); font-size: 0.95rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
}
.read-more i { transition: transform 0.3s; color: var(--gold-primary); }
.read-more:hover { color: var(--gold-primary); }
.read-more:hover i { transform: translateX(8px); }

/* About Section */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0px rgba(212, 175, 55, 0.1); }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1.1rem; }

/* Footer */
footer { background: #070a0f; padding: 70px 0 20px; border-top: 1px solid rgba(212, 175, 55, 0.15); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: var(--gold-primary); font-size: 1.3rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }
.footer-col p, .footer-col li { color: var(--text-secondary); margin-bottom: 15px; font-size: 1.05rem; }
.footer-col ul a:hover { color: var(--gold-primary); padding-left: 5px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a {
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth); font-size: 1.2rem;
}
.social-links a:hover { background: var(--gold-primary); color: #000; transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-secondary); font-size: 0.95rem; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; }
.contact-info-card { background: var(--bg-surface); padding: 50px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.info-item { display: flex; gap: 25px; margin-bottom: 35px; }
.info-item i { font-size: 1.8rem; color: var(--gold-primary); }
.info-item h4 { font-family: var(--font-body); font-size: 1.2rem; margin-bottom: 8px; color: #fff;}
.contact-form { background: var(--bg-surface); padding: 50px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.form-group { margin-bottom: 25px; }
.form-control {
    width: 100%; padding: 18px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; transition: var(--transition-smooth);
}
.form-control:focus { outline: none; border-color: var(--gold-primary); background: rgba(0,0,0,0.5); box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
textarea.form-control { height: 160px; resize: vertical; }

/* Page Header (Inner pages) */
.page-header { height: 45vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; position: relative; margin-bottom: 60px; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(10,15,22,1), rgba(10,15,22,0.6)); }
.page-header h1 { position: relative; z-index: 1; font-size: 4rem; color: var(--gold-primary); text-shadow: 0 5px 15px rgba(0,0,0,0.8); }

/* Animations (AOS style) */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- EDITORIAL SHOWCASE FOR PRODUCTS PAGE --- */
.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
}
.showcase-item:nth-child(even) .showcase-image {
    order: 2; /* Move image to the right */
}
.showcase-item:nth-child(even) .showcase-content {
    order: 1; /* Move content to the left */
}
.showcase-image {
    position: relative;
    overflow: hidden;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.showcase-item:hover .showcase-image img {
    transform: scale(1.08);
}
.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    background: var(--bg-surface);
}
.showcase-category {
    font-size: 0.9rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}
.showcase-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}
.showcase-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}
.showcase-features {
    list-style: none;
    margin-bottom: 40px;
}
.showcase-features li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e2e8f0;
}
.showcase-features li i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 4rem; }
    .hero-features-bar { width: 95%; flex-wrap: wrap; justify-content: center; gap: 30px; bottom: -80px;}
    .stats-section { padding-top: 140px; }
    .showcase-content { padding: 60px; }
    .showcase-title { font-size: 2.8rem; }
}
@media (max-width: 991px) {
    .hero-title { font-size: 3.2rem; }
    .hero-desc { font-size: 1.1rem; }
    .about-section, .contact-grid { grid-template-columns: 1fr; gap: 40px;}
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat-box { border-right: none; }
    
    .showcase-item, .showcase-item:nth-child(even) { grid-template-columns: 1fr; }
    .showcase-item:nth-child(even) .showcase-image,
    .showcase-item:nth-child(even) .showcase-content { order: unset; }
    .showcase-image { height: 400px; }
    .showcase-content { padding: 50px 30px; }
}
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 75px; left: -100%; width: 100%; height: calc(100vh - 75px);
        background: rgba(18, 26, 36, 0.98); flex-direction: column; align-items: center; justify-content: center;
        transition: var(--transition-smooth); z-index: 999;
    }
    .nav-links.active { left: 0; }
    .hero-title { font-size: 2.5rem; }
    .hero-features-bar { display: none; } /* Hide on very small screens or make it vertical */
    .stats-section { padding-top: 60px; }
    .page-header { height: 35vh; }
    .page-header h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
}
