:root {
    --bg: #F3EDE2;
    --color1: #594236;
    --color2: #6F584B;
    --dark: #181311;
}
/* https://coolors.co/f3ede2-594236-6f584b-181311 */

*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Raleway", serif;
    overflow-x: hidden;
}

i, i::before, i::after {
    font-family: "Font Awesome 5 Free";
}

body {
    background-color: var(--bg);
}

body.blurred::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center;
    width: 100%;
    box-shadow: 0px 0px 6px 1px var(--dark);
    position: fixed;
    background-color: var(--bg);
    z-index: 1;
    position: fixed;
}

.nav-box {
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    color: var(--color1);
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo:hover h2 {
    letter-spacing: 2px;
}

.nav-logo img {
    width: 60px;
}
.nav-logo h2 {
    display: none;
    font-size: 22px;
    transition: all 0.3s ease-in;
}

.nav-list {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: var(--color2);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in;
}
.nav-list a:hover {
    color: var(--dark);
}

.nav-list.opened {
    position: fixed;
    left: 0;
    top: 61px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    width: 100vw;
    height: calc(100vh - 60px);
    background-color: var(--bg);
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}
.nav-list.opened a {
    position: relative;
    text-decoration: none;
    color: var(--color2);
    font-weight: 600;
    font-size: 40px;
    padding: 20px 40px;
    border-radius: 40px;
    transition: all 0.3s ease-in;
}
.nav-list.opened a:hover {
    background-color: var(--color1);
    color: var(--bg);
}

.nav-contact {
    display: none;
    align-items: center;
}

.nav-contact p {
    padding: 10px 32px;
    background-color: var(--color1);
    letter-spacing: 1px;
    border-radius: 32px;
    font-weight: 600;
    font-size: 16px;
    color: var(--bg);
    border: solid 2px var(--color1);
    transition: all 0.3s ease-in;
    box-shadow: none;
}
.nav-contact:hover p {
    background-color: var(--bg);
    color: var(--color1);
    cursor: pointer;
    box-shadow: inset 0px 0px 4px 2px var(--color1);
}

a.menu {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color1);
    cursor: pointer;
    transition: all 0.3s ease-in;
}
a.menu:hover {
    color: var(--dark);
}

/*  */

.header {
    display: flex;
    padding-top: 200px;
    justify-content: center;
    width: 100%;
}

.header-box {
    width: 90%;
    display: flex;
}

.header-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
    margin-top: 100px;
}

.header-text h1 {
    font-size: 36px;
    color: var(--color1);
}

.header-text h2 {
    font-size: 20px;
    color: var(--dark);
    opacity: 0.75;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.open-request {
    padding: 12px 24px;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    border: solid 2px var(--color2);
    border-radius: 24px;
    justify-content: center;
    align-items: center;
    color: var(--color2);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    font-weight: 500;
}
.open-request:hover {
    cursor: pointer;
    background-color: var(--color2);
    color: var(--bg);
    box-shadow: inset 0px 0px 4px 2px var(--color1);
}

.header-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 12px 24px;
    border: solid 2px var(--color2);
    background-color: var(--color2);
    border-radius: 24px;
    color: var(--bg);
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    font-weight: 500;
}
.header-contact a:hover {
    background-color: var(--bg);
    color: var(--color2);
    box-shadow: inset 0px 0px 4px 2px var(--color2);
}

.header-img {
    position: absolute;
    margin-top: 40px;
    left: 5%;
    width: 90%;
    height: 200px;
    transform: translateY(-160px);
    background-image: url("images/header_big.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 40px;
}

.header img {
    position: relative;
    width: 100%;
    border-radius: 40px;
    opacity: 0;
}

/*  */

.questions {
    width: 100%;
    display: flex;
    margin-top: 140px;
    justify-content: center;
}

.questions-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: fit-content;
    position: relative;
    cursor: default;
}

