@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary: #D4AF37; /* Premium Gold */
    --primary-dark: #b58500;
    --dark: #121212;
    --light: #FAFAFA;
    --gray: #EAEAEA;
    --text: #222222;
    --text-light: #666666;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text); background: var(--light); line-height: 1.6; overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 500; margin-bottom: 1rem; color: var(--dark); letter-spacing: 1px; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); display: inline-block; }
img { max-width: 100%; display: block; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.py-5 { padding: 6rem 0; }
.mb-4 { margin-bottom: 2rem; }

/* Button */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 14px 35px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: var(--primary); z-index: -1; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::before { width: 100%; }
.btn:hover { color: #fff; border-color: var(--primary); }

.btn-fill { background: var(--primary); color: #fff; }
.btn-fill::before { background: var(--dark); border-color: var(--dark); }
.btn-fill:hover { border-color: var(--dark); }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.5rem; display: inline-block; position: relative; }
.section-title h2::after { content: ''; display: block; width: 50px; height: 2px; background: var(--primary); margin: 15px auto 0; }
.section-title p { color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; margin-top: 10px; }

/* Header Navbar */
.site-header {
    position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
    padding: 25px 0; transition: var(--transition); background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05); padding: 15px 0; border-bottom: none;
}
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-family: var(--font-heading); font-size: 26px; font-weight: 600; letter-spacing: 4px; color: var(--light); }
.site-header.scrolled .logo a, .site-header.light-bg .logo a { color: var(--dark); }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links li a { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--light); font-weight: 500; padding: 5px 0; position: relative; }
.site-header.scrolled .nav-links li a, .site-header.light-bg .nav-links li a { color: var(--dark); }
.nav-links li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links li a:hover::after, .nav-links li.active a::after { width: 100%; }

/* Hero Section */
.hero {
    height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center 20%; background-attachment: fixed;
}
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; color: #fff; max-width: 900px; padding: 0 20px; }
.hero-content h1 { font-size: 4.5rem; color: #fff; letter-spacing: 6px; margin-bottom: 25px; animation: fadeInUp 1s ease both; text-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; letter-spacing: 2px; animation: fadeInUp 1s ease 0.3s both; color: #eee; }
.hero-content .btn { animation: fadeInUp 1s ease 0.6s both; }

/* Collections Grid (Home/Products) */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px; }
.product-card { background: #fff; transition: var(--transition); position: relative; border-radius: 4px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.product-img { position: relative; height: 450px; overflow: hidden; background: #f9f9f9; }
.product-img img { width: 100%; height: 100%; transition: transform 0.8s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); opacity: 0; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .btn { transform: translateY(20px); opacity: 0; }
.product-card:hover .product-overlay .btn { transform: translateY(0); opacity: 1; transition-delay: 0.1s; }
.product-info { padding: 25px 20px; text-align: center; }
.product-info h3 { font-size: 18px; margin-bottom: 5px; color: var(--dark); }
.product-info p { color: var(--text-light); font-size: 14px; font-weight: 500; letter-spacing: 1px; margin-bottom: 0; }

/* Product Detail Page */
.product-detail-flex { display: flex; gap: 60px; align-items: flex-start; }
.product-gallery { flex: 1; background: #f9f9f9; border-radius: 8px; overflow: hidden; height: 80vh; }
.product-gallery img { width: 100%; height: 100%; object-fit: contain; }
.product-data { flex: 1; padding-top: 20px; }
.product-data h1 { font-size: 2.5rem; margin-bottom: 10px; }
.product-data .cat { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 600; display: block; margin-bottom: 20px; }
.product-data .price { font-size: 24px; font-weight: 500; font-family: var(--font-heading); margin-bottom: 30px; }
.product-data .desc { color: var(--text-light); margin-bottom: 40px; font-size: 15px; }

/* Contact Specific */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.contact-info p { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: var(--text-light); font-size: 15px; }
.contact-info p i { color: var(--primary); font-size: 20px; }
.contact-form .form-control { width: 100%; padding: 15px 20px; border: 1px solid #ddd; background: transparent; font-family: var(--font-body); font-size: 14px; outline: none; transition: var(--transition); border-radius: 0; margin-bottom: 20px; }
.contact-form .form-control:focus { border-color: var(--primary); box-shadow: inset 0 -2px 0 var(--primary); }

/* Page Header Wrapper */
.page-header { background: var(--dark); padding: 150px 0 80px; text-align: center; color: #fff; }
.page-header h1 { color: #fff; font-size: 3rem; letter-spacing: 3px; }
.page-header p { color: #aaa; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; }

/* Footer */
.site-footer { background: #0a0a0a; color: #fff; padding: 80px 0 30px; }
.footer-logo { font-family: var(--font-heading); font-size: 28px; font-weight: 600; text-align: center; margin-bottom: 30px; letter-spacing: 5px; color: var(--primary); }
.footer-links { list-style: none; display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px; }
.footer-links a { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #888; }
.footer-links a:hover { color: #fff; }
.copyright { font-size: 12px; color: #555; text-align: center; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .nav-links { display: none; /* simple mobile hide for now */ }
    .product-detail-flex, .contact-grid { flex-direction: column; }
    .product-gallery { height: 50vh; width: 100%; }
}
