/*Asterick = body header nav footer div h1 h2 h3 h4 h5 h6 p span*/
/*shorthand = padding: top right bottom left;*/
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    appearance: none;
}
body{
    font-family: "Poppins", sans-serif;
    font-size: 16pt;
}
a{
    text-decoration: none;
}
a:link{
    font-family: "Kantumruy Pro", serif;
    color:#E4CDC0;
}
a:visited{
    color:#eae4ce;
    text-decoration: none;
}
a:hover{
    color:#9d8373;
}
.wrapper{
    margin: auto;
    background-color: #FBEBD8;
    width: 100%;
    margin: auto;
    min-height: 100vh;
}
html{
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
    height: auto;
}









/*------------------------------------------------------------Navigation Bar------------------------------------------------------------*/
.navBar{
    background-color: #5E0800;
    padding: 2vh 10px; /* Large padding which will shrink on scroll (using JS) */
    transition: 0.4s; /* Adds a transition effect when the padding is decreased */
    position: fixed; /* Sticky/fixed navbar */
    top: 0; /* At the top */
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.navBar #navLogo a img{
    display: block;
    width: 100%;
    transition: 0.4s;
}
#navLogo{
    margin-left: 15px;
}
.navBarRight{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navMenu{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    z-index: 2;
    transition: 0.5s;
}
.navMenu li{
    list-style-type: none;
}
.navMenu li a{
    display: block;
    top: 0;
    font-family: "Kantumruy Pro", serif;
    font-size:20px;
    color:#E4CDC0;
    margin-left: 25px;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s;
    align-items: center;

}
.navMenu li a:hover{
    color:#9d8373;
}
#orderNow{
    font-family: "Kantumruy Pro", serif;
    font-size: 20px;
    background-color: #342D20;
    color: #E4CDC0;
    border-radius: 2vw;
    padding: 20px 2vh;
    margin: 0px 2vw 5px 0px;
    font-weight: bold;
    border: none;
    text-decoration: none;
}
#orderNow:hover {
    background-color: #E4CDC0;
    color: #14110b;
}
.hamburger{
    position: relative;
    width: 30px;
    height: 4px;
    background: #E4CDC0;
    border-radius: 10px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}
.hamburger:before,
.hamburger:after{
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #E4CDC0;
    border-radius: 10px;
    transition: 0.3s;
}
.hamburger:before{
    top: -10px;
    width: 20px;
}
.hamburger:after{
    top: 10px;
    width: 25px;
}
.toggleMenu{
    appearance: none;
    position: absolute;
    left: 96%;
    top: 40%;
    height: 22%;
    width: 50px;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
}
.hamburger, .toggleMenu{
    display: none;
}
.navBarRight input:checked ~ .hamburger{
    background: transparent;
}
.navBarRight input:checked ~ .hamburger:before{
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}
.navBarRight input:checked ~ .hamburger:after{
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}
.navBarRight input:checked ~ .navMenu{
    right: 0;
}









