@font-face {
    font-family: 'Simula';
    src: url('./Assets/Fonts/Simula-Book.woff2') format('woff');
}

:root {
    /* --pink: #EFE3D5; */
    --lighter-orange: #f6c181;
    --light-orange: #cea069;
}

html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-family: Simula;
}

nav {
    position: fixed;

    height: 10vh;
    width: 100vw;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;

    z-index: 10;
    background: white;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav .left {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .left img {
    height: 80%;
}

nav a {
    /* color: white; */

    font-size: 1.3rem;
    text-decoration: none;
    margin-right: 1rem;

    display: inline-block;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/*  */

.button {
    cursor: pointer;
    font-size: 1.5rem;
    padding: 1rem 3rem;
    border-radius: 10vmax;
    border: none;
    /* background: rgb(188, 243, 255); */
    background: var(--light-orange);
}

.heading {
    color: var(--light-orange);
    text-align: center;
    font-size: 3rem;
    /* margin: 5rem 0; */
    margin-bottom: 5rem;
}

/*  */

section {
    padding-top: 8rem;
}

.half {
    width: 50%;
    margin: auto;
}

@media (max-width:600px) {
    .half {
        width: 90%;
    }
}

/*  */

.whatsappDiv {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.whatsappDiv img {
    cursor: pointer;
    width: 50px;
}

/*  */

section.hero {
    height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;
    padding-left: 10rem;

    background-image: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)),
        url("./Assets/Hero/3d-room-interior-with-classic-design-furniture.jpg");

    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

section.hero .container h3 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1rem;
}

section.hero .container h1 {
    color: white;
    font-size: 3.3rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.124);
    padding: 1rem;
}

/*  */

.about_us p {
    font-size: 1.4rem;
    margin-top: 2rem;
}

/*  */

.services img {
    height: 40px;
    /* font-size: 2rem; */
    margin-right: 1rem;
}

.services p {
    font-size: 1.4rem;
    margin-top: 1rem;

    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.contact .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact .container p {
    font-size: 1.3rem;
    margin-top: 0.3rem;
}
.contact .container p.contact {
    font-family: Arial, Helvetica, sans-serif;
}

/*  */

section.howitworks {
    /* height: 100vh; */
}

section.howitworks .container {
    width: 90%;
    margin: auto;
}

section.howitworks .container .div {
    display: flex;
    margin-bottom: 10rem;
}

section.howitworks .container .div .one {
    flex: 1;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

section.howitworks .container .div .one p {
    font-size: 3rem;
    font-weight: 300;
}

section.howitworks .container .div .two {
    flex: 5;
    /* width: 55%; */
    /* padding: 0 8rem; */
}

section.howitworks .container .div .two h1 {
    font-size: 2rem;
    font-weight: 500;
    width: 60%;
    margin: auto;
}

section.howitworks .container .div .two h2 {
    font-size: 1.2rem;
    font-weight: 300;
    width: 60%;
    margin: auto;
    margin-top: 3rem;
}

section.howitworks .container .div .two h3 {
    font-family: Arial, Helvetica, sans-serif;
    color: gray;
    font-size: 1rem;
    font-weight: 300;
    width: 60%;
    margin: auto;
    margin-top: 2rem;
}

section.howitworks .container .div .three {
    flex: 3;
    /* width: 30%; */
}

section.howitworks .container img {
    width: 100%;
    border-radius: 5px;
}

/*  */

section.gallary .buttonSection {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: auto;
    margin-bottom: 2rem;
}

section.gallary .buttonSection button {
    font-size: 1.2rem;
    padding: .2rem 1.5rem;
    background: var(--lighter-orange);
    border: none;
    border-radius: 10vmax;
    cursor: pointer;
}


section.gallary .imgSection>div {
    display: flex;
    flex-wrap: wrap;
    /* display: grid;
    grid-template-columns: repeat(4, 1fr); */
    width: 90%;
    margin: auto;

}


section.gallary .imgSection>div img {
    width: 22.5%;
    margin-right: .3rem;
}

footer {
    /* height: 30vh; */

}

footer h1 {
    text-align: center;
    font-size: 3rem;
    margin-top: 5rem;
}

footer .iconsContainer {

    /* height: 30vh; */
    width: 50%;
    margin: 1rem auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

footer .iconsContainer i {
    font-size: 3rem;
    /* color: red; */
    color: black;
}

footer .iconsContainer i:hover {
    color: rgb(68, 68, 68);
}