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

:root {
    --primary-color: #f0a13a;
    --background-color: #0d0d0d;
    --header-background-color: #080808;
    --text-light: #767268;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Roboto Condensed", sans-serif;
}

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

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--background-color);
}

header {
    background-color: var(--header-background-color);
}

nav {
    position: fixed;
    isolation: isolate;
    width: 100%;
    z-index: 9;
}

.nav-top {
    padding: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: var(--white);
    line-height: 1.5rem;
}

.menu-btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav-links {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--primary-color);
    transition: transform 0.5s;
    z-index: -1;
}

.nav-links.open {
    transform: translateY(100%);
}

.nav-links a {
    font-size: 1rem;
    color: var(--white);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--background-color);
}

.nav-btns {
    display: none;
}

.container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--header-font);
    line-height: 2.75rem;
    color: var(--white);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75rem;
}

/* HERO */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-bottom: 0;
}

.hero::before {
    position: absolute;
    content: "KING";
    top: 0;
    right: 0;
    color: var(--white);
    font-size: 25rem;
    font-weight: 600;
    font-family: var(--header-font);
    line-height: 25rem;
    background-image: linear-gradient(
        to top,
        var(--header-background-color),
        var(--white)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: -1;
}

.hero::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background-image: linear-gradient(
        to top,
        var(--header-background-color) 25%,
        #ffffff00
    );
    z-index: 1;
}

.hero h1 {
    max-width: 475px;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--header-font);
    line-height: 3.75rem;
    color: var(--white);
}

.hero .section-desc {
    max-width: 300px;
    margin-bottom: 1rem;
}

.hero-link a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.hero-link a span {
    color: var(--white);
}

/* SHOP */
.shop {
    position: relative;
    isolation: isolate;
}

.shop::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background-image: linear-gradient(
        to bottom,
        var(--header-background-color),
        var(--background-color)
    );
}

.shop-grid {
    display: grid;
    gap: 1rem;
}

.shop-card {
    position: relative;
    isolation: isolate;
    padding: 1rem;
    border-radius: 1rem;
    background-image: linear-gradient(
        to bottom,
        var(--header-background-color),
        rgba(255, 255, 255, 0.1)
    );
    overflow: hidden;
}

.shop-card::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 15rem;
    font-weight: 600;
    font-family: var(--header-font);
    line-height: 15rem;
    background-image: linear-gradient(
        to top,
        var(--header-background-color),
        var(--white)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: -1;
}

.shop-card:nth-child(1)::before {
    content: "M";
}

.shop-card:nth-child(2)::before {
    content: "A";
}

.shop-card:nth-child(3)::before {
    content: "B";
}

.shop-card p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.shop-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: var(--white);
}

.shop-card img {
    max-width: 200px;
    margin-inline: auto;
    margin-block: 4rem;
}

.shop-card div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-card div a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--primary-color);
}

.shop-card div a span {
    color: var(--white);
}

.shop-card div > span {
    color: var(--text-light);
}

/* ABOUT */
.about {
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: 2rem;
}

.about-img {
    position: relative;
    isolation: isolate;
}

.about-img::before {
    position: absolute;
    content: "ABOUT US";
    top: 0;
    right: 0;
    color: var(--white);
    font-size: 15rem;
    font-weight: 600;
    font-family: var(--header-font);
    white-space: nowrap;
    line-height: 15rem;
    background-image: linear-gradient(
        to bottom,
        var(--background-color),
        var(--white)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: -1;
}

.about-img::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(
        to top,
        var(--background-color),
        #ffffff00
    );
    z-index: 1;
}

.about-img img {
    max-width: 525px;
    margin-inline: auto;
}

.about-content .section-title {
    margin-bottom: 1rem;
}

.about-content .section-desc {
    margin-bottom: 1rem;
}

.about-stats {
    max-width: 350px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-stats h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: var(--primary-color);
}

.about-stats p {
    font-size: 1rem;
    font-family: var(--header-font);
    color: var(--text-light);
}

/* CHOOSE */
.choose-wrap {
    max-width: 1500px;
}

.choose-head {
    margin-bottom: 4rem;
    display: grid;
    gap: 1rem 2rem;
}

.choose-head .section-title {
    text-align: center;
}

.choose-head p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

.swiper-slide {
    width: 100%;
    max-width: max-content;
}

.choose-card {
    display: flex;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.choose-info {
    position: relative;
    isolation: isolate;
    min-width: 175px;
    padding: 1.5rem;
    background-color: var(--primary-color);
}

.choose-info p {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--header-font);
    color: var(--background-color);
}

.choose-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--background-color);
}

.choose-info h4 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 800;
    font-family: var(--header-font);
    color: var(--background-color);
    opacity: 0.5;
    z-index: 1;
}

.choose-card img {
    max-width: 500px;
}

