@import url('https://fonts.googleapis.com/css2?family=Acme&family=Cinzel:wght@500&family=Comfortaa:wght@300&family=Cookie&family=Playfair+Display&family=Roboto:wght@300;400&display=swap');

*{
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    font-family: 'Acme', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Cinzel', serif;
    font-family: 'Playfair Display', serif;
    background: url(./images/background-paper.jpg);
}

/* Style for Menu */

header{
    position: fixed;
    height: 80px;
    overflow: hidden;
    top: 0;
    display: flex;
    align-items: center;
    background-color: rgb(0, 0, 0);
    width: 100%;
    z-index: 1000;
}
header .logo img{
    width: 350px;
    float: left;
    margin-left: 50px;
}
.menu{
    position: absolute;
    right: 80px;
}
.menu a{
    font-size: 20px;
    color: #ffffff;
    margin-left: 30px;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}
.menu a:hover{
    color: #000000;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}
.menubtn{
    display: none;
    position: absolute;
    right: 30px;
}
.menubtn:hover > span{
    background: #ffffff;
}
.menubtn span{
    display: block;
    margin: 6px;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
}

@media only screen and (max-width : 1020px) {
    header{
      overflow: visible;
    }
    header .logo img{
    width: 260px;
    float: left;
    margin-left: 20px;
    }
    .menu{
      width: 100%;
      right: 0;
      top: 80px;
      background: #000000;
      overflow: hidden;
      max-height: 0;
      transition: 0.6s;
    }
    .menu a{
      display: block;
      text-align: center;
      padding: 20px;
      margin: 0;
    }
    .menubtn{
      display: block;
      cursor: pointer;
    }
    .show{
      max-height: 500px;
    }
  }


/* Style for Landing Page */

section{
    margin-top: 80px;
    width: 100%;
    background: #000000;
    color:#ffffff
}
#landing-section{
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
}
#landing-section h1{
    font-size: 50px;
    font-weight: 700;
    padding-bottom: 20px;
    margin-top: 60px;
    font-family: 'Playfair Display', serif;
}
#landing-section h2{
    font-size: 26px;
    padding-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
#landing-section p{
    font-size: 20px;
}
#landing-section button{
    text-decoration: none;
    text-transform: uppercase;
    background: #ff914d;
    color: #000000;
    padding: 12px 25px;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
}
#landing-section button a{
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}
#landing-section button:hover{
    color: #ffffff;
    background: #ffffff;
    cursor: pointer;
}


/* Style for Footer */
footer{
    width: 100%;
    height: auto;
    background: #000000;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}
.footer-section{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    text-decoration: none;
}
.footer-section .col-sm-4 p:hover{
    color: #ff914d;
}
.footer-section .col-sm-4 i:hover{
    color: #ff914d;
}
.footer-section .col-sm-4 p a:hover{
    color: #ff914d;
}
.footer-column{
    grid: column;
}
.footer-column h3{
    font-size: 22px;
    padding: 20px;
    color: #ffffff;
}
.copyright{
    font-size: 16px;
    color:#ffffff;
    text-align: center;
    padding: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: lighter;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.copyright a{
    color: #ffffff;
    text-decoration: none;
}
.copyright a:hover{
    color: #ffffff;
}

/* Style for Image Caraousal */

#owl-demo{
    padding: 50px;
}

#owl-demo .item{
    margin: 3px;
  }
  #owl-demo .item img{
    display: block;
    width: 100%;
    height: auto;
  }

/* Style for Pages */

.page-heading h2{
    font-size: 46px;
    padding: 20px;
    color: #000000;
    font-family: 'Playfair Display', serif;
    margin-top: 100px;
    text-align: center;
    font-weight: bold;
}
.page-heading h2 span{
    background: rgb(0, 0, 0);
    padding: 5px;
    padding-right: 30px;
    padding-left: 10px;
    color: #ffffff;
}
@media (max-width:800px){
    .page-heading h2 span{
        line-height: 80px;
        padding: 2px;
        padding-right: 30px;
        padding-left: 10px;
    }
}

/* Style for Gallery */

.gallery{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 30px;
}
.gallery .gallery-set{
    width: 300px;
    height: 250px;
    overflow: hidden;
    margin: 10px;
}
.gallery .gallery-set img{
    width: 100%;
    height: 100%;
    transition: 0.3s all ease-in-out;
}
.gallery .gallery-set img:hover{
    cursor: pointer;
    transform: scale(1.2);
}

/* Style for Page Content */

