/* --- 1. Base Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- 2. Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 3. Navigation --- */
nav {
    position: fixed; top: 0; width: 100%; padding: 20px 50px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(15, 15, 15, 0.8); backdrop-filter: blur(15px);
    z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo { 
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; 
    letter-spacing: 4px; 
    text-transform: lowercase; 
}
.logo::after { content: '.'; color: #d4af37; font-weight: 800; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: #d4af37; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.bar { width: 25px; height: 3px; background: white; border-radius: 2px; transition: 0.3s; }

/* --- 4. Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 20px; animation: fadeInUp 1s ease-out; }
.hero-content h1 span { color: #d4af37; }
.hero-content p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; animation: fadeInUp 1s ease-out 0.3s forwards; opacity: 0; }

.btn-primary {
    display: inline-block; padding: 15px 40px; background: white; color: black;
    text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    border-radius: 4px; transition: 0.4s; animation: fadeInUp 1s ease-out 0.6s forwards; opacity: 0;
}
.btn-primary:hover { background: #d4af37; color: white; transform: translateY(-5px); }

/* --- 5. Gallery / Products Section (Dark Style) --- */
.gallery-header {
    text-align: center;
    padding: 100px 5% 40px;
}

.gallery-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
}

.gallery-header h1 span { color: #d4af37; }

.gallery-grid {
    column-count: 3;
    column-gap: 25px;
    padding: 0 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    background: #1a1a1a;
    margin-bottom: 25px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.gallery-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .overlay { opacity: 1; }

.overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-left: 3px solid #d4af37;
    padding-left: 10px;
}

/* --- 6. Footer --- */
footer { 
    padding: 50px; 
    background: #0a0a0a; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}
.social-media { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
.social-media a { color: white; text-decoration: none; font-size: 0.8rem; opacity: 0.6; transition: 0.3s; }
.social-media a:hover { opacity: 1; color: #d4af37; }

/* --- 7. Mobile Responsiveness --- */
@media (max-width: 1100px) { .gallery-grid { column-count: 2; } }

@media (max-width: 768px) {
    nav { padding: 15px 25px; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; right: -100%; top: 0; height: 100vh; width: 75%;
        background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px);
        flex-direction: column; justify-content: center; align-items: center;
        transition: 0.5s; gap: 40px;
    }
    .nav-links.active { right: 0; }
    .gallery-grid { column-count: 1; }
}
/* --- 8. Featured Products (Uniform Grid) --- */
.featured-products {
    padding: 80px 5%;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-title h2 span {
    color: #d4af37;
    filter: drop-shadow(0 0 8px #d4af37);
    animation: fadeInUp 1s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-title p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.85;
    animation: fadeInUp 1s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #161616;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover; /* Keeps all product images the same size */
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.product-card .price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.product-card .buy-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.product-card .buy-btn:hover {
    background: #d4af37;
    color: #000;
}