/* BANNER */
.banner-wrap {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.banner-wrap::before {
    position: absolute;
    content: "MON";
    top: 50%;
    left: 0;
    transform: translate(calc(-50% + 7.5rem), -50%) rotate(-90deg);
    color: var(--white);
    font-size: 15rem;
    font-weight: 600;
    font-family: var(--header-font);
    white-space: nowrap;
    line-height: 15rem;
    background-image: linear-gradient(
        to bottom,
        var(--background-color),
        var(--white)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: -1;
}

.banner-wrap::after {
    position: absolute;
    content: "STER";
    top: 50%;
    right: 0;
    transform: translate(calc(50% - 7.5rem), -50%) rotate(90deg);
    color: var(--white);
    font-size: 15rem;
    font-weight: 600;
    font-family: var(--header-font);
    white-space: nowrap;
    line-height: 15rem;
    background-image: linear-gradient(
        to bottom,
        var(--background-color),
        var(--white)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.1;
    z-index: -1;
}

.banner-wrap p {
    position: absolute;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    z-index: 1;
}

.banner-wrap p:nth-child(1) {
    top: 15%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.banner-wrap p:nth-child(2) {
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.banner-wrap p:nth-child(3) {
    bottom: 15%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.banner-wrap p:nth-child(4) {
    top: 15%;
    right: 20%;
    transform: translate(50%, -50%);
}

.banner-wrap p:nth-child(5) {
    top: 50%;
    right: 15%;
    transform: translate(50%, -50%);
}

.banner-wrap p:nth-child(6) {
    bottom: 15%;
    right: 20%;
    transform: translate(50%, -50%);
}

.banner-wrap img {
    max-width: 350px;
    margin-inline: auto;
    opacity: 0.5;
}

/* FOOTER */
.footer-grid {
    display: grid;
    gap: 4rem 2rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--header-font);
    color: var(--white);
}

.footer-links {
    display: grid;
    gap: 1rem;
}

.footer-links a {
    font-size: 1rem;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-block: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--text-light);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.2rem;
    color: var(--text-light);
}

.footer-social a:hover {
    color: var(--white);
}

/* RESPONSIVE */
@media (width > 540px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .banner-wrap img {
        opacity: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width > 768px) {
    nav {
        position: static;
        padding: 2rem 1rem;
        max-width: var(--max-width);
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .nav-top {
        flex: 1;
        padding: 0;
        background-color: transparent;
    }

    .logo a {
        color: var(--primary-color);
    }

    .menu-btn {
        display: none;
    }

    .nav-links {
        position: static;
        width: fit-content;
        padding: 0;
        flex-direction: row;
        background-color: transparent;
        transform: none !important;
    }

    .nav-links a {
        color: var(--text-light);
    }

    .nav-links a:hover {
        color: var(--white);
    }

    .nav-btns {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        gap: 1rem;
    }

    .nav-btns .btn {
        padding: 4px 10px;
        outline: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-light);
        background-color: transparent;
        border-radius: 100%;
        transition: 0.3s;
        cursor: pointer;
    }

    .nav-btns .btn:hover {
        color: var(--primary-color);
    }

    .hero {
        padding-top: 2rem;
    }

    .hero::after {
        height: 50%;
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .choose-head {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .choose-head .section-title {
        max-width: 350px;
        margin-inline-start: auto;
        padding-right: 1.75rem;
        text-align: right;
        border-right: 1px solid var(--text-light);
    }

    .choose-head p {
        text-align: left;
    }

    .banner-wrap p span {
        position: relative;
        isolation: isolate;
    }

    .banner-wrap p span::before,
    .banner-wrap p span::after {
        position: absolute;
        content: "";
        height: 2px;
        width: 5rem;
        background-color: var(--text-light);
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
    }

    .banner-wrap p:nth-child(1) span::after {
        width: 4rem;
        left: calc(6rem - 1px);
        transform: translateY(-50%) rotate(45deg);
        transform-origin: left;
    }

    .banner-wrap p:nth-child(3) span::after {
        width: 4rem;
        left: calc(6rem - 1px);
        transform: translateY(-50%) rotate(-45deg);
        transform-origin: left;
    }

    .banner-wrap p:nth-child(4) span::before,
    .banner-wrap p:nth-child(4) span::after,
    .banner-wrap p:nth-child(5) span::before,
    .banner-wrap p:nth-child(5) span::after,
    .banner-wrap p:nth-child(6) span::before,
    .banner-wrap p:nth-child(6) span::after {
        right: 1rem;
        left: unset;
    }

    .banner-wrap p:nth-child(4) span::after {
        width: 4rem;
        right: calc(6rem - 1px);
        transform: translateY(-50%) rotate(-45deg);
        transform-origin: right;
    }

    .banner-wrap p:nth-child(6) span::after {
        width: 4rem;
        right: calc(6rem - 1px);
        transform: translateY(-50%) rotate(45deg);
        transform-origin: right;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-col:nth-child(1) {
        max-width: 350px;
        grid-column: 1/3;
    }
}

@media (width > 1024px) {
    .nav-links {
        gap: 3rem;
    }

    .shop-grid {
        gap: 1.5rem;
    }

    .shop-card {
        padding: 2rem;
    }
}
