/* ----------------------------------------------------------
   HERO (same as About)
---------------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100vw;
    height: 40vh;
    background-size: cover;
    background-position: center; 
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Remove left gap */
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-text {
    font-size: 2.4rem;
    line-height: 1.3;
    color: #EDE9E2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.about-hero-bold {
    font-weight: 700;
    color: #CBA86E;
}

.about-hero-subtext {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* ----------------------------------------------------------
   MISSION BLOCK (Left/Right split)
---------------------------------------------------------- */
.about-mission {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
}


.mission-left {
    flex: 0 0 260px; 
}

.mission-right {
    flex: 1;
    max-width: 700px;
}

/* Label */
.mission-label {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    white-space: nowrap; 
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #EDE9E2;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

@media (max-width: 900px) {
    .about-mission {
        flex-direction: column;
        text-align: center;
    }

    .mission-left,
    .mission-right {
        flex: 1 1 100%;
        max-width: none;
    }

    .mission-label {
        white-space: normal;
    }
}


/* ----------------------------------------------------------
   VALUES BLOCK (Left/Right split)
---------------------------------------------------------- */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.values-left {
    flex: 1 1 250px;
}

.values-right {
    flex: 2 1 500px;
}

.values-label {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 1.2rem;
    color: #EDE9E2;
    margin-bottom: 20px;
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.value-title {
    font-weight: 700;
    color: #CBA86E;
}


/* ----------------------------------------------------------
   CONTACT / JOIN BLOCK
---------------------------------------------------------- */
.about-join,
.about-contact {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

.join-label,
.contact-label {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.join-text,
.contact-text {
    font-size: 1.25rem;
    color: #EDE9E2;
    line-height: 1.7;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}


/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.contact-button,
.join-button {
    background: linear-gradient(145deg, #FFB347, #FF8C00);
    color: #0D0D0F;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

.join-button[disabled] {
    opacity: 0.6;
    cursor: default;
}


/* ----------------------------------------------------------
   REVEAL ANIMATION
---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 768px) {
    .mission-left,
    .mission-right,
    .values-left,
    .values-right {
        flex: 1 1 100%;
    }
}
