@import url('https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --companyname: "Lavishly Yours";
    --buttonbg: yellow;
    --white: #ffffff;
    --black: black;
    --lightgray:
}

#nav .container {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: transparent;
    padding: 0px 20px;
}

#nav .container .logo h1 {

    font-family: var(--companyname);

}

#nav .container .logo p {

    font-size: 13px;
    font-weight: 200;

}

#nav .container .logo {
    text-align: center;
}

#nav .container nav ul {
    display: flex;
    gap: 0px 50px;
    list-style: none;

}

#nav .container nav ul a {
    text-decoration: none;
    color: var(--lightgray);

}

#home {
    width: 100%;
    height: 88vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./home.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    height: 100%;
    gap: 20px;
}

#home .container h1 {
    font-size: 80px;
    font-family: var(--companyname);

}

#home .container h2 .line {
    width: 2px;
    height: 50px;
    background-color: var(--buttonbg);
}

#home .container span {
    color: var(--buttonbg);
}

#home .container ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#home .container .btn button {
    width: 100px;
    padding: 10px;
    background-color: var(--buttonbg);
    color: var(--black);
}

#home .container .btn button a {
    text-decoration: none;
    color: var(--black);
}

#home .container .btn button:nth-child(2) {
    background: var(--white);
    color: var(--black);


}

/* ---------------------------x------------------------------------- */

#about .container {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: 50px 0px;
    display: flex;
    justify-content: center;
    gap: 0px 30px;
}

#about .container .left {
    width: 20%;
    height: 100%;
    opacity: 1;
    position: relative;
}

#about .container .left img {
    width: 400px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

#about .container .right {
    width: 60%;
    height: 70vh;
    text-align: center;

}

#about .container .right h1 {
    color: var(--black);
    font-family: var(--companyname);
    font-size: 60px;
    font-weight: 400;
}

#about .container .right .contant {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 30%;
}

/* #about .container .right .contant span {
    font-size: 30px;
    font-weight: 700;
} */

#about .container .right .contant p {
    text-align: left;
    line-height: 30px;
    font-weight: 300;
}

#about .container .right .details {

    margin: 30px 0px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;

}

#about .container .right .details .line {
    width: 2px;
    height: 100px;
    background-color: rgb(205, 204, 204);
}

#about .container .right .details .datas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#about .container .right .details .datas p {
    font-size: 20px;
}

#about .container .right {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

/* --------------------------x-------------------------------------- */

#service .container {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;

}

#service .container ul {
    display: flex;
    gap: 20px;
    list-style: none;
    width: 80%;
    margin: auto;
    overflow-x: auto;
    /* only horizontal scroll */
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
}

/* #service .container ul::-webkit-scrollbar {
    display: none;
    /* hide scrollbar (Chrome) */
/* } */

#service .container ul li {
    min-width: 200px;
    /* important for scroll layout */
    background-color: rgba(202, 200, 200, 0.3);
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    flex-shrink: 0;
    /* prevents shrinking */
}