/*------------------------------------------------------------Header Section------------------------------------------------------------*/
.slider{
    height: 70vh;
    margin-top: 80px;
    position: relative;
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(to top, #FBEBD8 2%, transparent);
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h1{
    font-size: 78px;
    margin: 0;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent{
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h1,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .5s ease-in-out 1 forwards;
}
.slider .list .item.active h1{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 75%;
    left: 10%;
    z-index: 50;
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .6s .6s ease-in-out 1 forwards;
}
.arrows button{
    background-color: #5e0800b2;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: x-large;
    font-style: bold;
    color: #E4CDC0;
    transition: .5s;
}
.arrows button:hover{
    background-color: #9d8373;
}










/*------------------------------------------------------------Video Blurb Section------------------------------------------------------------*/
.videoBlurb{
    display: flex;
    flex-wrap: wrap;
    margin-top: 200px;
    background-color: #FFFAEF;
    min-height: 600px;
}
.videoCol1{
    flex: 50%;
    width: 100%;
    overflow: hidden;
}
.videoCol1 iframe{
    margin: auto;
    width: 100%;
    height: 600px;
    vertical-align: middle;
}
.videoCol2{
    flex: 50%;
    max-width: 50%;
    margin: auto;
    width: 100%;
    padding: 0 80px 0 50px;
    text-align: center;
}









/*------------------------------------------------------------About Us Section------------------------------------------------------------*/
#aboutUsSpacer{
    padding: 100px;
}
#aboutUs{
    margin: auto;
    background-color: #FFFAEF;
    max-height: fit-content;
    padding: 40px 0px 60px 0px;
    display: flex;
    justify-content: space-around;
}
.twoColumnAboutCol1{
    margin: auto;
    width: 30%;
}
.twoColumnAboutCol2{
    margin: auto;
    margin-top: 20px;
    width: 30%;
}









/*------------------------------------------------------------Image Gallery Section------------------------------------------------------------*/
.imageGallery{
    margin: auto;
    margin-top: 150px;
    text-align: center;
}
.imageGalleryImages{
    margin: auto;
    justify-content: center;
    margin-top: 25px;
    height: 570px;
    display: flex;
    overflow: hidden;
    width: 90%;
    overflow: hidden;
}
.imageGallery img:hover{
    transform: scale(1.5);
    margin-top: -50px;
}
.imageGalleryCol1{
    position: relative;
    display: block;
    height: auto;
    width: 60vh;
    max-width: 60vh;
    object-fit: cover;
    overflow: hidden;
}
.imageGalleryCol2{
    margin-left: 10px;
    position: relative;
    display: block;
    justify-content: space-around;
    width: 25vh;
    max-width: 25vh;
    object-fit: cover;
}









/*------------------------------------------------------------Menu Section------------------------------------------------------------*/
.menu{
    margin: auto;
    margin-top: 70px;
    text-align: center;
    overflow: hidden;
    height: 100%;
    padding-top: 100px;
    width: 90%;
}
:root{
    --width-of-changeLocation: 6.5em;
    --height-of-changeLocation: 3.5em;
    --size-of-icon: 2.6em;
    --checkSlider-offset: 0.6em;
}
.changeLocation input{
    width: 0;
    height: 0;
    opacity: 0;
}
.changeLocation{
    display: block;
    position: relative;
    width: var(--width-of-changeLocation);
    height: var(--height-of-changeLocation);
    margin: auto;
    margin-bottom: 5px;
}
.checkSlider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #e2c2a7;
    transition: 30px;
    border-radius: 50px;
}
.checkSlider::before{
    position: absolute;
    content: "";
    height: var(--size-of-icon, 1.4em);
    width: var(--size-of-icon, 1.4em);
    border-radius: 50px;
    left: var(--checkSlider-offset, 0.3em);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(40deg, #e76464, #5E0800 70%);
    transition: 0.4s;
}
.menu input:checked+.checkSlider::before{
    left: calc(100% - (var(--size-of-icon, 1.4em)+var(--checkSlider-offset, 0.3em)));
    background: linear-gradient(40deg, #09005e, #8ebbee 70%);
}









/*------------------------------------------------------------Contact Us Section------------------------------------------------------------*/
.contactUs{
    text-align: center;
    padding: 80px;
    margin-top: 180px;
    height: 800px;
    overflow: hidden;
    min-height: fit-content;
    background-color: #FFFAEF;
}
.contactContent{
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
    justify-content: center;
}
.contactUs img{
    border-radius: 2vw;
    margin-bottom: 10px;
    object-fit: cover;
    height: 350px;
}
.contactUs iframe{
    height: 350px;
}
.contactUs button{
    font-family: "Kantumruy Pro", serif;
    font-size: 16px;
    background-color: #E4CDC0;
    color: #14110b;
    border-radius: 2vw;
    padding: 10px 1vh;
    margin: 10px;
    font-weight: bold;
    border: none;
}
.contactUs button:hover{
    background-color: #5E0800;
    color: #E4CDC0;
    cursor: pointer;
}
.contactColumn1{
    width: 40%;
    background-color: #be9c93;
    padding: 20px;
    border-radius: 2vh;
    max-width: 800px;
}
.contactColumn2{
    margin-left: 2%;
    width: 40%;
    background-color: #be9c93;
    padding: 20px;
    border-radius: 2vh;
    max-width: 800px;
}









/*------------------------------------------------------------Footer Section------------------------------------------------------------*/
footer{
    padding: 30px;
    margin-top: 250px;
    background-color: #5E0800;
    text-align: center;
    width: 100%;
}
.footerRow{
    display: flex;
    margin-bottom: -20px;
}
.footerCol1{
    width: 30%;
    margin: auto;
}
.footerCol1 img{
    margin-top: -50px;
}
.footerCol2{
    margin: auto;
    width: 100%;
    margin-left: -30%;
}
footer a{
    font-family: "Kantumruy Pro", serif;
    font-size: 18px;
    margin-left: 3vh;
    font-style: normal;
    color: #342D20;
}
footer a:hover{
    font-family: "Kantumruy Pro", serif;
    font-size: 18px;
    font-style: normal;
    color: #9d8373;
}









/*------------------------------------------------------------Gallery Page------------------------------------------------------------*/
.album .responsive-container-block{
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.album .responsive-container-block.bg{
    max-width: 1320px;
    margin: auto;
    justify-content: space-between;
}  
.album .img {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 8px;
}
.album #i9rb {
    color: black;
}
.album #ir6i{
    color: black;
}  
.album #ikz3b {
    color: black;
}  
.album .responsive-container-block.img-cont{
    flex-direction: column;
    max-width: 33.3%;
    min-height: auto;
    margin: 0 0 0 0;
    height: 100%;
}  
.album #ipix{
    color: black;
}  
.album #ipzoh{
    color: black;
}
  
