@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
:root {
    --text-dark: #000000;
    --text-light: #767268;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Poppins", sans-serif;
}
a {
    text-decoration: none;
    transition: 0.3s;
}
ul {
    list-style: none;
}
img {
    display: block;
    width: 100%;
}
button,
input {
    font: inherit;
}
button {
    cursor: pointer;
}
.section-container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}
.section-subheader {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}
.section-header {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.section-description {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.75rem;
    text-align: center;
}
.button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5rem;
    outline: none;
    color: var(--white);
    background-color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}
.button:hover {
    background-color: var(--text-light);
} /* Navigation */
.navigation {
    position: fixed;
    isolation: isolate;
    z-index: 10;
    width: 100%;
}
.navigation-header {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--text-dark);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}
.logo-light {
    max-width: 35px;
}
.logo-dark {
    display: none;
}
.menu-button {
    border: none;
    outline: none;
    color: var(--white);
    background: transparent;
    font-size: 1.5rem;
}
.navigation-links {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--text-dark);
    transition: transform 0.5s;
}
.navigation-links.open {
    transform: translateY(100%);
}
.navigation-links a {
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}
.navigation-links a:hover {
    color: var(--text-light);
} /* Header */
.header {
    display: grid;
    padding-top: 8rem;
    overflow: hidden;
}
.header-image {
    background-image: url("../images/header-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 50px 50px var(--white) inset;
}
.header-content {
    padding: 2rem 1rem 5rem;
}
.header-content h1 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 4rem;
    font-weight: 700;
    line-height: 4rem;
    text-align: center;
} /* About */
.about-container {
    display: grid;
    gap: 2rem;
    overflow: hidden;
}
.about-image img {
    max-width: 500px;
    margin-inline: auto;
}
.about-content .section-description {
    margin-block: 1rem;
}
.about-button {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
} /* Fleet */
.fleet-container {
    padding-block: 5rem;
}
.fleet-container .section-subheader,
.fleet-container .section-header {
    padding-inline: 1rem;
}
.fleet-container .section-description {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 4rem;
    padding-inline: 1rem;
}
.fleet-row {
    margin-bottom: 1rem;
    overflow-x: hidden;
}
.fleet-images {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.fleet-row:first-of-type .fleet-images {
    animation: scroll-left 45s linear infinite;
}
.fleet-row:nth-of-type(2) .fleet-images {
    animation: scroll-right 45s linear infinite;
}
.fleet-images img {
    border-radius: 1rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.fleet-row:first-of-type .fleet-images img {
    max-width: 450px;
}
.fleet-row:nth-of-type(2) .fleet-images img {
    max-width: 300px;
}
@keyframes scroll-left {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}
@keyframes scroll-right {
    from {
        transform: translateX(calc(-50% - 0.5rem));
    }
} /* Features */
.features-container
    :is(.section-subheader, .section-header, .section-description) {
    text-align: center;
}
.features-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}
.feature-card {
    min-height: 200px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}
.feature-card span {
    display: inline-block;
    padding: 5px 11px;
    color: var(--text-light);
    font-size: 1.5rem;
    border-radius: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.feature-card:nth-child(1) span {
    background-color: #fef2f2;
}
.feature-card:nth-child(2) span {
    background-color: #f0fdf4;
}
.feature-card:nth-child(3) span {
    background-color: #eff6ff;
}
.feature-card:nth-child(4) span {
    background-color: #fefce8;
}
.feature-card h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
} /* Contact */
.contact-container {
    background-color: var(--text-dark);
    border-radius: 1.5rem;
}
.contact-container .section-header {
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 1rem;
    color: var(--white);
}
.contact-container .section-description {
    max-width: 500px;
    margin-inline: auto;
    margin-bottom: 2rem;
    color: var(--white);
}
.contact-button {
    display: flex;
    justify-content: center;
}
.contact-button .button {
    color: var(--text-dark);
    background-color: var(--white);
} /* Footer */
.footer {
    background-color: var(--extra-light);
}
.footer-container {
    display: grid;
    gap: 4rem 2rem;
}
.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}
.footer-logo img {
    max-width: 35px;
}
.footer-column .section-description {
    text-align: left;
}
.footer-links {
    display: grid;
    gap: 1rem;
}
.footer-links a {
    color: var(--text-dark);
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--text-light);
}
.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
}
.footer-column form {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.footer-column input {
    width: 100%;
    padding-inline: 1rem;
    border: none;
    outline: none;
    color: var(--text-dark);
    background-color: transparent;
    font-size: 1rem;
}
.footer-column .button {
    padding: 10px;
    color: var(--text-dark);
    background-color: transparent;
    font-size: 1.5rem;
}
.footer-bottom {
    padding: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    text-align: center;
} /* Tablet */
@media (width > 540px) {
    .header-content h1 {
        font-size: 5rem;
        line-height: 5rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
} /* Desktop */
@media (width > 768px) {
    .navigation {
        position: static;
        max-width: var(--max-width);
        margin-inline: auto;
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
    .navigation-header {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }
    .logo {
        color: var(--text-dark);
    }
    .logo-light {
        display: none;
    }
    .logo-dark {
        display: block;
        max-width: 35px;
    }
    .menu-button {
        display: none;
    }
    .navigation-links {
        position: static;
        z-index: auto;
        width: fit-content;
        padding: 0;
        flex-direction: row;
        gap: 3rem;
        background-color: transparent;
        transform: none !important;
    }
    .navigation-links a {
        color: var(--text-dark);
    }
    .header {
        padding-block: 0 3rem;
        grid-template-columns: minmax(0, 1fr) minmax(
                0,
                calc(var(--max-width) / 2)
            ) minmax(0, calc(var(--max-width) / 2)) minmax(0, 1fr);
    }
    .header-image {
        position: relative;
        isolation: isolate;
        grid-column: 3 / 5;
        height: 100%;
    }
    .header-image img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: auto;
        height: 100%;
        max-height: 300px;
    }
    .header-content {
        grid-area: 1 / 2 / 2 / 3;
        padding-block: 2rem;
    }
    .header-content h1 {
        text-align: left;
    }
    .header-content .section-description {
        text-align: left;
    }
    .about-container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
    .about-content
        :is(.section-subheader, .section-header, .section-description) {
        text-align: left;
    }
    .about-button {
        justify-content: flex-start;
    }
    .fleet-row {
        margin-bottom: 2rem;
    }
    .fleet-images {
        gap: 2rem;
    }
    .fleet-images img {
        border-radius: 1.5rem;
    }
    .features-container
        :is(.section-subheader, .section-header, .section-description) {
        text-align: left;
    }
    .features-container .section-description {
        max-width: 600px;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-column:first-child {
        grid-column: 1 / 3;
    }
    .footer-column .section-description {
        max-width: 400px;
    }
} /* Large Desktop */
@media (width > 1024px) {
    .feature-card {
        padding: 1.5rem;
    }
}
