@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}


header.header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: white;

}

.header__logo {
    width: 8rem;
}


nav.header__nav {
    position: fixed;
    bottom: 2%;
    padding: 1rem 3rem;
    background-color: white;
    border-radius: 0.5rem;
box-shadow: 0px 4px 3px rgba(3, 7, 18, 0.03),
  0px 14px 11px rgba(3, 7, 18, 0.05),
  0px 32px 24px rgba(3, 7, 18, 0.08);

    z-index: 50;

}

.header__nav ul {
    display: flex;
    gap: 2rem;
    list-style-type: none;
}

li a {
    text-decoration: none;
    color: rgb(52, 52, 52);
    list-style: none;
    cursor: pointer;
}


section.hero {
    display: flex;
    flex-direction: column;
    padding: 10rem 3rem 2rem 3rem;
    /* justify-content: center; */
    /* align-items: center; */
    min-height: 65vh;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: white;
}

h1.hero__title,
.hero__highlight {
    font-size: 9rem;
    font-weight: 500;
    line-height: 0.8em;
    text-align: center;
    color: rgba(52, 52, 52, 1);
    text-transform: uppercase;
}

.hero__highlight {
    /* color: red; */
    font-family: "Playfair Display", serif;
    /* background-color: aquamarine; */
    height: 8rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    /* overflow: hidden; */
}

.hero__highlight-scroll {
    /* transform: translateY(-50%); */
    transition: all 0.5s;
}

section.feature-video {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 10;

    & video {
        object-fit: cover;
        width: 100%;
        height: 100vh;
    }
}


section.about {
    width: 100%;
    height: 70rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    padding: 8rem;
    background-color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0px 4px 3px rgba(3, 7, 18, 0.03),
        0px 14px 11px rgba(3, 7, 18, 0.05),
        0px 32px 24px rgba(3, 7, 18, 0.08);


    & .about__left img {
        object-fit: cover;
        width: 500px;
        height: 600px;
        border-radius: 5px;
    }


    & .about__right img {
        object-fit: cover;
        width: 350px;
        height: 350px;
        border-radius: 5px;
    }

    & .about__right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;

        & p {
            font-size: 2.5rem;
            font-weight: 500;
            font-family: "Playfair Display", serif;

            & span {
                color: red;
            }
        }
    }
}

.footer {
    /* padding-bottom: 10px; */
    height: 102vh;
    background-color: #191919;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.footer__wrapper {
    height: 96vh;
    width: inherit;

    padding: 2rem;
    margin-bottom: 15rem;
}

.footer__inner {
    height: 100%;
    width: inherit;
    background-color: white;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    & img {
        width: 10%;
        padding-top: 7rem;
    }
}


.footer__description {
    color: rgba(52, 52, 52, .5);
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    width: 35rem;
    text-align: center;
    font-weight: 400;
}

.footer__chat {
    background: url(/Assets/btn.svg);
    background-repeat: no-repeat;
    background-position: center;
    color: black;
    text-align: center;
    padding: 0.5rem 1rem;
    margin: 2rem;

    &:hover {
        color: rgba(0, 0, 0, 0.5);

    }
}

.footer__inner-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: linear-gradient(250deg, #ff9d82, #f2623a);
    height: 40%;
    width: 99%;
    margin: 0.5rem;
    border-radius: 0.5rem;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 0.8rem;

    & h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        font-weight: 500;
    }

    & li,
    p {
        text-transform: uppercase;
        font-weight: 600;
        list-style-type: none;
    }

    & .rights {
        color: rgba(255, 255, 255, 0.6);
    }
}

.footer__newsletter {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    & button {
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        background-color: #ffffff1a;
        border-radius: 5px;
        border: 0px solid transparent;
        padding: 1rem 2rem;
    }
}


.bottom-02 {
    border-left: 1px solid white;
    border-right: 1px solid white;
}
