/* ===== ABOUT PAGE — islune Florist ===== */
/* Redesigned with organic, warm aesthetic */

/* ===== HERO ===== */
.about-hero {
    background: url('https://images.unsplash.com/photo-1591886960571-74d43a9d4166?w=1400&q=80&fit=crop') center/cover no-repeat,
                linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 120px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for text readability */
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 83, 45, 0.85) 0%,
        rgba(15, 61, 34, 0.78) 100%
    );
    z-index: 0;
}

.about-hero > * { position: relative; z-index: 1; }

/* Organic decorative blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-blob-1 {
    width: 200px; height: 200px;
    background: rgba(231, 184, 176, 0.12);
    top: -40px; right: -30px;
    filter: blur(45px);
}

.hero-blob-2 {
    width: 160px; height: 160px;
    background: rgba(184, 134, 107, 0.10);
    bottom: -30px; left: -20px;
    filter: blur(40px);
}

/* Botanical SVG accents */
.hero-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.hero-deco-left {
    left: 3%;
    bottom: 18%;
    opacity: 0.12;
}

.hero-deco-right {
    right: 4%;
    top: 25%;
    opacity: 0.10;
}

/* Hero typography */
.about-hero .hero-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-hero .hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    opacity: 0.95;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.about-hero .hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.75;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.9;
    white-space: pre-line;
}

/* Organic wave at hero bottom */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* ===== STORY SECTION ===== */
.about-story {
    position: relative;
    background: var(--bg);
    padding: 80px 20px;
    overflow: hidden;
}

/* Subtle background texture */
.about-story::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(20, 83, 45, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(184, 134, 107, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.story-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
}

/* Decorative opening quote mark */
.story-quote-mark {
    display: block;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--copper);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -16px;
}

.story-inner p {
    color: var(--text);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* Story highlight card — name origin */
.story-highlight {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 32px 0;
    border-left: 3px solid var(--copper);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.story-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
}

/* Decorative botanical accent for story */
.story-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.06;
}

.story-deco-right {
    right: -20px;
    top: 20px;
}

/* ===== VALUES SECTION ===== */
.about-values-section {
    position: relative;
    background: var(--bg-card);
    padding: 80px 20px;
    overflow: hidden;
}

/* Subtle background pattern */
.about-values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(231, 184, 176, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(21, 128, 61, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.values-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.values-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Values grid — 2×2 on desktop, 1 col on mobile */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Value cards with top accent border */
.value-card {
    text-align: left;
    padding: 32px 28px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.value-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}

/* Top accent colors per value */
.value-card:nth-child(1) { border-top-color: var(--primary-light); }
.value-card:nth-child(2) { border-top-color: var(--copper); }
.value-card:nth-child(3) { border-top-color: var(--pink); }
.value-card:nth-child(4) { border-top-color: var(--gold); }

/* Value icons — soft colored circles */
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform var(--transition-base);
}

.value-card:hover .value-icon {
    transform: scale(1.08);
}

.value-icon.nature {
    background: rgba(21, 128, 61, 0.1);
    color: var(--primary-light);
}

.value-icon.warmth {
    background: rgba(184, 134, 107, 0.12);
    color: var(--copper);
}

.value-icon.curation {
    background: rgba(231, 184, 176, 0.2);
    color: var(--copper-dark);
}

.value-icon.elegance {
    background: rgba(251, 191, 36, 0.1);
    color: var(--gold);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text);
    font-family: 'Playfair Display', serif;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== TIMELINE SECTION ===== */
.about-timeline {
    background: var(--bg-cream);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs in timeline */
.timeline-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.timeline-deco-1 {
    width: 180px; height: 180px;
    background: rgba(21, 128, 61, 0.04);
    top: -40px; right: 10%;
}

.timeline-deco-2 {
    width: 140px; height: 140px;
    background: rgba(184, 134, 107, 0.05);
    bottom: -30px; left: 8%;
}

.timeline-inner {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 48px;
    text-align: center;
}

/* Timeline vertical line */
.timeline-line {
    position: absolute;
    left: 7px;
    top: 140px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--copper));
    opacity: 0.3;
}