.album #ig5q8{
    color: black;
}  
.album #imtzl{
    color: black;
}
.album #i53es{
    color: black;
}
.album img:hover{
    transform: scale(1.5);
}







































/*------------------------------------------------------------Text------------------------------------------------------------*/
h1{
    font-family: "poppins-thin", sans-serif;
    font-size: 70px;
    font-style: normal;
    color: #5E0800;
    text-transform: uppercase;
    line-height: 1.1;
    padding: 30px 0 30px 0;
}
h2{
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    font-style: normal;
    color: #14110b;
    text-transform: uppercase;
}
h3{
    font-family: "Kantumruy Pro", serif;
    font-size: 22px;
    font-style: bold;
    color: #5E0800;
    text-shadow: #E4CDC0 1px 0 10px;
    text-transform: uppercase;
}
h4{
    font-family: "Roboto", serif;
    font-size: 18px;
    font-style: normal;
    color: #14110b;
    margin-top: 6px;
}
h5{
    font-family: "Kantumruy Pro", serif;
    font-size: 35px;
    font-style: bold;
    color: #5E0800;
    text-shadow: #E4CDC0 1px 0 10px;
    text-transform: uppercase;
}
h6{
    font-family: "Kantumruy Pro", serif;
    font-size: 38px;
    font-style: bold;
    color: #14110b;
    text-transform: uppercase;
}
p{
    font-family: "Kantumruy Pro", serif;
    font-size: 18px;
    font-style: normal;
    color: #14110b;
}

/*------------------------------------------------------------Fonts------------------------------------------------------------*/
.kantumruy-pro{
    font-family: "Kantumruy Pro", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}
.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}
.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}
.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}
.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}
.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}
.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
} 
.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}
.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}
.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}
.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}









