@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');


:root {
    --border: .1rem solid rgba(185, 184, 182, .3);

    --background-radial-gradient: radial-gradient(circle at center, #c21a03, #790d0d);
    --card-background-linear-gradient-1: linear-gradient(45deg, #c21a03, #790d0d);
    --card-background-linear-gradient-2: linear-gradient(45deg, #790d0d, #c21a03);
    --card-background-linear-gradient-3: linear-gradient(#020202, #333533);
    --card-background-linear-gradient-4: linear-gradient(#ffcd0d, #ffd100);


    --box-shadow-button: 0 8px 16px 0 rgba(0, 0, 0, 0.6);
    --box-shadow-footer: 0 -3px 8px 0 rgba(0, 0, 0, 0.6);

    --header-shadow: 0 4px 8px rgba(0, 0, 0, 1);


    --white-color: #eee9df;
    --black-color: #282623;
    --gray-light: #b9b8b6;
    --gray-dark: #898681;



}


* {
    font-family: "Play", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .8rem;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: var(--card-background-linear-gradient-3);
}

body {
    background: var(--card-background-linear-gradient-3);
    /* background: var(--white-color); */
}

section {
    padding: 2rem 7%;
}

.heading {
    text-align: center;
    color: #ffcd0d;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;
}


.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: var(--white-color);
    background: var(--card-background-linear-gradient-3);
    box-shadow: var(--box-shadow-button);
    cursor: pointer;
}

.btn:hover {
    letter-spacing: .2rem;
}

.btn-2 {
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #333533;
    background: #ffcd0d;
    box-shadow: var(--box-shadow-button);
    cursor: pointer;
}

.btn-2:hover {
    letter-spacing: .2rem;
}

.header {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    /* height: 6.5rem; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header.scrolled {
    background: rgba(51, 53, 51, .8);
    box-shadow: var(--box-shadow-button);
}

.header .logo img {
    height: 4.5rem;
}

.header .navbar a {
    margin: 0 1rem;
    font-size: 1.7rem;
    color: #eee9df;
}

.header .navbar a:hover {
    color: #ffcd0d;
    border-bottom: .1rem solid #ffcd0d;
    padding-bottom: .3rem;
}

.header .icons {
    vertical-align: middle;
    display: flex;
}

.header .icons div {
    color: var(--white-color);
    cursor: pointer;
    font-size: 2rem;
    margin-left: 2rem;
}

.header .icons img {
    width: 3rem;
    margin-left: .5rem;
    transition: .2s linear;
}

.header .icons img:hover {
    transform: translateY(-.3rem);
}

.header .icons div:hover {
    color: #f8d152;
}

#menu-btn {
    display: none;
    color: #eee9df;
}

.message {
    position: sticky;
    top: 0;
    /* max-width: 1500px; */
    width: 100%;
    margin: 0 auto;
    z-index: 1100;
    background-color: #ffcd0d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.message span {
    font-size: 2rem;
    color: #333533;
}

.message i {
    color: #333533;
    cursor: pointer;
    font-size: 2.5rem;
}

.message i:hover {
    transform: rotate(90deg);
}





.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* flex-wrap: wrap; */
    background: url(../images/Home-Cover-02.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}


.home .image img {
    width: 100%;
    box-shadow: var(--box-shadow-button);
}

.home .content {
    max-width: 60rem;
}

.home .content h3 {
    font-size: 6rem;
    text-transform: uppercase;
    color: #eee9df;
}

.home .content p {
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.5;
    padding: .5rem 1rem 0 .5rem;
    color: #eee9df;
}



.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about .row .image {
    flex: 1 1 45rem;
}

.about .row .image img {
    width: 100%;
}

.about .row .content {
    flex: 1 1 45rem;
    margin-left: -1rem;
    padding: 2.5rem;
    background: #ffcd0d;
    box-shadow: var(--box-shadow-button);
}

.about .row .content h3 {
    font-size: 3rem;
    color: #333533;
}

.about .row .content p {
    font-size: 1.6rem;
    color: #333533;
    padding: 1rem 0;
    line-height: 1.8;
}



.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    position: relative;
    height: 53rem;
    overflow: hidden;
    text-align: center;
    background: var(--card-background-linear-gradient-3);
    box-shadow: var(--box-shadow-button);
}



.menu .box-container .box:hover .content {
    bottom: 0;
    transition: .5s ease;

}

.menu .box-container .box img {
    height: 53rem;
    width: 100%;
    object-fit: cover;
}

.menu .box-container .box .content {
    position: absolute;
    bottom: -100%;
    right: 0;
    left: 0;
    background: #ffcd0d;
    padding: 2rem 3rem;
}

.menu .box-container .box .content h3 {
    font-size: 2rem;
    text-transform: capitalize;
    color: #333533;
}

.menu .box-container .box .content .price {
    padding: 1rem 0;
    font-size: 2rem;
    color: #333533;
}

.menu .box-container .box .content .size {
    padding: .5rem 0;
    font-size: 1.5rem;
    color: #333533;
}

.menu .box-container .box.hide {
    display: none;
}

.menu .load-more {
    margin-top: 1.5rem;
    text-align: center;
    cursor: pointer;
}





.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.review .box-container .box {
    position: relative;
    text-align: center;
    height: 45rem;
    cursor: pointer;
    overflow: hidden;
    background: #ffcd0d;
    box-shadow: var(--box-shadow-button);

}

.review .box-container .box img {
    height: 25rem;
    width: 100%;
    object-fit: cover;
}

.review .box-container .box:hover img {
    transform: translateY(-0.5rem);
    filter: grayscale();

}


.review .box-container .box p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #333533;
    padding: 1.5rem 1.5rem;
}

.review .box-container .box p span {
    color: #c21a03;
}



.review .box-container .box h3 {
    padding: 1rem 0;
    font-size: 2rem;
    color: #333533;
}





.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.gallery .box-container .box-1 {
    cursor: initial;
}

.gallery .box-container .box-1:hover .image img {
    transform: scale(1.1);
    transition: 0.3s linear;

}

.gallery .box-container .box-1 .image {
    height: 53rem;
    overflow: hidden;
}

.gallery .box-container .box-1 .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    /* transition: 0.2s linear; */
}

.gallery .box-container .box-1 .content {
    display: flex;
    background: #ffcd0d;
    justify-content: space-between;
}

.gallery .box-container .box-1 .content .info {
    padding: 1rem 2rem;
}

.gallery .box-container .box-1 .content .info h3 {
    font-size: 1.7rem;
    color: #333533;
    text-transform: capitalize;
}

.gallery .box-container .box-1 .content .info p {
    font-size: 1.5rem;
    color: #333533;
    line-height: 1.5;
}

.gallery .box-container .box-1 .content i {
    width: 7.5rem;
    font-size: 3rem;
    background: #333533;
    color: #eee9df;
    cursor: pointer;
    text-align: center;
    line-height: 7.5rem;
}

.gallery .box-container .box-1.hide {
    display: none;
}

.gallery .load-more-gallery {
    margin-top: 1.5rem;
    text-align: center;
    cursor: pointer;
}






.portfolio {
    text-align: center;
}

.portfolio .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio .box-container .box {
    height: 30rem;
    overflow: hidden;
    position: relative;
}

.portfolio .box-container .box:hover .content {
    transform: translateY(0);
}

.portfolio .box-container .box img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio .box-container .box .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffcd0d;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transform: translateY(-100%);
    transition: 0.2s linear;
}

