/* Global Styles */
:root {
    --color-bg: #fdfbf7;
    --color-dark: #0a0a0a;
    --color-gold: #d4af37;
    --color-gold-light: #f1e5c2;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    color: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 4px;
    opacity: 0.7;
    margin-top: -5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.nav ul li a.active {
    color: var(--color-gold);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-gold-outline {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 12px;
    transition: 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-light-gold {
    background-color: #fdfbf0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.section-title span {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.5;
    margin-top: 5px;
}

.line-gold {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin-bottom: 30px;
}

.line-gold.center {
    margin: 0 auto 30px auto;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
}

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

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--color-gold);
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #151515;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.5s ease;
}

.product-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
}

.prod-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.prod-info {
    padding: 30px;
}

.prod-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.prod-info p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.link-gold {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News List */
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-item {
    display: flex;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-gold);
    color: var(--color-dark);
    padding: 10px;
    min-width: 80px;
    font-weight: 700;
    height: fit-content;
}

.news-date span {
    font-size: 28px;
    line-height: 1;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* Brand Slider */
.brand-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.brand-item {
    min-width: 200px;
    background: #fff;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.brand-item img {
    height: 60px;
    object-fit: contain;
    margin: 0 auto 15px auto;
}

.brand-item h4 {
    font-size: 14px;
    color: var(--color-gold);
}

/* Promo Boxes */
.split-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-box {
    padding: 60px 40px;
    border-radius: 4px;
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #b08d20 100%);
    color: var(--color-dark);
}

.gold-gradient h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.dark-outline {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
}

.dark-outline h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.social-share {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-share img {
    width: 32px;
    cursor: pointer;
    filter: grayscale(1);
    transition: 0.3s;
}

.social-share img:hover {
    filter: grayscale(0);
}

/* Dynamic List */
.dynamic-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dyn-item {
    font-size: 14px;
    padding: 15px;
    border-left: 3px solid var(--color-gold);
    background: #fdfdfd;
}

.dyn-item .time {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer h3, .footer h4 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 30px;
}

.footer h3 { font-size: 28px; }
.footer h4 { font-size: 20px; text-transform: uppercase; letter-spacing: 2px; }

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 14px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.footer-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-icons img {
    width: 24px;
    filter: invert(1) brightness(1.5);
    opacity: 0.7;
}

.footer-qr {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
}

.footer-qr img {
    width: 80px;
}

.footer-qr p {
    font-size: 12px;
    opacity: 0.6;
}

.footer-bottom {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Sticky Items */
.sticky-service {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 999;
}

.service-icon {
    display: flex;
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: 0.3s;
}

.service-icon:hover {
    transform: scale(1.1);
}

.service-icon img {
    width: 30px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    padding: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--color-gold);
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    color: var(--color-white);
    font-size: 18px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: 0.5s ease;
}

.hover-zoom img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-2, .product-grid, .news-list, .split-promo, .dynamic-list {
        grid-template-columns: 1fr;
    }
    
    .nav, .nav-extra { display: none; }
    .mobile-toggle { display: flex; }
    
    .hero-content h1 { font-size: 40px; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
