.about-hero {
    position: relative;
    width: 100vw;
    height: 90vh;
    background-image: url('../images/about-hero.jpg');
    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;
}

/* Base hidden state */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When revealed */
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.values-list li {
    transition-delay: calc(var(--i) * 0.15s);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.about-hero-content {
    position: relative;
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.about-hero-bold {
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.about-hero-subtext {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #EDE9E2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-text,
.about-hero-subtext,
.about-hero-bold {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.about-mission {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Left side label */
.mission-label {
    font-size: 2.6rem;
    font-weight: 700;
    color: #CBA86E; /* warm gold/amber accent */
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    margin: 0;
    white-space: nowrap;
}

/* Right side text */
.mission-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    max-width: 700px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    margin: 0;
}

/* Responsive layout */
@media (max-width: 900px) {
    .about-mission {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .mission-label {
        font-size: 2.2rem;
        white-space: normal;
    }
}

.about-values {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Left label */
.values-label {
    font-size: 2.6rem;
    font-weight: 700;
    color: #CBA86E; /* your amber/gold accent */
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
    margin: 0;
    white-space: nowrap;
}

.value-title {
    font-weight: 700;
    color: #EDE9E2;
    font-size: 1.45rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}


/* Right side list */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .about-values {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .values-label {
        font-size: 2.2rem;
        white-space: normal;
    }
}

.about-join {
    text-align: center;
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Title */
.join-label {
    font-size: 2.6rem;
    font-weight: 700;
    color: #CBA86E; /* amber accent */
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Text */
.join-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Button */
.join-button {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 6px;
    border: 2px solid #CBA86E;
    background: transparent;
    color: #CBA86E;
    cursor: not-allowed;
    opacity: 0.6;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.about-contact {
    text-align: center;
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
}

/* Title */
.contact-label {
    font-size: 2.6rem;
    font-weight: 700;
    color: #CBA86E; /* amber accent */
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Text */
.contact-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    margin-bottom: 30px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Button */
.btn {
    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;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}




/* Mobile */
@media (max-width: 900px) {
    .about-hero {
        height: auto;
        padding: 100px 20px;
        background-attachment: scroll;
    }

    .about-hero-text {
        font-size: 1.35rem;
    }
}
