/* Client Color Palette:
   Primary Blue: #0070C0
   Pink/Magenta: #ED55A5
   Yellow: #F5C542
   Light Gray: #F4F4F4
   Dark Gray: #2C2C2C
   Light Blue: #5BC8D2
   Light Pink: #FAD9E5
*/

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C2C2C;
    background: #F4F4F4;
}

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

/* Hero Section */
.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-with-bg {
    background-image: url('../img/hero/hero_HAAD.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 112, 192, 0.7), rgba(237, 85, 165, 0.6));
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 24px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.about-hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 217, 229, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.story-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 200, 210, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
}

.story-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: #0070C0;
    margin-bottom: 20px;
    position: relative;
}

.story-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ED55A5, #5BC8D2);
    border-radius: 2px;
}

.story-intro p {
    font-size: 18px;
    color: #0070C0;
    font-style: italic;
    opacity: 0.8;
}

.story-blocks {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.story-block {
    background: linear-gradient(135deg, rgba(250, 217, 229, 0.1), rgba(91, 200, 210, 0.05));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(237, 85, 165, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 112, 192, 0.1);
    border-color: rgba(237, 85, 165, 0.2);
}

.story-block::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(245, 197, 66, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.story-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.story-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #2C2C2C;
    margin-bottom: 16px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

/* Highlight Quote */
.highlight-quote {
    background: linear-gradient(135deg, #0070C0, #5BC8D2);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 112, 192, 0.3);
}

.highlight-quote::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    opacity: 0.2;
}

.highlight-quote::after {
    content: '"';
    position: absolute;
    bottom: 15px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    opacity: 0.2;
}

.highlight-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    background: #FAD9E5;
    padding: 80px 0;
    text-align: center;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 193, 122, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.mission-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(245, 197, 66, 0.08);
    border-radius: 50%;
    z-index: 1;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mission-content h2::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    50% { transform: rotate(10deg) scale(1.1); opacity: 1; }
}

.mission-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #ED55A5;
    margin-bottom: 30px;
    line-height: 1.3;
}



.cta-btn {
    background: linear-gradient(135deg, #F5C542, #ED55A5);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 197, 66, 0.4);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative elements */
.doodle-heart {
    position: absolute;
    top: 20%;
    left: 15%;
    font-size: 2rem;
    color: rgba(245, 197, 66, 0.4);
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.doodle-star {
    position: absolute;
    top: 60%;
    right: 10%;
    font-size: 1.5rem;
    color: rgba(212, 131, 79, 0.3);
    transform: rotate(20deg);
    animation: float 2.5s ease-in-out infinite reverse;
}

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

/* Hand-drawn style border */
.mission-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q25,20 50,50 T100,50' stroke='%235BC8D2' stroke-width='2' fill='none' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
    border-radius: 20px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 80px 20px;
    }

    .mission-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .doodle-heart,
    .doodle-star {
        display: none;
    }
}

.story-block {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.story-block:nth-child(1) { animation-delay: 0.1s; }
.story-block:nth-child(2) { animation-delay: 0.2s; }
.story-block:nth-child(3) { animation-delay: 0.3s; }
.story-block:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .about-hero {
        padding: 100px 20px 60px;
        min-height: 50vh;
    }

    .story-section {
        padding: 60px 0;
    }

    .story-block {
        padding: 30px 20px;
    }

    .highlight-quote {
        padding: 40px 20px;
        margin: 40px 0;
    }

    .highlight-quote::before,
    .highlight-quote::after {
        font-size: 60px;
    }

    .mission-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .story-block::before {
        display: none;
    }

    .highlight-quote::before,
    .highlight-quote::after {
        display: none;
    }
}
