/* Global Styles */
:root {
    --gold: #c5a059;
    --gold-light: #e5c185;
    --gold-dark: #8c6d39;
    --black-bg: #121212;
    --black-card: #1e1e1e;
    --black-border: #2a2a2a;
    --text-gray: #9ca3af;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--black-bg);
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Typography */
.gold-text {
    color: var(--gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--black-border);
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    font-size: 20px;
}

.logo-text h1 {
    font-size: 20px;
    color: var(--gold);
}

.logo-text span {
    font-size: 10px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--black-bg) 0%, rgba(18, 18, 18, 0.5) 100%);
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Stats */
.stats {
    background: var(--black-card);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cards */
.card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    transform: translateY(-10px);
}

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

.news-card {
    padding: 30px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
}

.news-tag {
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
}

.news-date {
    color: var(--text-gray);
}

.news-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.news-card a {
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

/* New Arrivals */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.arrival-card .img-box {
    height: 150px;
    position: relative;
}

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

.arrival-card .info {
    padding: 15px;
}

.arrival-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.arrival-card p {
    font-size: 12px;
    color: var(--text-gray);
}

/* Promotion */
.promo {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 2px;
    border-radius: 30px;
}

.promo-inner {
    background: var(--black-bg);
    border-radius: 28px;
    padding: 60px;
    text-align: center;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.promo-icon {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}

/* Updates */
.updates-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.update-item {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid var(--black-border);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.update-item .time {
    color: var(--gold);
    font-size: 12px;
    font-family: monospace;
}

/* Products Page */
.filter-bar {
    background: var(--black-card);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.filter-group label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.search-input {
    width: 100%;
    background: var(--black-bg);
    border: 1px solid var(--black-border);
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-btn {
    padding: 4px 12px;
    background: var(--black-bg);
    border: 1px solid var(--black-border);
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    color: var(--text-gray);
}

.tag-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--black-border);
    border-radius: 50%;
    cursor: pointer;
}

.page-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* About Page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-timeline {
    position: relative;
    padding: 40px 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(197, 160, 89, 0.2);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.timeline-content {
    width: 45%;
    background: var(--black-card);
    padding: 20px;
    border-radius: 10px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 1;
    border: 4px solid var(--black-bg);
}

.timeline-year {
    width: 45%;
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.team-info {
    padding: 20px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--black-card);
    padding: 40px;
    border-radius: 15px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 24px;
    color: var(--gold);
}

.contact-form {
    background: var(--black-card);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    background: var(--black-bg);
    border: 1px solid var(--black-border);
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
}

.map-box {
    height: 400px;
    background: var(--black-card);
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: var(--black-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--black-border);
}

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

.footer-col h4 {
    margin-bottom: 25px;
    color: #fff;
}

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

.footer-links a {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
    z-index: 999;
}

/* Responsive */
@media (max-width: 1024px) {
    .arrivals-grid, .product-grid, .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .stats-grid, .news-grid, .arrivals-grid, .product-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .about-intro, .contact-grid {
        grid-template-columns: 1fr;
    }
    .timeline-item {
        flex-direction: column;
    }
    .timeline-content, .timeline-year {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid, .news-grid, .arrivals-grid, .product-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .hero-btns {
        flex-direction: column;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