/*------------------------------------------------------------MOBILE SCREEN------------------------------------------------------------*/
@media screen and (max-width: 1200px){
    /*------------------------------------------------------------Navigation Section------------------------------------------------------------*/
    nav{
        padding: 40px 20px !important; /* Use !important to make sure that JavaScript doesn't override the padding on small screens */
    }
    #navBar a{
        display: flex;
    }
    .hamburger, .toggleMenu{
        display: block;
    }
    .navBar{
        padding: 40px;
    }
    .navMenu{
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        background-color: #5E0800;
        width: 300px;
        height: 100%;
        padding-top: 14%;
    }
    .navMenu li{
        width: 100%;
    }
    .navMenu li a, .navMenu li a{
        padding: 30px;
        font-size: 40px;
        box-shadow: 0 1px 0 #14110b inset;
        margin-left: 0;
    }
    .hamburger{
        width: 60px;
        height: 12px;
    }
    .hamburger:before,
    .hamburger:after{
        height: 12px;
        width: 50px;
    }
    .hamburger:before{
        top: -20px;
    }
    .hamburger:after{
        top: 20px;
    }
    .toggleMenu{
        left: 90%;
        top: 30%;
        height: 50px;
        width: 60px;
    }
    .navBarRight input:checked ~ .hamburger{
        background: transparent;
    }
    .navBarRight input:checked ~ .hamburger:before{
        transform: rotate(-45deg);
        width: 60px;
    }
    .navBarRight input:checked ~ .hamburger:after{
        transform: rotate(45deg);
        width: 60px;
    }

    /*------------------------------------------------------------Header Section------------------------------------------------------------*/
    .slider .list .item .content h1{
        font-size: 60px;
    }
    .arrows{
        top: 75%;
    }
    .arrows Button{
        width: 80px;
        height: 80px;
        border-radius: 50px;
        font-size: 26pt;
    }

    /*------------------------------------------------------------Video Blurb Section------------------------------------------------------------*/
    #videoBlurb{
        flex-direction: column;
        flex: 100%;
        max-width: 100%
    }
    .videoCol1{
        margin: auto;
        flex: 100%;
        min-height: 300px;
    }
    .videoCol1 iframe{
        width: 100%;
        height: 500px;
    }
    .videoCol2{
        flex: 100%;
        max-width: 100%;
        padding: 25px 60px 30px 60px;
    }

    /*------------------------------------------------------------About Us Section------------------------------------------------------------*/
    #aboutUs{
        flex-direction: column;
    }
    .twoColumnAboutCol1{
        width: 70%;
    }
    .twoColumnAboutCol2{
        width: 70%;
    }

    /*------------------------------------------------------------About Us Section------------------------------------------------------------*/
    .imageGallery{
        height: 500px;
    }

    /*------------------------------------------------------------Contact Us Section------------------------------------------------------------*/
    .contactContent{
        flex-direction: column;
        width: 100%;
    }
    .contactColumn1{
        margin: auto;
        width: 100%;
    }
    .contactColumn2{
        width: 100%;
        margin-top: 20px;
    }
    .contactUs iframe{
        height: 250px;
    }

    /*------------------------------------------------------------Footer Section------------------------------------------------------------*/
    .footerRow{
        flex-direction: column;
        margin: auto;
    }
    .footerCol1{
        appearance: none;
        margin: auto;
        width: 100%;
        margin-top: 60px;
    }
    .footerCol2{
        margin: auto;
        margin-top: 20px;
        width: 100%;
    }
    footer a{
    font-family: "Kantumruy Pro", serif;
    font-size: 18px;
    margin-left: 3vh;
    font-style: normal;
    color: #342D20;
    }









/*------------------------------------------------------------Gallery Page------------------------------------------------------------*/
    /*------------------------------------------------------------Album Section------------------------------------------------------------*/
    @media (max-width: 1024px){
        .album .img {
          margin: 0 0 18px 0;
        }
    }
    @media (max-width: 768px){
        .album .img {
          max-width: 32.5%;
          margin: 0 0 0 0;
        }
        .album .responsive-container-block.bg {
          flex-direction: column;
        }
        .album .responsive-container-block.img-cont {
          max-width: 100%;
          flex-direction: row;
          justify-content: space-between;
        }
    }
    @media (max-width: 500px){
        .album .img {
          max-width: 94%;
          margin: 0 0 25px 0;
        }
        .album .responsive-container-block.img-cont {
          flex-direction: column;
          align-items: center;
          padding: 10px 10px 10px 10px;
        }
    }

    /*------------------------------------------------------------Font Sizing For Mobile------------------------------------------------------------*/
    p{
        font-size: 18pt;
    }
}