/* --- CSS VARIABLES (Brand Colors) --- */
:root {
    --primary-text: #2c2c2c;       /* Deep Charcoal */
    --secondary-text: #555555;     /* Soft Gray */
    --accent-color: #8da399;       /* Soft Sage/Earth Tone */
    --bg-color: #fcfbf9;           /* Warm Off-White (Cotton feel) */
    --white: #ffffff;
    --btn-hover: #758b81;
}

/* --- GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

p {
    font-weight: 300;
    color: var(--secondary-text);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px; /* Slight soft edge, not fully round */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-text);
    color: var(--white);
    border: 1px solid var(--primary-text);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-text);
    border: 1px solid var(--primary-text);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary-text);
    color: var(--white);
}

/* --- HEADER --- */
header {
    padding: 18px 0; /* 10% reduction from 20px */
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--accent-color);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.4); /* Soft warm overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    background: rgba(255,255,255,0.85); /* Box to make text readable */
    padding: 40px;
    border-radius: 4px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.hero h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--white);
}

/* --- PROMISE SECTION --- */
.promise {
    padding: 60px 0;
    text-align: center;
    background-color: var(--white);
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.promise blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.promise-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.promise-item {
    flex: 1;
    min-width: 200px;
}

/* --- FEATURES (DIFFERENTIATORS) --- */
.features {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 4px;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* --- WINTER COLLECTION --- */
.winter-collection {
    padding: 80px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    position: relative;
    background: var(--bg-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background-color: #f8f8f8;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 400;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
}

.product-price .sale-price {
    color: var(--accent-color);
    font-weight: 600;
}

/* --- COLLECTIONS --- */
.collections {
    padding: 80px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.collection-block {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Text at bottom */
    group: ;
}

.collection-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.collection-block:hover .collection-bg {
    transform: scale(1.05);
}

.collection-content {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    width: 90%;
    margin: 0 auto 30px;
    padding: 30px;
    text-align: center;
}

/* --- TESTIMONIAL --- */
.testimonial {
    padding: 80px 0;
    background-color: #f4f1ed; /* Slightly darker beige */
    text-align: center;
}

.testimonial h2 {
    font-style: italic;
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

/* --- FOOTER --- */
footer {
    background-color: #2c2c2c;
    color: #dcdcdc;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #888;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    .hero h3 { font-size: 0.9rem; }
    .nav-flex { flex-direction: column; gap: 15px; }
    .logo img { height: 40px; }
    .collections-grid { grid-template-columns: 1fr; }
    .hero-content { margin: 0 15px; padding: 25px; width: 85%; }
    .btn-secondary { margin-left: 0; margin-top: 10px; display: block; }
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .product-image { height: 250px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero h3 { font-size: 0.85rem; }
    .hero-content { padding: 20px; width: 90%; }
    .products-grid { grid-template-columns: 1fr; }
    nav ul { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- NAVIGATION ACTIVE STATE --- */
nav a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

/* --- LOGO LINK --- */
.logo a {
    text-decoration: none;
    display: inline-block;
}