/* ========================================
   ABOUT PAGE STYLES - about-styles.css
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf4e7 100%);
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Cursor Trail */
        .trail {
            position: fixed;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

/* ================= VIDEO SECTION ================= */
#page5 {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#center-page5 {
    width: 100%;
    height: 100%;
    position: relative;
}

#center-page5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

#center-page5 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= MAIN HERO ================= */
.main {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.main::before {
    content: '🌈';
    position: absolute;
    top: 20px;
    left: 10%;
    font-size: 4rem;
    opacity: 0.3;
    animation: bounce 2s ease-in-out infinite;
}

.main::after {
    content: '⭐';
    position: absolute;
    top: 50px;
    right: 15%;
    font-size: 3rem;
    opacity: 0.3;
    animation: twinkle 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.main-div {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(255, 160, 107, 0.2);
    border: 5px solid #ffd7ba;
}

.main-div b {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #ffa06b);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 1.5rem;
}

.main-div h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #5a4a7d;
    line-height: 1.8;
    font-weight: 500;
}

.main-div h1 strong {
    color: #ff6b9d;
    font-weight: 700;
}

/* ================= ABOUT CONTENT ================= */
.section-1 {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-1-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    border: 8px solid white;
    transform: rotate(-2deg);
    transition: transform 0.3s;
}

.section-1-left img:hover {
    transform: rotate(0deg) scale(1.02);
}

.section-1-right h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #5a4a7d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.section-1-right p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ================= FOUNDER SECTION ================= */
.founder-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #ffcc7a 100%);
    padding: 5rem 2rem;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '☀️';
    position: absolute;
    top: 30px;
    right: 10%;
    font-size: 5rem;
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.founder-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    color: #5a4a7d;
    text-align: center;
    margin-bottom: 2rem;
}

.founder-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.founder-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.founder-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.founder-quote-section {
    background: white;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 5px solid #ffd7ba;
}

.founder-quote-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: #5a4a7d;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.founder-name {
    font-size: 1.3rem;
    color: #ff6b9d;
    font-weight: 700;
    text-align: right;
}

/* ================= VALUES SECTION ================= */
.values-section {
    padding: 5rem 2rem;
    background: white;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8b0 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(168, 230, 207, 0.4);
    transition: all 0.3s;
    border: 4px solid white;
    cursor: pointer;
}

.value-card:nth-child(2) {
    background: linear-gradient(135deg, #ffd3a5 0%, #ffb380 100%);
    box-shadow: 0 10px 30px rgba(255, 211, 165, 0.4);
}

.value-card:nth-child(3) {
    background: linear-gradient(135deg, #c2b8ff 0%, #a89fff 100%);
    box-shadow: 0 10px 30px rgba(194, 184, 255, 0.4);
}

.value-card:nth-child(4) {
    background: linear-gradient(135deg, #ffa8c5 0%, #ff88aa 100%);
    box-shadow: 0 10px 30px rgba(255, 168, 197, 0.4);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.value-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
}

/* ================= FAQ SECTION ================= */
.faq-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #a8e6cf;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.4rem;
    color: #5a4a7d;
    margin: 0;
}

.faq-icon {
    font-size: 2rem;
    color: #88d8b0;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e8f5e9;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

/* ================= PROGRAMS SECTION ================= */
.programs-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 998;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ================= FOOTER ================= */
.kid-footer {
    position: relative;
    background: linear-gradient(135deg, #bde0fe, #caffbf);
    padding: 120px 8% 40px;
    overflow: hidden;
}

.footer-cloud {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #fff;
    border-bottom-left-radius: 100% 60%;
    border-bottom-right-radius: 100% 60%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 2;
}

.footer-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-family: 'Fredoka', sans-serif;
    color: #5a4a7d;
}

.footer-box h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-family: 'Fredoka', sans-serif;
    color: #5a4a7d;
}

.footer-box p,
.footer-box a {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-box a:hover {
    color: #ff6b6b;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2) rotate(10deg);
}

.footer-animals {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 3;
}

.animal {
    font-size: 60px;
    transform: translateY(40%);
    transition: transform 0.4s ease;
    cursor: pointer;
    animation: animalBounce 4s ease-in-out infinite;
}

.animal:hover {
    transform: translateY(0);
}

.animal:nth-child(2) { animation-delay: 1s; }
.animal:nth-child(3) { animation-delay: 2s; }
.animal:nth-child(4) { animation-delay: 3s; }

@keyframes animalBounce {
    0%,100% { transform: translateY(40%); }
    50% { transform: translateY(30%); }
}

.footer-bottom {
    margin-top: 60px;
    text-align: center;
    padding-top: 20px;
    border-top: 2px dashed rgba(0,0,0,0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: #555;
}

.creator{
    margin-bottom: 4vh;
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7);
}