/* Timeline items */
.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

/* Timeline dot — larger with ring */
.timeline-dot {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 3px solid var(--bg-cream);
    box-shadow: 0 0 0 2px var(--primary-light);
    margin-top: 4px;
    z-index: 1;
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--copper);
    box-shadow: 0 0 0 2px var(--copper);
}

/* Timeline year */
.timeline-year {
    flex: 0 0 60px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

/* Timeline content — card style */
.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow);
    border-color: rgba(184, 134, 107, 0.3);
}

.timeline-content p {
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.timeline-item {
    animation: fadeSlideUp 0.6s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

.about-hero .hero-label {
    animation: fadeSlideUp 0.6s ease-out backwards;
    animation-delay: 0.4s;
}

.about-hero .hero-tagline {
    animation: fadeSlideUp 0.6s ease-out backwards;
    animation-delay: 0.2s;
}

.about-hero .hero-subtitle {
    animation: fadeSlideUp 0.6s ease-out backwards;
    animation-delay: 0s;
}

/* ===== CTA SECTION ===== */
.about-cta {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(251, 230, 218, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

/* CTA decorative blobs */
.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.cta-blob-1 {
    width: 180px; height: 180px;
    background: rgba(231, 184, 176, 0.15);
    top: -30px; left: 10%;
}

.cta-blob-2 {
    width: 140px; height: 140px;
    background: rgba(21, 128, 61, 0.06);
    bottom: -20px; right: 15%;
}

.about-cta > * { position: relative; z-index: 1; }

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-cta p {
    color: var(--text);
    margin-bottom: 32px;
    font-size: 1.1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.about-cta .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(20, 83, 45, 0.3);
    transform: translateY(-2px);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .timeline-item,
    .about-hero .hero-label,
    .about-hero .hero-tagline,
    .about-hero .hero-subtitle {
        animation: none;
    }

    .value-card,
    .value-card:hover,
    .value-card:active,
    .timeline-dot,
    .timeline-content,
    .about-cta .btn-primary,
    .about-cta .btn-primary:hover {
        transition: none;
    }

    .value-card:hover,
    .about-cta .btn-primary:hover {
        transform: none;
    }

    .value-card:hover .value-icon {
        transform: none;
    }

    .timeline-item:hover .timeline-dot {
        transform: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 20px 70px;
        background-image: url('https://images.unsplash.com/photo-1591886960571-74d43a9d4166?w=600&q=80&fit=crop');
    }

    .about-hero .hero-tagline {
        font-size: 1.25rem;
    }

    .about-hero .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-deco { display: none; }
    .hero-blob-1 { width: 140px; height: 140px; }
    .hero-blob-2 { width: 110px; height: 110px; }

    .about-story { padding: 56px 20px; }

    .story-inner h2 { font-size: 1.6rem; }

    .story-highlight { padding: 20px 24px; }

    .story-deco { display: none; }

    .about-values-section { padding: 56px 20px; }

    .values-header h2 { font-size: 1.6rem; }

    .about-values {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .value-card { padding: 24px 22px; }

    .about-timeline { padding: 56px 20px; }

    .timeline-inner h2 { font-size: 1.6rem; }

    .timeline-line { left: 7px; }
    .timeline-item { gap: 14px; }
    .timeline-year { flex: 0 0 50px; font-size: 1.15rem; }

    .about-cta { padding: 56px 20px; }
    .about-cta h2 { font-size: 1.6rem; }
    .about-cta p { font-size: 1rem; }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .about-hero {
        background-image: url('https://images.unsplash.com/photo-1591886960571-74d43a9d4166?w=1000&q=80&fit=crop');
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 90px 16px 60px;
    }

    .about-hero .hero-tagline {
        font-size: 1.1rem;
    }

    .story-highlight {
        padding: 18px 20px;
    }

    .value-card {
        padding: 20px 18px;
    }
}