.q-column1 {
    border-radius: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease-in;
    padding: 20px;
}
.q-column1:hover {
    background-color: rgba(10, 10, 10, 0);
}
.q-column1:hover :nth-child(1) {
    opacity: 0;
}
.q-column1:hover :nth-child(2) {
    opacity: 0;
}
.q-column1::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/questions.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease-in;
}

.q-column2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 2;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.c2-row1 {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    background-color: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease-in;
    padding: 20px;
}
.c2-row1:hover {
    background-color: rgba(10, 10, 10, 0);
}
.c2-row1:hover :nth-child(1) {
    opacity: 0;
}
.c2-row1:hover :nth-child(2) {
    opacity: 0;
}
.c2-row1::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/questions.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease-in;
}

.c2-row2 {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.5);
    transition: all 0.3s ease-in;
    padding: 20px;
}
.c2-row2:hover {
    background-color: rgba(10, 10, 10, 0);
}
.c2-row2:hover :nth-child(1) {
    opacity: 0;
}
.c2-row2:hover :nth-child(2) {
    opacity: 0;
}
.c2-row2::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/questions.webp");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease-in;
}

.q-title {
    font-size: 26px;
    color: var(--bg);
    text-shadow: 0px 0px 5px var(--dark);
    padding: 0 10px;
}
h2.q-title {
    font-size: 26px;
}
.q-desc {
    padding: 10px 10px;
    color: var(--bg);   
    text-shadow: 0px 0px 5px var(--dark);
    text-shadow: 0px 0px 5px var(--dark);
    text-shadow: 0px 0px 10px var(--dark);
    font-size: 16px;
}
.q-column1 .q-desc {
    font-size: 16px;
}

/*  */

.popular {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    justify-content: center;
    gap: 20px;
}

.popular-box {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popular-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-title h1 {
    color: var(--color1);
    font-size: 30px;
}

.popular-move {
    display: flex;
    gap: 10px;
}

.popular-move i {
    display: flex;
    width: 32px;
    height: 32px;
    font-size: 20px;
    background-color: var(--color1);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--bg);
    transition: all 0.3s ease-in;
}
.popular-move i:hover {
    background-color: var(--color2);
    cursor: pointer;
}

.popular-slider {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 0 10px;
    overflow-x: auto hidden;
    scroll-behavior: smooth;
}

.slider-item {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    width: 320px;
    filter: grayscale(0.5);
    transition: all 0.3s ease-in;
    opacity: 0.9;
}
.slider-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.slider-item img {
    width: 100%;
    border-radius: 20px;
}

.s-item-text {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.s-item-text h2 {
    color: var(--color1);
}
.s-item-text h3 {
    color: var(--dark);
    opacity: 0.75;
    font-weight: 600;
    font-size: 16px;
}

h3.s-item-price {
    font-size: 20px;
    color: var(--color2);
}

/*  */

.blog {
    margin-top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.blog-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-title {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.blog-title h2 {
    font-size: 30px;
    color: var(--color1);
}

.blog-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease-in;
}
.blog-content:hover .blog-item:not(:hover) {
    filter: grayscale(1);
}

.blog-item img {
    width: 100%;
    border-radius: 20px;
}

.b-item-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.b-item-text h2 {
    color: var(--color2);
    font-size: 26px;
}
.b-item-text p {
    font-size: 18px;
    color: var(--dark);
}
.b-item-text a {
    display: inline-block;
    width: fit-content;
    text-decoration: none;
    color: var(--color2);
    font-size: 14px;
}

/*  */

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    background-color: var(--color2);
}

.footer-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
    gap: 40px;
}

