@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Original+Surfer&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.uppercase {
    text-transform: uppercase;
}

header {
    width: 80%;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
}

.logo {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 50px;
    overflow: hidden;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
}

.fb {
    text-decoration: none;
    color: black;
}

.hero {
    max-width: 90%;
    height: 600px;
    position: relative;
    background-image: url(assets/bg.webp);
    background-size: cover;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    border-radius: 42px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); 
    z-index: 1;
    border-radius: 42px;
  }

.hero-section {
    position: relative;
    z-index: 2;
    width: 95%;
    margin: 0 auto;
    color: white;
}


 h1 {
    font-size: 76px;
    font-size: bold;
}

.hero p {
    font-size: 18px;
    color: #f9f9f9;
    text-shadow: 1px 1px 5px black;
}

.btn {
    background-color: #FF4500;
    max-width: 220px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    transition: 0.2s ease-in-out;
    border-radius: 32px;
    margin: 0 auto;
    margin-top: 22px;
}

.fleet {
    width: 80%;
    margin: 0 auto;
}

.section-title {
    padding: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    align-items: center;
    text-transform: capitalize;
    font-size: 24px;
}

.subtitle {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.fleet-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 50px 50px;
}

.card {
    width: 340px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    transition: 0.2s ease-in-out;
    border: 0.5px solid rgb(203, 203, 203);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.card h3 {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.features {
    display: flex;
    gap: 10px;
}

.feature {
    background-color: #dbeafe;
    color: #2a5fd1;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px 6px 8px;
    border-radius: 16px;
}

.text-content > .btn {
    min-width: 150px;
    height: 40px;
    font-size: 16px;
    margin-top: 8px;
}

.benefits {
    background-color: #f5f5f5;
}

.cells {
    display: grid;
    grid-template-columns: repeat(auto-fill, 350px);
    grid-template-rows: repeat(2, 300px);
    justify-content: center;
    gap: 32px;
    padding: 22px;
}

.cell {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    align-items: center;
    padding: 54px 14px 0 14px;
    text-align: center;
    gap: 14px;
}

.cell h2 {
    font-weight: 500;
    font-size: 20px;
}

.cell p {
    font-size: 16px;
    font-weight: 300;
    color: rgb(51, 56, 63);
}

.icon {
    background-color: #dbeafe;
    padding: 12px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon svg {
    color: rgb(37, 99, 235);
}

.contacts {
    width: 80%;
    margin: 0 auto;
}

.contact-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px;
    padding: 100px 0 100px 0;
    gap: 48px;
}
.contact-container h2 {
    font-size: 54px;
    display: flex;
    align-items: center;
}

.contact-container ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-container ul li {
    list-style-type: none;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    padding: 10px;
    gap: 12px;
}

.contact-container ul li p {
    font-size: 16px;
    font-weight: 600;
    color: rgb(39, 39, 39);
    display: flex;
    align-items: center;
}

.tel {
    text-decoration: none;
}

footer {
    width: 90%;
    margin: 0 auto;
    padding: 24px;
    background-color: #000;
    color: #fff;
    border-radius: 38px;
    display: flex;
    margin-bottom: 24px;
}

.about h2 {
    text-transform: uppercase;
    font-size: 36px;
}

.about p {
    padding-top: 8px;
    font-size: 15px;
    color: #606060;
}

.footer-container {
    width: 87%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.sitemap-links {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-p {
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 18px;
}

.sitemap-links a {
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease-in-out;
}

.socials a {
    text-decoration: none;
    color: #fff;
}

.footer {
    width: 100%;
    border-top: 0.5px solid rgb(27, 27, 27);
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (min-width: 1500px) {
    .hero {
        height: 850px;
    }

    h1 {
        font-size: 86px;
    }

    .cells {
        grid-template-columns: repeat(3, 350px);
    }
}

@media only screen and (max-width: 1499px) {
    header {
        width: 80%;
    }

    .hero {
        width: 100%;
    }

    header {
        width: 90%;
    }

    .grid-container {
        max-width: 100px;
    }
}


@media only screen and (max-width: 768px) {
    .hero {
        background-position-x: -200px;
        border-radius: 10px;
    }

    .hero::before {
        border-radius: 10px;
    }

    header {
        width: 90%;
    }

    .hero h1 {
        font-size: 64px;
    }
    
    nav {
        display: none;
    }

    .card {
        min-width: 300px;
    }

    .benefits {
        width: 100%;
    }

    .section-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 32px;
    }

    .contact-container {
        width: 90%;
    }

    .contact-container h2 {
        width: 100%;
        justify-content: center;
        padding: 20px 0 20px 0;
        font-size: 45px;
    }

    .contact-container ul {
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .contact-container ul li {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 28px 0 28px 0;
    }

    .footer-container {
        gap: 50px;
    }
}



/* animations */
.fb:hover {
    color: #316FF6;
}

.btn:hover {
    color: #fff;
    background-color: #d63900;
}

nav a:hover {
    color: #FF4500;
}

.card:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.sitemap-links a:hover {
    color: #FF4500;
}

.socials a:hover {
    color: #FF4500;
}