:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #cccccc;
    --color-footer-bg: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Open Sans', sans-serif;
    background-color: #1c1c1e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Navigation */

.nav {
    position: absolute;
    top: 31px;
    left: 0;
    right: 0;
    z-index: 10;
}

.nav .container {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.nav__button {
    background: none;
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
}

.nav__button:hover {
    text-decoration: underline;
}

.no-link, .no-link:hover, .no-link:focus {
    a, a:visited {
        text-decoration: none;
        color: var(--color-white);
    }
    a:hover {
        text-decoration: underline;
    }

    color: var(--color-white);
    text-decoration: none;
}

/* Hero */

.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background: url('/images/bg.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 137, 0, 0.75);
    mix-blend-mode: soft-light;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
        linear-gradient(to top,    rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
}

.hero__logo {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero__title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 24px;
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Content Sections */

.section {
    width: 100%;
}

.section--dark {
    background-color: #1c1c1e;
}

.section__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 98px 98px 98px 0;
}

.section__container--no-right {
    padding-right: 0;
}

.section__row {
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

.section__image {
    width: 195px;
    height: 195px;
    flex-shrink: 0;
    object-fit: cover;
}

.section__image--left {
    box-shadow: 10px 10px 0 0 #ff6b00;
    transform: rotate(-5deg);
}

.section__image--big {
    width: 197px;
    height: 230px;
}

.section__image--right {
    box-shadow: 10px 10px 0 0 #ff6b00;
    transform: rotate(5deg);
    margin-top: 10px;
}

.section__list {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section__text {
    max-width: 804px;
}

.section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section__body {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.7;
}

.section--image {
    position: relative;
    isolation: isolate;
}

.section--image-2 {
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(255, 97, 0, 0.165) 100%),
        url('/images/home/hood-2.jpeg') center center / cover no-repeat;
}

.section--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ad19ab;
    mix-blend-mode: soft-light;
    z-index: 1;
}

.section--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.section__container--right {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    padding: 96px 98px;
}

.section__text--right {
    max-width: 824px;
    width: 100%;
    text-align: right;
}

/* CTA Section */

.section--cta {
    background-color: #000;
    padding: 96px 0 80px;
}

.cta__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 98px;
}

.cta__button {
    display: inline-block;
    background-color: #7b0097;
    color: #ffffff;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-top: 16px;
}

.cta__button:hover {
    background-color: #661a80;
}

.cta__images {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 0 98px;
}

.cta__image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    box-shadow: 10px 10px 0 0 #ff6b00;
}

.cta__image:first-child {
    transform: rotate(-5deg);
}

.cta__image:last-child {
    transform: rotate(5deg);
}

/* Footer */

.footer {
    background: var(--color-footer-bg);
    padding: 20px 0;
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    height: 40px;
    width: auto;
}

.footer__text {
    color: var(--color-gray-light);
    font-size: 14px;
    font-weight: 400;
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__link {
    color: var(--color-gray-light);
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.footer__link:hover {
    color: var(--color-white);
}

/* Below 1080p */

@media (max-width: 1919px) {
    .hero {
        height: 480px;
    }
}

/* Mobile */

@media (max-width: 991px) {
    .nav {
        top: 20px;
    }

    .nav .container {
        gap: 16px;
    }

    .nav__button {
        font-size: 14px;
    }

    .hero {
        height: 320px;
    }

    .hero__logo {
        width: 220px;
    }

    .hero__title {
        font-size: 24px;
    }

    .section__title {
        font-size: 24px;
    }

    .section__container {
        padding: 48px 24px;
    }

    .section__container--right {
        padding: 48px 24px;
    }

    .section__image {
        width: 160px;
        height: 160px;
    }

    .section__image--big {
        width: 160px;
        height: 160px;
    }

    .section__row {
        flex-direction: column;
        align-items: center;
    }

    .section__text {
        max-width: 100%;
    }

    .cta__text {
        padding: 0 24px;
    }

    .cta__images {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px;
        padding: 0 24px;
    }

    .cta__image {
        box-shadow: none;
    }

    .cta__image:nth-child(odd) {
        transform: rotate(-5deg);
    }

    .cta__image:nth-child(even) {
        transform: rotate(5deg);
    }

    .footer__content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer__links {
        flex-direction: column;
        gap: 16px;
    }
}
