/* --- Imports & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

:root {
    --primary-pink: #ffe4e9;
    --dark-pink: #ffdae2;
    --accent-red: #ff4757;
    --text-dark: #2c3e50;
    --font-cursive: 'Dancing Script', cursive;
}

/* --- Global Utilities for Animation --- */
/* Elements start invisible and slightly moved */
.reveal-up, .reveal-left, .reveal-right, .reveal-text {
    opacity: 0;
    transition: all 1s ease-out;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-text { transform: scale(0.9); }

/* The class JS will add to make them appear */
.active-reveal {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --- Hero Section --- */
.about-hero {
    height: 70vh;
    background: radial-gradient(circle at top right, #fff0f3, #fff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cursive-subtitle {
    font-family: var(--font-cursive);
    font-size: 32px;
    color: var(--accent-red);
    display: block;
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 56px;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Icons Background */
.floating-icons i {
    position: absolute;
    color: rgba(255, 71, 87, 0.1); /* Very faint red */
    z-index: 0;
}

.float-1 { font-size: 80px; top: 10%; left: 10%; animation: float 6s ease-in-out infinite; }
.float-2 { font-size: 120px; top: 50%; right: 5%; animation: float 8s ease-in-out infinite reverse; }
.float-3 { font-size: 60px; bottom: 15%; left: 20%; animation: float 5s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* --- Story Section (Blob Image) --- */
.story-section {
    padding: 80px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blob-mask {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* The Magic Blob Shape */
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    box-shadow: 15px 15px 0px var(--primary-pink);
    transition: border-radius 5s ease-in-out infinite;
}

/* Animate the blob shape slightly */
@keyframes morphBlob {
    0% { border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%; }
    50% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%; }
}

.blob-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-img {
    position: relative;
}

.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-pink);
}

.exp-badge .num {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-red);
}

.exp-badge .txt {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight {
    color: var(--accent-red);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary-pink);
    z-index: -1;
    opacity: 0.7;
}

.story-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.signature {
    margin-top: 30px;
}

.cursive-sign {
    font-family: var(--font-cursive);
    font-size: 28px;
    color: #2c3e50;
}

/* --- Process Section --- */
.process-section {
    padding: 80px 0;
    background: #fff9fb;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(10deg);
}

.color-pink { color: #2ecc71; border: 2px solid #2ecc71; }
.color-orange { color: #f39c12; border: 2px solid #f39c12; }
.color-red { color: #e74c3c; border: 2px solid #e74c3c; }

.connector {
    flex: 1;
    height: 2px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 20px 100%;
    margin-top: 40px; /* Align with center of circle */
}

/* --- Stats Section --- */
.stats-section {
    background: var(--accent-red);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
}

.stat-item p {
    font-size: 18px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 36px; }
    .story-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; gap: 30px; }
    .connector { display: none; } /* Hide line on mobile */
    .stats-grid { flex-direction: column; gap: 40px; }
}