/* ============================================
   ABOUT PAGE STYLES
   Hero Section Only (Process is in process.css)
   ============================================ */

/* ============================================
   ABOUT HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: var(--color-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

#unicorn-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 80px;
    margin-top: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.about-hero-content>* {
    max-width: 80%;
}

.about-hero-title {
    font-family: var(--font-hero);
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    background: linear-gradient(176deg, var(--color-orange) 0%, var(--color-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-family: var(--font-body);
    font-size: 22px;
    line-height: 1.5;
    color: var(--color-white);
}

.about-hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, transparent 0%, var(--color-black) 80%);
    z-index: 1;
    pointer-events: none;

}

/* ============================================
   RESPONSIVE BREAKPOINTS - ABOUT PAGE
   ============================================ */

/* 1440px Breakpoint */
@media (max-width: 1440px) {
    .about-hero-content {
        padding: 0 80px;
    }
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
    .about-hero-content {
        padding: 0 40px;
    }

    .about-hero-title {
        font-size: 48px;
    }

    .about-hero-description {
        font-size: 18px;
    }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }

    .about-hero-content {
        padding: 0 20px;
        gap: 12px;
    }

    .about-hero-content>* {
        max-width: 100%;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* 480px Breakpoint */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-description {
        font-size: 14px;
    }
}