@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

.work-sans-font {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* shared styles */
.display-flex {
    display: flex;
}
.text-primary {
    color: #FF900E;
}
.bg-light {
    background-color: rgba(255, 144, 14, 0.1);
}

.text-gray {
    color: #424242;
}
/* dark-03 */
.text-light-gray {
    color: #727272;
}
.btn-primary {
    background-color: #FF900E;
    color: white;
    padding: 20px 25px;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
}

main {
    max-width: 1080px;
    margin: 0 auto;
}

main > section {
    margin-top: 130px;
}
.section-tile {
    font-size: 2.8rem;
    font-weight: 700;
}
/* header styles */

/* nav-bar related styles */
.navbar {
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-weight: 700;
    font-size: 3rem;
}
.nav-item {
    list-style: none;
    margin-right: 30px;
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: rgba(66, 66, 66, 1);
}
.navbar, .banner {
    max-width: 1080px;
    margin: 0px auto;
}

/* banner related style */
.banner-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}
.banner-title {
    font-weight: 700;
    font-size: 4rem;
}
.banner-image {
    width: 100%;
    margin-bottom: 45px;
}

/* team and feature related style */
.teams {
    align-items: center;
}
.team-img-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.our-features {
    margin-left: 73px;
    max-width: 530px;
}
#quick-list {
    font-weight: 500;
}

/* features related style */
.features {
    gap: 140px;
}
#feature-section-title {
    border-left: 5px solid #FF900E;
    padding-left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #131313;
}
.feature-card {
    padding: 30px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    margin-bottom: 20px;
}
.feature-card .feature-title {
    font-weight: 600;
    font-size: 1.25rem;
}
.feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #131313;
    margin-top: 0px;
    margin-bottom: 0px;
}
#experience-badge {
    padding: 45px 42px;
    font-size: 1.5rem;
    margin-top: -100px;
    margin-left: -100px;
}
#experience-year {
    font-size: 4rem;
    font-weight: 700;
}
.featured-architect img {
    width: 100%;
}

/* some fact related styles */
.fact-card {
    border: 1px solid #FF900E;
    width: 240px;
    height: 240px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #131313;
}
.facts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.fact-number {
    font-size: 2.8rem;
    margin-top: 5px;
    margin-bottom: 10px;
}
.fact-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 10px;
}
.fact-description,
.features-title {
    max-width: 540px;
    margin: 24px;
}
.features-title {
    font-weight: 700;
    font-size: 3rem;
    color: #131313;
}

/* sponsor related style */
.sponsor-info {
    max-width: 540px;
    margin: 50px auto;
    text-align: center;
}
.sponsor-company {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.sponsor-company img {
    filter: grayscale(100%);
}

/* footer style */
footer {
    margin: 130px 0 20px 0;
    background-color: rgba(255, 144, 14, 0.1);
    height: 100px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
footer p {
    font-size: 1.25rem;
    color: rgba(66, 66, 66, 1);
}

/* responsive media query */
@media screen and (max-width: 576px) {
    .navbar, 
    .nav-links, 
    .features,
    .teams {
        flex-direction: column;
    }
    .team-img-container,
    .facts-container,
    .sponsor-company {
        grid-template-columns: repeat(1, 1fr);
    }
    .facts-container {
        justify-items: center;
        gap: 24px;
    }
    .fact-description,
    .features-title {
        max-width: 540px;
        margin: 24px;
    }
    .sponsor-company {
        justify-items: center;
        gap: 50px;
    }
    .our-features {
        margin-left: 20px;
    }
    #experience-badge {
        margin-top: 20px;
        margin-left: 20px;
    }
}

/* medium size device */
@media screen and (min-width: 576px) and (max-width: 992px) {
    .teams, 
    .features {
        flex-direction: column;
    }
    .our-features {
        margin: 50px auto;
    }
    .sponsor-company,
    .facts-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        justify-items: center;
    }
    #experience-badge {
        margin-top: 20px;
        margin-left: 20px;
    }
}