/* ==========================================================================
   SECTION SPECIFIC STYLES
   ========================================================================== */

/* HERO SECTION */

#about-hero {
    background-color: var(--warm-ochre);
    display: none;
}

.page-title {
    background-color: rgba(15, 16, 15, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 580px;
    position: absolute;
    bottom: 9rem;
    left: 5%;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.page-title p {
    font-size: 1.2rem;
    line-height: 1.2;
    padding-bottom: 0.5rem;
}

/* MISSION SECTION */

#about-stats {
    background-color: var(--deep-charcoal-grey);
    width: 100%;
    height: 25vh;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8.5rem;
}

.stat-container {
    background-color: var(--deep-tech-blue);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.stat-container h2 {
    font-size: 1.8rem;
    color: var(--off-white);
}

/* LIBERTY SECTION */

#about-liberty {
    display: none;
}

#about .logo-card {
    backdrop-filter: blur(2px);
    background-color: rgba(15, 16, 15, 0.7);
    border-radius: 10px;
    padding: 1rem;
    position: absolute;
    bottom: 5rem;
    left: 5%;
    z-index: 2;
    max-width: 500px;
    text-align: left;

    /* Initial state - hidden */
    opacity: 0;
    transform: translateX(-100px);
}

#about .logo-card.animate {
    animation: slideInFromLeft 1s ease-out forwards;
}

#about .logo-card span {
    display: block;
    text-align: center;
    color: var(--warm-ochre);
    margin-top: 1rem;
    font-weight: 600;
}

.logo-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.logo-card p {
    font-size: 1rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
}

/* VALUES SECTION */

#about-values {
    background-color: var(--deep-tech-blue);
    width: 100%;
    height: 75vh;
    display: none;
    flex-direction: row;;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.left-column, .right-column {
    width: 40%;
    height: 83%;
    color: var(--off-white);
}

.left-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.left-column h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    width: 70%;
}

.left-column p {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.value-list {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.value-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px
}

.value-text h3 {
    font-size: 1.5rem;
}

.value-text p {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 0;
}

.right-column h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.right-column h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    width: 70%;
}

.right-column p {
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 0.5rem;
}

/* CEO SECTION */

#about-ceo {
    background-color: var(--deep-charcoal-grey);
    color: var(--off-white);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.about-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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


/* ==========================================================================
   MEDIA QUERIES - TABLETS
   ========================================================================== */

@media screen and (max-width: 1024px) {
    
    /* HERO SECTION */
    .page-title {
        max-width: 480px;
        bottom: 7rem;
        left: 4%;
        padding: 1.2rem;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .page-title p {
        font-size: 1.1rem;
    }

    /* MISSION SECTION */
    #about-stats {
        gap: 4rem;
        height: 28vh;
        padding: 1rem;
    }

    .stat-container {
        padding: 1.2rem 1.5rem;
    }

    .stat-container h2 {
        font-size: 1.5rem;
    }

    /* LIBERTY SECTION */
    #about .logo-card {
        max-width: 420px;
        bottom: 4rem;
        padding: 0.9rem;
    }

    .logo-card h3 {
        font-size: 2rem;
    }

    .logo-card p {
        font-size: 0.95rem;
    }

    /* VALUES SECTION */
    #about-values {
        height: auto;
        min-height: 75vh;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .left-column, .right-column {
        width: 45%;
        height: auto;
    }

    .left-column h2, .right-column h2 {
        font-size: 1.9rem;
        width: 85%;
    }

    .left-column h4, .right-column h4 {
        font-size: 1.1rem;
    }

    .left-column p, .right-column p {
        font-size: 1.1rem;
    }

    .value-item {
        gap: 1.2rem;
    }

    .value-item img {
        width: 100px;
        height: 100px;
    }

    .value-text h3 {
        font-size: 1.3rem;
    }

    .value-text p {
        font-size: 0.95rem;
    }

    /* CEO SECTION */
    .about-text h1 {
        font-size: 2.8rem;
    }

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

/* ==========================================================================
   MEDIA QUERIES - SMARTPHONES
   ========================================================================== */

@media screen and (max-width: 768px) {
    
    /* HERO SECTION */
    .page-title {
        max-width: 90%;
        bottom: 5rem;
        left: 5%;
        right: 5%;
        padding: 1rem;
    }

    .page-title h1 {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
    }

    .page-title p {
        font-size: 1rem;
    }

    /* MISSION SECTION */
    #about-stats {
        flex-direction: column;
        height: auto;
        min-height: 45vh;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-container {
        width: 85%;
        padding: 1rem 1.5rem;
    }

    .stat-container h2 {
        font-size: 1.4rem;
    }

    /* LIBERTY SECTION */
    #about .logo-card {
        max-width: 90%;
        bottom: 3rem;
        left: 5%;
        right: 5%;
        padding: 0.8rem;
    }

    .logo-card h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .logo-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    #about .logo-card span {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }

    /* VALUES SECTION */
    #about-values {
        flex-direction: column;
        height: auto;
        min-height: auto;
        padding: 2.5rem 1.5rem;
        gap: 3rem;
    }

    .left-column, .right-column {
        width: 100%;
        height: auto;
    }

    .left-column h2, .right-column h2 {
        font-size: 1.6rem;
        width: 100%;
        line-height: 1.3;
    }

    .left-column h4, .right-column h4 {
        font-size: 1rem;
    }

    .left-column p, .right-column p {
        font-size: 1rem;
    }

    .value-list {
        gap: 1.8rem;
        margin-top: 1.5rem;
    }

    .value-item {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .value-item img {
        width: 100px;
        height: 100px;
    }

    .value-text h3 {
        font-size: 1.3rem;
    }

    .value-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* CEO SECTION */
    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-text h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

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

/* ==========================================================================
   MEDIA QUERIES - SMALL SMARTPHONES
   ========================================================================== */

@media screen and (max-width: 480px) {
    
    /* HERO SECTION */
    .page-title {
        bottom: 4rem;
        padding: 0.9rem;
    }

    .page-title h1 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .page-title p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    /* MISSION SECTION */
    #about-stats {
        padding: 1.5rem 0.8rem;
        gap: 1.2rem;
    }

    .stat-container {
        width: 90%;
        padding: 0.9rem 1.2rem;
    }

    .stat-container h2 {
        font-size: 1.2rem;
    }

    /* LIBERTY SECTION */
    #about .logo-card {
        bottom: 2.5rem;
        padding: 0.7rem;
    }

    .logo-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .logo-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    #about .logo-card span {
        font-size: 0.85rem;
        margin-top: 0.7rem;
    }

    /* VALUES SECTION */
    #about-values {
        padding: 2rem 1rem;
        gap: 2.5rem;
    }

    .left-column h2, .right-column h2 {
        font-size: 1.4rem;
    }

    .left-column h4, .right-column h4 {
        font-size: 0.95rem;
    }

    .left-column p, .right-column p {
        font-size: 0.95rem;
    }

    .value-list {
        gap: 1.5rem;
    }

    .value-item img {
        width: 90px;
        height: 90px;
    }

    .value-text h3 {
        font-size: 1.2rem;
    }

    .value-text p {
        font-size: 0.9rem;
    }

    /* CEO SECTION */
    .about-text {
        padding: 1.5rem 1rem;
    }

    .about-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

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