.about-hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Unbounded', sans-serif;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

.about-hero::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
}

.about-content {
    background: #000;
    color: #ddd;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.about-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    color: #e63946;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Tablet ? */
@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.about-text {
    background: #000;
    color: #ddd;
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
}

.text-wrapper {
    max-width: 900px;
    width: 100%;
    background: rgba(20, 20, 20, 0.75);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    text-align: left;
}

.text-wrapper h2,
.text-wrapper h3 {
    color: #e11d48;
    font-family: 'Unbounded', sans-serif;
    margin-bottom: 1rem;
}

.text-wrapper p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.joke-text {
    font-style: italic;
    color: #888;
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 600px) {
    .text-wrapper {
        padding: 2rem 1.25rem;
    }

    .text-wrapper p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}