.f-column {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.f-column.gap10 {
    gap: 10px;
}

.f-column p {
    padding-bottom: 15px;
    color: var(--bg);
    font-weight: 600;
    font-size: 16px;
}

.f-column a {
    text-decoration: none;
    color: var(--bg);
    transition: all 0.3s ease-in;
}
.f-column a:hover {
    color: var(--dark);
}

.f-column span {
    color: var(--bg);
}

.f-column .open-request {
    width: 100%;
    border: solid 2px var(--bg);
    margin-top: 20px;
    color: var(--bg);
}

.f-column .open-request:hover {
    cursor: pointer;
    background-color: var(--bg);
    color: var(--color2);
    box-shadow: none;
}

/*  */

.request-popup {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 150%);
    background-color: var(--bg);
    box-shadow: 0px 0px 8px 4px var(--color1);
    border-radius: 20px;
    z-index: 1001;
    opacity: 0;
    transition: transform 0.3s ease-in, opacity 0.5s ease-in;
}
.request-popup.anim {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.request-title {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: solid 1px var(--dark);
}

.r-title {
    display: flex;
    gap: 10px;
    color: var(--color1);
    font-weight: 600;
}

.request-title .close-request {
    color: var(--color1);
    cursor: pointer;
}

.request-content {
    padding: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
}

.request-content label {
    font-size: 14px;
    color: var(--color1);
}

.request-content input[type=text] {
    padding: 8px 10px;
    width: 400px;
    background: transparent;
    border: none;
    outline: none;
    border: solid 1px var(--color1);
    border-radius: 10px;
    margin-bottom: 10px;
    color: var(--dark);
}

.request-content input[type=date] {
    margin-bottom: 10px;
    padding: 6px 10px;
    background: transparent;
    border: none;
    outline: none;
    border: solid 1px var(--color1);
    border-radius: 10px;
    color: var(--dark);
}

.request-content a {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    width: 100%;
    background-color: var(--color2);
    font-size: 16px;
    font-weight: 600;
    color: var(--bg);
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    border: solid 2px var(--color2);
    transition: all 0.3s ease-in-out;
}

.request-content a:hover {
    background-color: var(--bg);
    color: var(--color1);
    box-shadow: inset 0px 0px 4px 2px var(--color1);
}

.request-output {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #2E7D32; /* D32F2F  */
}

/* RWD */

@media (min-width: 575px) {
    .nav-contact {
        display: flex;
    }
}

@media (min-width: 992px) {
    .nav-logo h2 {
        display: flex;
    }

    .header-img {
        height: 300px;
    }
    .header-text {
        margin-top: 200px;
    }

    .questions-box {
        flex-direction: row;
    }
    .q-column1 {
        flex: 1;
    }
    .q-column2 {
        flex: 1;
    }

    .blog-item {
        flex-direction: row;
    }

    .blog-item img {
        width: 300px;
        min-width: 300px;
        aspect-ratio: 620/400!important;
        height: fit-content;
    }

    .b-item-text {
        width: 100%;
        min-height: fit-content;
    }
    .b-item-text p {
        width: 100%;
        white-space: wrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .footer-box {
        flex-direction: row;
    }

    .nav-list {
        display: flex;
    }

    a.menu {
        display: none;
    }
}

@media (min-width: 1200px) {
    .nav-box, .header-box, .questions-box, .blog-box, .footer-box {
        width: 80%;
    }

    .popular-box {
        padding: 0 10%;
    }

    .questions-box {
        height: 600px;
    }

    .b-item-text p {
        -webkit-line-clamp: 6;
    }

    .header-text {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: left;
        gap: 20px;
        margin-top: 0;
    }

    .header-img {
        position: absolute;
        left: 55%;
        width: 50%;
        margin-top: 160px;
        height: auto;
        background-image: none;
    }
    .header img {
        position: relative;
        width: 100%;
        opacity: 1;
    }
}

@media (min-width: 1400px) {
    .header-img {
        margin-top: 120px;
    }
}

@media (min-width: 1600px) {
    .header-img {
        margin-top: 80px;
    }
}

/*  */

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px var(--color1);
	background-color: var(--bg);
	border-radius: 10px;
}

::-webkit-scrollbar
{
	width: 8px;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, var(--color1)),
									   color-stop(0.86, var(--color2)));
}