/* ==========================================
   1. RESET & BOTANICAL PALETTE (Updated)
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Playfair Display', Georgia, serif;
    /* FIX: Changed from bright off-white to a calming, rich sage green */
    background-color: #e2e8dd; 
    /* FIX: Changed to a deep, dark forest green for high contrast text */
    color: #1c2b1b; 
}

body {
    line-height: 1.7;
}

/* ==========================================
   2. FLOWER NAVBAR (Color Matched)
   ========================================== */
.flower-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 8%;
    /* FIX: Semi-transparent sage green to blend with the new background */
    background-color: rgba(226, 232, 221, 0.95); 
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #cbd4c5;
}

.flower-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-name {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    color: #1c2b1b;
}

.flower-nav-links a {
    color: #3a4d39;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-family: sans-serif;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.flower-nav-links a:hover {
    color: #b86f66; /* Slightly richer rose accent for better contrast */
}

/* ==========================================
   3. AIRY HERO LAYOUT (With Updated Stock Image)
   ========================================== */
.flower-hero {
    min-height: 100vh;
    /* This premium high-resolution floral arrangement backdrop matches our palette perfectly */
    background: linear-gradient(rgba(226, 232, 221, 0.85), rgba(226, 232, 221, 0.65)), 
                url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    text-align: center;
    padding-top: 90px;
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    color: #1c2b1b;
    font-family: sans-serif;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flower-hero h1 {
    font-size: 3.5rem;
    color: #1c2b1b;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #3a4d39;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-family: sans-serif;
}

.flower-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background-color: #1c2b1b; 
    color: #ffffff;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.flower-btn:hover {
    background-color: #b86f66; 
}

/* ==========================================
   4. COLLECTIONS CONTAINER (Warm Contrast Accent)
   ========================================== */
.flower-collections {
    min-height: 100vh;
    padding: 8rem 8% 6rem 8%;
    /* FIX: Changed from pure white to a warm, sandy linen cream for contrast */
    background-color: #f4eee8; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2.5rem;
    color: #1c2b1b;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #556b54; /* Muted olive-gray for secondary text */
    text-align: center;
    font-family: sans-serif;
    font-size: 0.95rem;
    margin-bottom: 5rem;
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    max-width: 1250px;
    justify-content: center;
}

.collection-card {
    /* FIX: Changed cards back to the sage green so they "pop" against the linen floor */
    background-color: #e2e8dd; 
    flex: 1 1 300px;
    max-width: 360px;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(28, 43, 27, 0.08); /* Soft organic shadow drop */
}

.img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.04);
}

.card-meta {
    padding: 1.8rem;
    text-align: center;
}

.card-meta h3 {
    font-size: 1.4rem;
    color: #1c2b1b;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.price {
    color: #b86f66; /* Warm dusty rose price tags */
    font-weight: 600;
    font-family: sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.desc {
    color: #4a5d49;
    font-size: 0.9rem;
    font-family: sans-serif;
    line-height: 1.6;
}

/* ==========================================
   5. ASYMMETRIC ABOUT SECTION (Alternating Background)
   ========================================== */
.flower-about {
    min-height: 100vh;
    padding: 8rem 8% 6rem 8%;
    /* FIX: Set back to sage green to maintain section break harmony */
    background-color: #e2e8dd; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1100px;
    align-items: center;
}

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 2.6rem;
    color: #1c2b1b;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-text p {
    color: #3a4d39;
    font-family: sans-serif;
    margin-bottom: 1.5rem;
}

.about-image-box {
    flex: 1 1 400px;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
    /* FIX: Changed offset shadow to match the warm linen cream background color */
    box-shadow: 20px 20px 0px #f4eee8; 
}