.portfolio .box-container .box .content h3 {
    font-size: 2.5rem;
    color: #333533;
    text-transform: uppercase;
    font-weight: normal;
}

.portfolio .box-container .box .content h3 span {
    font-size: 3rem;
    color: #c21a03;
    text-transform: uppercase;
    font-weight: normal;
}


.portfolio .box-container .box .content p {
    padding: .3rem 0;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #333533;
}

.portfolio .box-container .box .content a:hover {
    color: #fff;
}












.contact .row {
    display: flex;
    background: #ffcd0d;
    box-shadow: var(--box-shadow-button);
    flex-wrap: wrap;
    gap: 1rem;
}

.contact .row .map {
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
}

.contact .row form {
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

.contact .row form h3 {
    text-transform: uppercase;
    font-size: 3.5rem;
    color: #333533;
}

.contact .row form .inputBox {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--white-color);
    border: var(--border);
}

.contact .row form .inputBox span {
    color: #333533;
    font-size: 2rem;
    padding-left: 2rem;
    padding-top: 2.2rem;
}

.contact .row form .inputBox input,
.contact .row form .inputBox textarea {
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #333533;
    text-transform: none;
    background: none;
}

.contact .row form .inputBox textarea {
    height: 15rem;
    resize: none;
}

.blogs .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box {
    background: var(--card-background-linear-gradient-3);
    box-shadow: var(--box-shadow-button);
}

.blogs .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    width: 100%;
}

.blogs .box-container .box .image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogs .box-container .box:hover .image img {
    transform: scale(1.2);
}

.blogs .box-container .box .content {
    padding: 2rem;
}

.blogs .box-container .box .content .title {
    font-size: 2.5rem;
    line-height: 1.5;
    color: var(--white-color);
}

.blogs .box-container .box .content .title:hover {
    color: var(--main-color);
}

.blogs .box-container .box .content span {
    color: var(--white-color);
    display: block;
    padding-top: 1rem;
    font-size: 2rem;
}

.blogs .box-container .box .content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--white-color);
    padding: 1rem 0;
}

.footer {
    /* background: var(--card-background-linear-gradient-3); */
    background: #ffcd0d;
    text-align: center;
    box-shadow: var(--box-shadow-footer);
}

.footer .share {
    padding: 1rem 0;
}

.footer .share a {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #333533;
    border: .1rem solid #333533;
    margin: .3rem;
    /* border-radius: 50%; */
}

.footer .share a:hover {
    background-color: #333533;
    color: #eee9df;

}

.footer .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    gap: 1rem;
}

.footer .links a {
    padding: .7rem 2rem;
    color: #333533;
    border: .1rem solid #333533;
    font-size: 2rem;
}

.footer .links a:hover {
    background-color: #333533;
    color: #eee9df;
}

.footer .credit {
    font-size: 2rem;
    color: #333533;
    font-weight: normal;
    padding-top: 1.5rem;
    text-transform: none;
    border-top: .1rem solid #333533;
}

.footer .credit img {
    height: 4rem;
    vertical-align: middle;
}



/* ------------- MEDIA QUERIES ------------- */

@media(max-width:991px) {
    html {
        font-size: 55%;
    }

    .header {
        padding: 1.5rem 2rem;
    }

    section {
        padding: 2rem;
    }
}





@media(max-width:768px) {
    #menu-btn {
        display: inline-block;
    }

    .fa-times {
        transform: rotate(180deg);
    }

    .header .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        background: #ffcd0d;
        box-shadow: -2px -2px 8px 0 rgba(0, 0, 0, 0.6);
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }

    .header .navbar.active {
        right: 0;
    }

    .header .navbar a {
        color: #333533;
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }



    .home {
        background-position: left;
        justify-content: center;
        text-align: center;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    .home .content p {
        font-size: 1.5rem;
    }

}





@media(max-width:450px) {
    html {
        font-size: 50%;
    }
}