/* --- 1. BASIC RESET & SETUP --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a5a5; /* Soft Rose/Gold */
    --text-dark: #272423;
    --text-light: #111110;
    --bg-white: #f1eded;
    --bg-light: #f5f3f3;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

/* --- 2. NAVBAR STYLES --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky;
    top: 0;
    z-index: 100; 
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color); 
}

/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none; 
}

.hamburger {
    display: none; 
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 10; 
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* --- 3. FOOTER STYLES --- */
footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), 
                url('https://images.unsplash.com/photo-1522335789803-5f7e67e1356e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn {
    padding: 14px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #b88b8b; 
}

/* --- 5. CATEGORIES SECTION --- */
.categories {
    padding: 60px 50px;
    text-align: center;
    background-color: var(--bg-light);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto; 
}

.category-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px); 
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.btn-small {
    padding: 10px 25px;
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-small:hover {
    background-color: var(--primary-color);
}

/* --- 6. PRODUCT PAGE STYLES --- */
.page-header {
    text-align: center;
    padding: 50px 20px 30px;
    background-color: var(--bg-light);
    border-bottom: 1px solid #eee;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px); 
}

/* --- FIXED IMAGE CSS (NO CROPPING) --- */
.product-card img {
    width: 100%;
    height: 400px;          /* Taller box for products */
    object-fit: contain;    /* Shows the WHOLE image instead of cropping */
    background-color: #ffffff; /* Clean white background behind the image */
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

/* --- 7. MAIN BACKGROUND IMAGE --- */
.main-bg {
    background-image: url('images/logo.jpeg.jpeg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: scroll; 
}

/* --- 8. ABOUT PAGE STYLES --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
    padding: 60px 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.about-text li {
    margin-bottom: 12px;
    padding-left: 20px;
    text-indent: -20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* --- 9. CONTACT PAGE STYLES --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.contact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-box p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.social-link {
    display: block;
    padding: 12px;
    margin: 10px 0;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
}

.whatsapp {
    background-color: #25D366; 
}

.facebook {
    background-color: #4267B2; 
}

/* --- 10. ALL MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out;
        z-index: 5; 
    }

    .menu-toggle:checked ~ .nav-links {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 20px; 
    }

    .hero-content h1 {
        font-size: 40px; 
    }
    .hero-content p {
        font-size: 16px;
    }
    .category-grid {
        grid-template-columns: 1fr; 
    }
    .categories {
        padding: 40px 20px; 
    }

    .page-header h2 {
        font-size: 32px;
    }
    .product-grid {
        padding: 30px 20px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
        gap: 15px;
    }
    
    /* FIXED MOBILE IMAGE CSS (NO CROPPING) */
    .product-card img {
        height: 250px;          /* Taller box on mobile */
        object-fit: contain;    /* No cropping on mobile */
        background-color: #ffffff; 
    }

    .about-container, .contact-container {
        grid-template-columns: 1fr; 
        padding: 30px 20px;
    }
    .about-text h3 {
        font-size: 24px;
    }
    .contact-box {
        padding: 25px;
    }
}