
:root {
    --lux-primary: #1A1A40;
    --lux-accent: #B11226;
    --lux-gold: #C6A64F;
    --lux-bronze: #7E6B3C;
    --lux-bg: #FAF8F5;
    --lux-card: #EAEAEA;
    --lux-text: #2D2D2D;
    --lux-subtext: #B0B0B0;
}

/* Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: var(--lux-bg);
    color: var(--lux-text);
    background-image: url('linen-texture.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.navbar {
    background-color: var(--lux-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--lux-subtext);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--lux-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Responsive Menu */
.hamburger, .nav-close {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--lux-text);
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--lux-subtext);
    }

    .hamburger, .nav-close {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #fff8f0, #fdfdfd);
    padding: 4rem 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--lux-primary);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--lux-subtext);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--lux-accent);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(198, 166, 79, 0.3);
}

.btn-primary:hover {
    background-color: var(--lux-gold);
    color: var(--lux-text);
    box-shadow: 0 4px 12px rgba(198, 166, 79, 0.4);
}

.btn-outline {
    border: 2px solid var(--lux-accent);
    background: transparent;
    color: var(--lux-accent);
}

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

/* Sections */
.section-title {
    text-align: center;
    margin: 2rem 0;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--lux-primary);
}

.categories, .product-grid, .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.category-card, .product-card, .collection-item {
    background-color: var(--lux-card);
    border: 1px solid var(--lux-subtext);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
}

.category-card:hover, .product-card:hover, .collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.category-card img, .product-card img, .collection-item img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--lux-gold);
    border-radius: 8px;
}

.price {
    font-size: 1.1rem;
    color: var(--lux-accent);
}

/* Other Sections */
.about-us, .contact, .testimonials, .featured-designers, .style-guide {
    padding: 3rem 0;
    background-color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--lux-subtext);
    border-radius: 5px;
}

.footer {
    background-color: var(--lux-primary);
    color: #fff;
    text-align: center;
    padding: 1rem;
}
