/* ---------------------------------------------------
   ABOUT US — HERO IMAGE WITH TITLE
--------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: url('/assets/worldoverview.png  ') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}

.about-hero-content {
    position: relative;
    text-align: center;
    z-index: 10;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #00c8ff;
    text-shadow: 0 0 18px #00c8ff;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* ---------------------------------------------------
   ABOUT US — TEXT SECTION (NO BOX, NO PANEL)
--------------------------------------------------- */

.about-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.about-text {
    max-width: 900px;

    color: #e8e8e8;
    line-height: 1.85;
    font-size: 1.15rem;

    /* Subtle vapor glow around the text */
    text-shadow: 0 0 8px rgba(0, 200, 255, 0.15);
}

.about-text p {
    margin-bottom: 24px;
}

/* Section headers (Team & Community) */
.about-text h2 {
    text-align: center;
    font-size: 2.2rem;
    margin: 50px 0 25px 0;

    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 200, 255, 0.65);
}

/* ---------------------------------------------------
   BOTTOM IMAGE
--------------------------------------------------- */
.about-bottom-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 14px;

    filter: drop-shadow(0 0 25px rgba(0, 200, 255, 0.5));
}

/* =========================
   CONTACT / SOCIALS
========================= */

.contact-section {
    padding: 50px 20px;
    text-align: center;

    border-top: 1px solid rgba(0, 200, 255, 0.15);
}

.contact-section h2 {
    color: #00c8ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
}

.contact-section h2::after {
    content: "";
    display: block;

    width: 60px;
    height: 3px;

    margin: 12px auto 0;

    background: #00c8ff;
    border-radius: 10px;

    box-shadow: 0 0 12px rgba(0, 200, 255, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.social-links a {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 1.3rem;

    text-decoration: none;

    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.02);

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00c8ff;

    border-color: #00c8ff;

    transform: translateY(-4px);

    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.2),
        0 0 30px rgba(0, 200, 255, 0.1);
}

/* ---------------------------------------------------
   MOBILE
--------------------------------------------------- */
@media (max-width: 768px) {
    .about-text {
        padding: 0 10px;
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-text h2 {
        font-size: 1.7rem;
    }

    .about-bottom-img {
        max-width: 95%;
        border-radius: 12px;
    }
}

