/* ============================================
   🌸 SECTION 2: THE ART OF LIVING (Philosophy)
   Soft, Soulful, Meaningful
   ============================================ */

/* Section Container */
.whimsy-about {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(180deg,
            var(--whimsy-cream) 0%,
            #FFF5F5 50%,
            #F4F9F9 100%);
    overflow: hidden;
    z-index: 2;
    /* Sit above the hero collage overlay */
}

/* Decorative Background Elements */
.whimsy-about::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #FFF5F5);
    z-index: 1;
}

.whimsy-about__content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

/* 1. Header Block */
.whimsy-about__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.whimsy-about__eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--whimsy-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.whimsy-about__title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--whimsy-lavender);
    /* Lavender title */
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

.whimsy-about__text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* 2. The 3 Pillars Cards */
.whimsy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.whimsy-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.whimsy-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(200, 169, 216, 0.15);
    /* Soft lavender shadow */
    border-color: var(--whimsy-pink-light);
}

/* Card Icon/Doodle Wrapper */
.whimsy-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whimsy-card:hover .whimsy-card__icon {
    transform: scale(1.1) rotate(5deg);
}

/* Reuse existing SVGs but size them here */
.whimsy-card__icon svg {
    width: 100%;
    height: 100%;
}

.whimsy-card__title {
    font-family: 'Dancing Script', cursive;
    font-size: 1.75rem;
    color: #4A4A4A;
    margin-bottom: 1rem;
}

.whimsy-card__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Decorative corner accents for cards */
.whimsy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--whimsy-teal),
            var(--whimsy-pink),
            var(--whimsy-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whimsy-card:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whimsy-about__title {
        font-size: 2.5rem;
    }

    .whimsy-about__content {
        gap: 3rem;
    }

    .whimsy-pillars {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
        gap: 1.5rem;
    }
}