/********************* Hero *************************/

#hero {
    background-image: url(/assets/img/hero.webp);
    background-size: cover;
    background-position: center;
    padding: 260px 20px;
    position: relative;
}

#hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

#heroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: white;
}

#heroContentTitle {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

#heroContentSubtitle {
    margin-bottom: 20px;
    font-size: 26px;
    max-width: 950px;
    text-align: center;
}

#heroContentStart {
    margin-bottom: 20px;
    padding: 15px 30px;
    font-size: 26px;
    border-radius: 40px;
}

#heroContentDisclaimer {
    font-size: 22px;
    text-align: center;
}

@media (max-width: 800px) {
    #hero {
        padding: 120px 20px;
    }

    #heroContentTitle {
        font-size: 32px;
    }

    #heroContentSubtitle {
        font-size: 18px;
    }

    #heroContentStart {
        font-size: 20px;
        padding: 10px 20px;
    }

    #heroContentDisclaimer {
        font-size: 18px;
    }
}


/********************* About *************************/

#about {
    background-color: #fbf9f9;
    padding: 80px 20px;
}

#aboutTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
}

#aboutGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.aboutGridItem {
    background-color: white;
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutGridItem::after {
    content: attr(data-step);
    position: absolute;
    top: -17px;
    left: -17px;
    background-color: var(--primary);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 100%;
    font-weight: 900;
    font-size: 18px;
}

.aboutGridItemImage {
    max-width: 40px;
    margin: 0 auto 20px;
    display: block;
    color: var(--primary);
    font-size: 40px;
}

.aboutGridItemTitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.aboutGridItemText {
    font-size: 16px;
    color: #555555;
    text-align: center;
}

@media (max-width: 800px) {
    #aboutTitle {
        font-size: 28px;
        margin-bottom: 40px;
    }

    #aboutGrid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .aboutGridItem {
        padding: 30px 20px;
    }

    .aboutGridItem::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutGridItemTitle {
        font-size: 20px;
    }

    .aboutGridItemText {
        font-size: 14px;
    }
}


/********************* Track *************************/

#track {
    padding: 80px 20px;
}

#trackTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
}

#trackFlex {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.trackFlexItem {
    height: 34px;
    width: auto;
}

#trackDisclaimer {
    font-size: 12px;
    text-align: center;
    margin: auto;
}

@media (max-width: 800px) {
    #trackTitle {
        font-size: 28px;
        margin-bottom: 40px;
    }

    #trackFlex {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trackFlexItem {
        height: 24px;
    }

    #trackDisclaimer br {
        display: none
    }
}


/********************* Why *************************/

#why {
    background-color: #fbf9f9;
    padding: 80px 20px;
}

#whyTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
}

#whyGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.whyGridItem {
    position: relative;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.whyGridItemImage {
    max-width: 40px;
    margin: 0 auto 20px;
    display: block;
    color: var(--primary);
    font-size: 40px;
}

.whyGridItemTitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.whyGridItemText {
    font-size: 16px;
    color: #555555;
    text-align: center;
}

@media (max-width: 800px) {
    #whyTitle {
        font-size: 28px;
        margin-bottom: 30px;
    }

    #whyGrid {
        grid-template-columns: 1fr;
    }

    .whyGridItemTitle {
        font-size: 20px;
    }

    .whyGridItemText {
        font-size: 14px;
    }
}


/********************* Reviews *************************/

#reviews {
    padding: 80px 20px;
}

#reviewsTitle {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 60px;
    text-align: center;
}

#reviewsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.reviewsGridItem {
    position: relative;
    padding: 40px 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviewsGridItemText {
    font-size: 18px;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewsGridItemReviewer {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewsGridItemReviewerProfile {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 100%;
}

.reviewsGridItemReviewerInfo {

}

.reviewsGridItemReviewerInfoName {
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

.reviewsGridItemReviewerInfoLocation {
    font-size: 13px;
    color: #555555;
}

@media (max-width: 800px) {
    #reviewsTitle {
        font-size: 28px;
        margin-bottom: 30px;
    }

    #reviewsGrid {
        grid-template-columns: 1fr;
    }
}