:root {
    --primary-color: #0F172A; /* Dark Blue/Black */
    --secondary-color: #C6A87C; /* Muted Gold */
    --text-color: #334155;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Red Hat Display', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Button & Utilities */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.primary-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.primary-btn:hover {
    background: #b08d55;
    transform: translateY(-2px);
}

.section {
    padding: 80px 5%;
}

.bg-light {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0px; /* Reset because nav is fixed but covers top */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-style: italic;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .overlay {
    bottom: 0;
    opacity: 1;
}

.add-to-cart {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.product-info p {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Collections */
.collection-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    background: #000;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.collection-item:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}

.collection-item.large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.collection-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
}

.collection-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
}

.btn-link {
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover i {
    margin-left: 10px;
}

/* Newsletter */
.newsletter {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 5%;
    text-align: center;
}

.newsletter h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    outline: none;
}

/* Footer */
footer {
    background: #0b1120;
    color: #94a3b8;
    padding: 80px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo h2 {
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 18px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .collection-grid { grid-template-columns: 1fr 1fr; }
    .collection-item.large { grid-column: span 2; grid-row: auto; height: 300px;}
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; font-size: 24px; }
    .hero h1 { font-size: 36px; }
    .section-header h2 { font-size: 32px; }
    .collection-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-contact p { justify-content: center; }
    .social-icons { justify-content: center; }
    .newsletter-form { flex-direction: column; }
}
