/* ==================== ABOUT PAGE ==================== */
/* Override body to allow normal vertical flow with footer at bottom */
body {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    min-height: 100vh;
    padding: 0 !important;
    background: #161316 !important;
}

/* About content area */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: #161316;
    min-height: 100vh;
}

.about-content h1 {
    font-size: 3rem;
    color: #12C9FF;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.about-content > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-content h3 {
    font-size: 1.6rem;
    color: #FF9EF0;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 158, 240, 0.2);
    position: relative;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FF9EF0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.about-content ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
}

.about-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #12C9FF;
    font-weight: bold;
    font-size: 1.1rem;
}

.about-content a {
    color: #12C9FF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.about-content a:hover {
    color: #FF9EF0;
    border-bottom-color: #FF9EF0;
}

/* Labels */
.about-content label {
    display: block;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
}

/* Contact buttons */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.youtube-btn:hover {
    background: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

.tiktok-btn:hover {
    background: #000000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.facebook-btn:hover {
    background: #1877F2;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.35);
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 0.6s ease both;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner footer inside about-content - make transparent */
.about-content footer {
    background: transparent !important;
    margin-top: 3rem;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(18, 201, 255, 0.2);
    text-align: center;
}

.about-content footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Make the main footer stick to the bottom */
body > footer.footer,
footer.footer {
    margin-top: auto;
    width: 100%;
}

/* Force main section to grow */
body > main {
    flex: 1;
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2.2rem;
    }

    .about-content h3 {
        font-size: 1.3rem;
    }

    .about-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }
}
