/* ========================= */
/* ABOUT PAGE CSS */
/* ========================= */

/* HERO */

.about-hero{
    width:100%;
    min-height:70vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.55)
    ),
    url('/images/about.jpeg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;

    display:flex;
    align-items:center;
}

/* OVERLAY */

.about-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 20%,
        rgba(0,0,0,0.45) 100%
    );
}

/* CONTAINER */

.about-container{
    width:100%;

    padding:0 8%;

    position:relative;
    z-index:2;
}

/* CONTENT */

.about-content{
    max-width:700px;
}

/* HEADING */

.about-content h1{
    color:#ffffff;

    font-size:80px;
    font-weight:800;

    margin-bottom:25px;
}

/* ORANGE TEXT */

.about-content h1 span{
    color:#ff8c1a;

    text-shadow:none;

    filter:none;
}

/* TEXT */

.about-content p{
    color:#d1d5db;

    font-size:22px;

    line-height:1.8;
}

/* ========================= */
/* ABOUT MAIN */
/* ========================= */

.about-main{
    padding:100px 8%;

    background:#020617;
}

/* GRID */

.about-main-container{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

/* IMAGE */

.about-image img{
    width:100%;

    border-radius:25px;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.4);
}

/* TEXT */

.about-text h2{
    color:#ffffff;

    font-size:55px;

    line-height:1.2;

    margin-bottom:25px;
}

/* NORMAL ORANGE */

.about-text h2 span{
    color:#ff8c1a;

    text-shadow:none;
}

.about-text p{
    color:#cbd5e1;

    font-size:18px;

    line-height:1.9;

    margin-bottom:25px;
}

/* FEATURES */

.about-features{
    display:flex;

    gap:20px;

    margin-top:40px;
}

/* CARD */

.feature-card{
    flex:1;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    padding:30px 20px;

    border-radius:20px;

    text-align:center;

    transition:0.4s;
}

/* HOVER */

.feature-card:hover{
    transform:translateY(-8px);

    border-color:#ff8c1a;
}

/* ICON */

.feature-card i{
    font-size:40px;

    color:#ff8c1a;

    margin-bottom:15px;
}

/* NUMBER */

.feature-card h3{
    color:#ffffff;

    font-size:30px;

    margin-bottom:10px;
}

/* TEXT */

.feature-card p{
    color:#cbd5e1;

    margin:0;
}

/* ACTIVE MENU */

.nav-links .active{
    color:#ff8c1a;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:991px){

    .about-main-container{
        grid-template-columns:1fr;
    }

    .about-text{
        text-align:center;
    }

    .about-features{
        flex-direction:column;
    }

    .about-content{
        text-align:center;
        margin:auto;
    }

    .about-content h1{
        font-size:55px;
    }

    .about-text h2{
        font-size:42px;
    }

}

@media(max-width:600px){

    .about-content h1{
        font-size:42px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-text h2{
        font-size:34px;
    }

    .about-text p{
        font-size:16px;
    }

}