@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap");

body {
    background-image: url(https://shibuya-bay.vercel.app/bg-1.png);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Fjalla One", sans-serif;
    color: #251607;
}

.texts-img {
    @media (max-width:768px) {
        .img1 {
            display: none;
        }
    }

}

.container {
    max-width: 1700px;
    width: 95%;
    margin: 0 auto;
}

header {
    @media (max-width:425px) {
        background-color: #251607;
        height: 66px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: end;
        padding: 20px;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;

    a {
        text-decoration: none;
        color: #251607;
        /* font-size: 30px */
        font-size: clamp(0.875rem, 0.0625rem + 2.6vw, 2.5rem);
        font-weight: 600;
    }

    div {
        img {
            width: clamp(1.875rem, 1.2388rem + 2.6786vw, 3.75rem);
        }
    }

    @media (max-width:425px) {
        display: none;
    }
}


.hero {
    h1 {
        font-size: clamp(6.625rem, 0.1772rem + 28.6567vw, 30.625rem);
        text-align: center;
        color: #251607;
        line-height: clamp(6.625rem, 0.1772rem + 28.6567vw, 30.625rem);
    }


    p {
        font-size: clamp(1rem, 0.7649rem + 1.0448vw, 1.875rem);
        color: #251607;
        text-align: center;
        line-height: clamp(1rem, 0.7649rem + 1.0448vw, 1.875rem);
    }

    .hero-img {
        max-width: 100%;
        padding-top: 20px;
    }

    .texts-img {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
    }
}


.slider {
    overflow-x: hidden;
    padding: 50px 0;

    img {
        width: 150%;
        height: 200px;


        @media (max-width:768px) {
            width: 250%;
        }

        @media (max-width:425px) {
            width: 500%;
        }
    }


}

.haru-wrap {
    display: flex;
    justify-content: space-between;
    gap: 50px;

    @media (max-width:768px) {
        flex-direction: column-reverse;
    }
}

.haru-box-1 {
    img {
        width: 100%;
        filter: brightness(1) sepia(10%) saturate(400%);
    }
}


.haru-box-2 {
    h1 {
        font-size: clamp(4rem, 2.1362rem + 8.2836vw, 10.9375rem);
        text-transform: uppercase;
        color: #251607;
        text-align: center;
    }

    p {
        font-size: 22px;
        text-align: end;
        padding: 20px 0;
    }

    img {
        width: 100%;
        padding-bottom: 20px;
    }
}


.plans {
    padding: 50px 0px;

    h1 {
        text-align: center;
        color: #251607;
        text-transform: uppercase;
        font-size: clamp(1rem, 0.7649rem + 1.0448vw, 1.875rem);
        padding: 20px 0px;
    }
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 10px;
    grid-auto-flow: row;
    grid-template-areas:
        "box1 box2 box3"
        "box1 box4 box5";

    @media (max-width:768px) {
        grid-template-columns: 1fr;
        grid-template-areas:
            "box5"
            "box2"
            "box3"
            "box4"
            "box1";
    }

    div {
        min-height: 400px;
        background-size: cover;
        background-position: center;
        border: 2px solid #000;
        display: flex;
        align-items: end;
        justify-content: center;
        transition: .4s ease;

        &:hover {
            h1 {
                transform: scale(1.2);
            }
        }

        h1 {
            color: #fff;
            text-transform: uppercase;
            transition: .4s ease;
        }
    }
}

.box1 {
    grid-area: box1;
}

.box2 {
    grid-area: box2;
}

.box3 {
    grid-area: box3;
}

.box4 {
    grid-area: box4;
}

.box5 {
    grid-area: box5;
}


.box1 {
    background-image: url(https://shibuya-bay.vercel.app/plans-1.png);
}

.box2 {
    background-image: url(https://shibuya-bay.vercel.app/plans-2.png);
}

.box3 {
    background-image: url(https://shibuya-bay.vercel.app/plans-3.png);
}

.box4 {
    background-image: url(https://shibuya-bay.vercel.app/plans-4.png);
}

.box5 {
    background-image: url(https://shibuya-bay.vercel.app/plans-5.png);
}

.plans-img {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 20px;
    }
}


.team-wrap {
    display: grid;
    grid-template-columns: 10fr 1fr;
    gap: 50px;
    align-items: center;

    @media (max-width:768px) {
        grid-template-columns: 1fr;
    }
}


.team-text {
    h1 {
        font-size: clamp(4rem, 1.7164rem + 10.1493vw, 12.5rem);
        text-transform: uppercase;
    }


    .team-text-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;

        @media (max-width:768px) {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width:425px) {
            grid-template-columns: repeat(1, 1fr);
        }

        div {
            min-height: 290px;
            border: 2px solid #000;
            height: 290px;
            background-size: cover;
            background-position: center;
        }


        .card1 {
            background-image: url(https://shibuya-bay.vercel.app/assets/team-2-f8113e02.png);
        }

        .card2 {
            background-image: url(https://shibuya-bay.vercel.app/assets/team-4-8d861bac.png);
        }

        .card3 {
            background-image: url(https://shibuya-bay.vercel.app/assets/team-3-204d37e4.png);
        }

        .card4 {
            background-image: url(https://shibuya-bay.vercel.app/assets/team-1-71317594.png);
        }
    }
}

.team-img {

    @media (max-width:768px) {
        display: none;
    }

    img {
        width: 100%;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;

    @media (max-width:768px) {
        flex-direction: column;
        gap: 30px;
    }

    a {
        text-decoration: none;
        color: #251607;
        /* font-size: 30px */
        font-size: clamp(0.9375rem, 0.8535rem + 0.3731vw, 1.25rem);
        font-weight: 600;
    }
}

.bottom {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding: 50px 0;

    .div1 {
        @media (max-width:768px) {
            display: flex;
            flex-direction: column-reverse;
        }
    }

    @media (max-width:768px) {
        flex-direction: column;
    }

    .img1 {
        width: 100%;
    }

    .img2 {
        width: 100%;
    }
}

footer {
    h1 {
        text-transform: uppercase;
        font-size: clamp(6.5rem, 1.5558rem + 10.3004vw, 12.5rem);
        text-align: center;
    }
}