.page-content{
    width: 100%;
    color: #ffffff;
    padding: 50px;
    text-align: justify;
}
.page-content h3{
    font-size: 24px;
    padding: 20px 0px;
    color: #000000;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}
.page-content p{
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    line-height: 24px;
    color: #000000;
}

/* Style for Gallery Slider */

.latest-gallery{
    width: 100%;
    overflow: hidden;
    padding-top: 30px;
  }
  .latest-gallery h4{
    font-size: 20px;
    color: #ffffff;
    padding: 20px 50px 20px 50px;
    font-family: 'Playfair Display', serif;
    background: #000000;
    text-align: center;
}
  .slider{
    width: 400%;
    display: flex;
    position: relative;
    animation-name: image_slider;
    animation-duration: 16s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;  
  }
  .slider:hover{
    animation-play-state: paused;
    cursor:pointer;
  }
  .slides{
    width: 100%;
  }
  .slides img{
    width: 100%;
    height: 100%;
  }
  @keyframes image_slider
  {
    0%
    {
      left: 0%;
    }
    24%
    {
      left: 0%;
    }
    25%
    {
      left: -100%;
    }
    49%
    {
      left: -100%;
    }
    50%
    {
      left: -200%;
    }
    74%
    {
      left: -200%;
    }
    75%
    {
      left: -300%;
    }
    99%
    {
      left: -300%;    
    }
    100%
    {
      left: 0%;
    }
  }

/* Style for Scroll Bar */

::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track{
    background: #000000;
}
::-webkit-scrollbar-thumb{
    background: #e27530;
    border-radius: 5px;
}

/* Style for Have a Question */

.haveaquestion{
    width: 100%;
    height: auto;
    background: #000000;
    color: #ffffff;
    margin: 0px auto;
    padding: 50px;
    text-align: center;
}
.haveaquestion h3{
    font-size: 36px;
    font-family: 'Cinzel', serif;
    padding: 30px;
}
.haveaquestion a{
    color: #000000;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    font-family: 'Cinzel', serif;
}
.haveaquestion a:hover{
    background: #e27530;
    color: #000000;
    padding: 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* Style for Artwork Section */

.sectioncolmain{
    background: #f0f0f0;
}
#artwork-section{
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
}
#artwork-section h2{
    font-size: 42px;
    font-weight: 700;
    padding-bottom: 20px;
    font-family: 'Playfair Display', serif;
}
#artwork-section p{
    font-size: 20px;
}
#artwork-section button{
    text-decoration: none;
    text-transform: uppercase;
    background: #000000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 20px;
}
#artwork-section button a{
    color: #ffffff;
    text-decoration: none;
}



  /* Style for Social Buttons Chat */

.chatbutton{
    position: fixed;
    bottom: 100px;
    right: 0px;
    cursor: pointer;
    z-index: 10;
    background: #ffffff;
    border-radius: 5px;
}
.chatbutton img{
    width: 40px;
    margin: 5px;
}

/* Style for Contact Us Form */

.contact-form{
    max-width: 600px;
    height: auto;
    background: #474747;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
}
.contact-form h3{
    font-size: 26px;
    padding: 20px;
}
.input-box{
    padding: 10px;
}
.input-box input, textarea{
    width: 450px;
    height: 45px;
    padding: 10px;
    outline: none;
    border: none;
}
.input-box textarea{
    min-height: 100px;
}
.contact-button{
    margin: 20px auto;
}
.contact-button input{
    width: 120px;
    height: 40px;
    border-radius: 5px;
    outline: none;
    border: none;
    color: #ffffff;
    background: #e27530;
    font-size: 16px;
}
.contact-button input:hover{
    cursor: pointer;
    background: #85441b;
    transition: 0.3s;
    border: 2px solid #ff914d;
}
@media(max-width: 600px){
    .input-box input, textarea{
        width: 350px;
        height: 42px;
    }
    .contact-form{
    max-width: 450px;
}
}
@media(max-width: 450px){
    .input-box input, textarea{
        width: 250px;
        height: 36px;
    }
    .contact-form{
    max-width: 350px;
}
}

/* Style for Contact Info */

.contact-container{
    width: 100%;
    background: #e27530;
    align-items: center;
    margin-top: 80px;
}
.contact-info{
    width: 100%;
    background: #e27530;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 80px;
}
.contact-infobox{
    background: #ffffff;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    margin-top: -50px;
    margin-bottom: 80px;
    box-shadow: 0 10px 36px rgba(0,0,0,.15);
}
.contact-infobox i{
    font-size: 32px;
    margin: 10px;
}
.contact-infobox h4{
    font-size: 24px;
    padding: 10px;
}
.contact-infobox p{
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    padding: 5px;
}
.contact-infobox a{
    color: #000000;
    text-decoration: none;
}
.contact-infobox a:hover{
    color: #000000;
}

/* Style for About Us */
.about-welcome{
    width: 100%;  
    padding: 20px;
    text-align: left;
    margin-top: 50px;
    font-family: 'Playfair Display', serif;
}
.about-welcome h3{
    font-size: 36px;
    line-height: 44px;
    font-weight: bold;
}
.about-welcome p{
    padding-top: 20px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
