:root {
    --brand-dark: #303030;
    --brand-accent: #e58f8f; /* Soft blush/nude tone typical of beauty brands */
    --brand-cream: #f9f6f2;
    --white: #ffffff;
    --text-gray: #6a6a6a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--brand-dark); line-height: 1.6; background-color: var(--white); }
h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

/* Navigation */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: var(--white); position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 3px; text-decoration: none; color: var(--brand-dark); text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--brand-dark); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* Hero Section */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.1)), url('./images/luxurious-cosmetic-products-detailed-the-mockup-text-should-be-loveface.png') center/cover no-repeat;
    color: var(--white);
    padding: 0 8%;
}
.hero-content { max-width: 600px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; font-style: italic; }

/* Brand Information */
.brand-story { padding: 100px 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--brand-cream); }
.brand-story-1{border-top: 1px solid #e0d2c0}
.brand-story img { width: 100%; border-radius: 2px; box-shadow: 20px 20px 0px var(--brand-accent); }
.brand-story h2 { font-size: 2.5rem; margin-bottom: 20px; }
.brand-story p { margin-bottom: 20px; color: var(--text-gray); }

/* Store Overview / Collections */
.shop-preview { padding: 100px 8%; text-align: center; }
.shop-preview h2 { font-size: 2.5rem; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.product-item { text-align: left; }
.product-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; margin-bottom: 15px; }
.product-item h3 { font-size: 1.2rem; margin-bottom: 5px; }
.product-item p { color: var(--text-gray); font-weight: 300; }

/* Contact Us */
.contact-section { padding: 100px 8%; background: var(--brand-dark); color: var(--white); text-align: center; }
.contact-section h2 { font-size: 2.5rem; margin-bottom: 40px; }
.contact-form { max-width: 600px; margin: 0 auto; display: grid; gap: 20px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; background: transparent; border: 1px solid #444; color: var(--white); font-family: inherit;
}
.btn {
    display: inline-block; padding: 18px 45px; background: var(--brand-accent); color: var(--brand-dark);
    text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem;
    transition: 0.3s; border: none; cursor: pointer;
}
.btn:hover { background: var(--white); }

/* Footer */
footer { padding: 60px 8%; text-align: center; border-top: 1px solid #f0f0f0; }
.footer-links { margin-top: 20px; display: flex; justify-content: center; gap: 30px; }
.footer-links a { font-size: 0.8rem; text-decoration: none; color: #888; text-transform: uppercase; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .brand-story { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
/* Values Section Styling */
.values-section {
    padding: 100px 8% 50px;
    background-color: var(--white);
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-header p {
    font-style: italic;
    color: var(--brand-accent);
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    border-color: var(--brand-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 193, 179, 0.2); /* Uses the blush accent color */
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-dark);
}

.value-card:hover h3 {
    color: var(--brand-accent);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 5%;
    }
    .values-grid {
        gap: 20px;
    }
}