/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Google Fonts & Body Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #4A4A4A; /* Dark Gray for text */
    background-color: #FFF8F6; /* Very light pink/off-white background */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

html {
    scroll-behavior: smooth;
}

/* Background Video Styling */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind everything */
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Cover the area without distortion */
    /* Initial opacity is now controlled by the overlay */
}

/* Video Background Overlay - ADDED */
.video-background::before {
    content: ''; /* Required for pseudo-elements to show */
    position: absolute; /* Position relative to the .video-background container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black color with 30% opacity */
    z-index: 0; /* Place the overlay directly above the video */
}
/* --- End of Added Overlay Rule --- */

/* Header and Logo */
.site-header {
    padding: 20px 40px;
    position: relative; /* Ensure it's above the video overlay */
    z-index: 10;
    display: flex; /* Align logo */
    align-items: center;
}

.logo {
    width: 80px; /* Adjust size as needed */
    height: 80px;
    border-radius: 50%; /* Make it round */
    object-fit: cover; /* Ensure image covers the circle */
    /* Add a subtle shadow if desired */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

/* Main Content Area */
.content-area {
    position: relative; /* Needed for z-index stacking */
    z-index: 1; /* Above the video and overlay */
    padding: 0 20px; /* Add horizontal padding */
    max-width: 1200px; /* Max width for content */
    margin: 0 auto; /* Center content */
}

/* Hero Content (Text over video) */
.hero-content {
    text-align: center;
    padding: 120px 20px 60px 20px; /* Top padding to push below header */
    color: #F0F0F0; /* Changed to a lighter color for better contrast on dark overlay */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Adjusted shadow slightly */
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FADADD; /* Light Pink/Rose for heading contrast */
    /* Original color: #B76E79; */
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #EAEAEA; /* Lighter paragraph text */
}

/* Product Grid */
.product-grid-container {
    padding: 40px 0; /* Spacing around the grid section */
    background-color: rgba(255, 255, 255, 0.85); /* Slightly more opaque background for product area */
    border-radius: 10px; /* Slightly rounded corners */
    margin-bottom: 40px; /* Space before footer */
}

.product-grid-container h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #B76E79; /* Kept Rose/Pink heading color */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between grid items */
    padding: 0 20px; /* Padding inside the grid container */
}

/* Product Card Styling */
.product-card {
    background-color: #FFFFFF; /* White background for cards */
    border-radius: 8px;
    overflow: hidden; /* Keep image corners rounded */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-card a {
    text-decoration: none;
    color: #4A4A4A; /* Original text color for cards */
    display: block; /* Make the whole card clickable */
    padding: 20px;
}

.product-card img {
    max-width: 100%;
    height: 200px; /* Fixed height for uniform look */
    object-fit: contain; /* Show the whole product, maybe 'cover' if images are uniform */
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 40px; /* Ensure space even for short titles */
    color: #4A4A4A; /* Ensure card title uses default text color */
}

/* Button Styling */
.view-product-btn {
    display: inline-block;
    background-color: #E0BFB8; /* Muted Rose */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 20px; /* Pill shape */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.product-card a:hover .view-product-btn {
    background-color: #D68C8C; /* Slightly stronger rose on hover */
}

/* Footer / Disclosure */
.site-footer-disclosure {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.8rem;
    color: #666;
    background-color: rgba(255, 248, 246, 0.95); /* Slightly more opaque version of body bg */
    margin-top: 30px; /* Space above footer */
    position: relative; /* Ensure it's above video */
    z-index: 5;
}

.site-footer-disclosure p {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .product-grid-container h2 {
        font-size: 2rem;
    }
    .site-header {
        padding: 15px 20px;
    }
    .logo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .product-grid {
        grid-template-columns: 1fr; /* Stack products on smallest screens */
        gap: 20px;
    }
    .product-card h3 {
        font-size: 0.9rem;
        min-height: auto; /* Adjust min-height if needed */
    }
    .view-product-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}