/* 1. Variables & Base */
:root {
    --charcoal: #1a1a1a;
    --bone: #F9F8F5;
    --gold: #C5A059;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bone);
    color: var(--charcoal);
    line-height: 1.7;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}


/* 2. Navigation */
.logo {
  width: 30%;
}
.navbar {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--charcoal);
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* 3. Hero Section */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background: #2d2d2d; /* Fallback */
    overflow: hidden;
}

/* Add your background image here */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.italic-brand {
    font-style: italic;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin: 0 10px;
    transition: var(--transition);
}

.cta-button.primary {
    background: var(--gold);
    color: var(--white);
}

.cta-button.secondary {
    border: 1px solid var(--white);
    color: var(--white);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 4. Features Bar */
.features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* 5. Product Grid */
.featured-showroom {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 { font-size: 2.5rem; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    transition: var(--transition);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem 0;
    text-align: center;
}

.price {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin: 0.5rem 0;
}

.view-details {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
}

/* 6. Footer */
.main-footer {
    background: var(--charcoal);
    color: #999;
    padding: 5rem 5% 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section a { color: #999; text-decoration: none; }
.footer-section a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* Showroom Specific Styles */
.showroom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.showroom-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showroom-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #777;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem 2rem;
}

.product-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: #f2f2f2;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.hover-actions {
    position: absolute;
    bottom: -50px; /* Hidden by default */
    left: 0;
    width: 100%;
    transition: var(--transition);
}

.product-card:hover .hover-actions {
    bottom: 0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.product-details {
    padding: 1.5rem 0;
    text-align: left;
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.view-item-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.view-item-link:hover {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* About Page Specifics */
.about-page {
    padding: 6rem 0;
    background-color: var(--bone);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: 1;
}

.about-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-text .subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.philosophy-quote {
    margin-top: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
}

.philosophy-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

/* Brand Values */
.brand-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 4rem;
}

.value-item h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-page { padding: 5rem 5%; background: var(--bone); min-height: 80vh; }
.contact-container { max-width: 600px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 3rem; }

.contact-card {
    background: white;
    padding: 3rem;
    box-shadow: var(--shadow);
    border-radius: 4px;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-weight: 600; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
}

.radio-group { display: flex; gap: 1rem; margin-top: 0.5rem; }
.radio-label {
    flex: 1;
    border: 1px solid #eee;
    padding: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.radio-label input { display: none; }
.radio-label span { font-size: 0.8rem; color: #777; }
.radio-label:has(input:checked) { border-color: var(--gold); background: #fffcf5; }
.radio-label:has(input:checked) span { color: var(--gold); font-weight: 600; }

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover { background: var(--gold); }

/* Mobile Fix */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 400px; }
    .about-text h1 { font-size: 2.5rem; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-bar { grid-template-columns: 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2.5rem; }
}
