
/* --- Global Resets & Typography --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
background-color: #ffffff;
color: #333333;
line-height: 1.6;
}

/* --- Elegant Header Layout --- */
header {
background-color: #f4f1ea; /* Core Oasis Cream */
padding: 60px 20px;
text-align: center;
border-bottom: 1px solid #C2B280; /* Thin Sand Accent Line */
}

.brand-logo {
font-family: 'Playfair Display', serif;
font-size: 3.5rem;
font-weight: 400;
color: #4a5d4e; /* Nature Green */
letter-spacing: 4px;
}

.brand-subtitle {
font-size: 0.9rem;
letter-spacing: 6px;
color: #C2B280; /* Sand / Gold Accent */
margin-top: 5px;
font-weight: 500;
}

/* --- Balanced Mission Statement Section --- */
#about {
padding: 80px 20px;
text-align: center;
background-color: #ffffff;
}

#about h2 {
font-family: 'Playfair Display', serif;
color: #4a5d4e;
font-size: 2rem;
letter-spacing: 2px;
margin-bottom: 25px;
}

#about p {
font-size: 1.1rem;
line-height: 1.9;
max-width: 750px;
margin: 0 auto;
color: #555555;
font-style: italic; /* Beautiful narrative text style */
}

/* --- High-End Product Catalog Grid --- */
#products {
background-color: #f4f1ea; /* Seamless background matching your labels */
padding: 80px 20px;
text-align: center;
}

#products h2 {
font-family: 'Playfair Display', serif;
color: #4a5d4e;
font-size: 2rem;
letter-spacing: 2px;
margin-bottom: 40px;
}

.gallery-container {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
max-width: 1100px;
margin: 0 auto;
}

.product-card {
background: #ffffff;
padding: 30px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
flex: 1;
min-width: 280px;
max-width: 320px;
text-align: center;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px rgba(74, 93, 78, 0.1);
}

.product-card img {
width: 100%;
height: 240px;
object-fit: cover; /* Ensures images never warp or stretch */
border-radius: 8px;
margin-bottom: 25px;
}

.product-card h3 {
font-family: 'Playfair Display', serif;
color: #4a5d4e;
font-size: 1.4rem;
margin-bottom: 12px;
letter-spacing: 1px;
}

.product-card p {
font-size: 0.9rem;
color: #666666;
line-height: 1.6;
}

/* --- Minimalist Footer & Social Links --- */
footer {
background-color: #ffffff;
padding: 60px 20px;
text-align: center;
border-top: 1px solid #C2B280;
}

footer h2 {
font-family: 'Playfair Display', serif;
color: #4a5d4e;
font-size: 1.6rem;
letter-spacing: 2px;
margin-bottom: 10px;
}

footer p {
font-size: 0.9rem;
color: #C2B280;
letter-spacing: 1px;
margin-bottom: 30px;
}

.social-links a {
text-decoration: none;
color: #4a5d4e;
font-weight: 500;
font-size: 0.85rem;
letter-spacing: 2px;
transition: color 0.3s ease;
}

.social-links a:hover {
color: #C2B280;
}

.divider {
color: #C2B280;
margin: 0 15px;
}

.top-link-container {
margin-top: 40px;
}

.back-link {
text-decoration: none;
color: #888888;
font-size: 0.75rem;
letter-spacing: 3px;
font-weight: bold;
border-bottom: 1px solid #dddddd;
padding-bottom: 4px;
transition: all 0.3s ease;
}

.back-link:hover {
color: #4a5d4e;
border-bottom: 1px solid #4a5d4e;
}

.image-placeholder {
    width: 100%;
    height: 240px;
    background-color: #f4f1ea; /* Oasis Cream */
    border: 1px dashed #C2B280; /* Elegant gold dashed line */
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.image-placeholder {
    font-family: 'Playfair Display', serif;
    color: #4a5d4e; /* Nature Green */
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transformation: uppercase;
}