/*Black #191716*/
/*White #e0e2db*/
/*Yellow #e6af2e*/
/*Gray #beb7a4*/
@font-face {
  font-family: "Big Shoulders Inline Display Black";
  src: local("Big Shoulders Inline Display Black"),
    url("BigShouldersInlineDisplay-Black.woff")
      format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.animate-in {
  -webkit-animation: fadeIn 2s ease-in;
  animation: fadeIn 2s ease-in;
}

.animate-out {
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
}
body {
    background:black;
  font-family: "Hind", sans-serif;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.anchor {
  height: 0;
}
#navigation :hover {
  opacity: 1 !important;
  color: #e0e2db;
}

nav ul {
  list-style-type: none;
  border-top: 6px solid #e6af2e;
  background: rgba(25, 23, 22, 1);
  transition: background 1s;
}
#nav-ul {
  background: rgba(25, 23, 22, 1);
  transition: background 1s;
}
nav ul:hover {
  opacity: 1 !important;
  background: #191716 !important;
  transition: opacity 1s, background 1s;
}
nav ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 20px;
  padding: 15px 25px;
  color: #e6af2e;
}

nav ul li a:hover {
  color: #e0e2db;
  
}
.list {
  display: none;
}
#btn {
  padding: 2px 5px;
  border: 2px solid black;
}
#btn:hover {
  border: 2px solid #e0e2db;
}
.logo {
  font-family: 'Berkshire Swash', cursive;
  font-weight: bold;
  font-size: 35px;
  display: flex;
  justify-content: space-between;
  background: #e6af2e;
  color: #191716;
  transition: color 1s ease;
}
.logo:hover {
  border-bottom: none;
}
#navigation {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (min-width: 576px) {
  nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  nav ul li {
    flex: 1 0 auto;
  }
  #navigation {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #btn {
    padding: 0;
    margin: 0;
    border: 0;
    display: inline-block;
  }
  #btn:hover {
    border: 0;
  }
  .list {
    display: block !important;
  }
  .logo {
    display: block;
    text-align: center;
  }

  .logo .fa-utensils {
    margin-left: 20px;
    opacity: 0.8;
  }
}

/*#################### BANNER SECTION ###################*/

#banner {
  min-height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.slides {
  display: flex;
}
.slide {
  position: relative;
  min-width: 100vw;
  height: 90vh;
  opacity: 1;
  z-index: 9;
}

.slide img {
  position: relative;
  width: 100%;
  height: 100%;
}

.overlay h3 {
  font-size: 17px;
  font-weight: normal;
  width: 70%;
  margin: 0 auto;
  padding-top: 10px;
}
.banner-title {
  position: absolute;
  z-index: 5;
}
.banner-text {
  font-family: "Lobster", cursive;
  font-size: 50px;
  text-transform: uppercase;
  color: #ffa500;
  text-align: center;
  font-style: italic;
  transition: 4s;
}
.banner-text-2 {
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: none;
  color: #ffa500;
}
.banner-title:hover .banner-text {
  color: #ffa500;
  transition: 3s;
}
.banner-underline {
  width: 200px;
  border: 3px solid #ffa500;
  margin: 10px auto 20px auto;
  transition: 1s;
}

.banner-btn {
  display: flex;
  justify-content: space-between;
}

.banner-btn button {
  font-size: 23px;
  padding: 15px;
  text-transform: uppercase;
  margin: 0 10px;
  background: transparent;
  color: #e6af2e;
  border: 2px solid #e6af2e;
  transition: background 1s ease;
  cursor: pointer;
}

.banner-btn button:hover {
  color: #58503e;
  background: #e6af2e;
}

.banner-title:hover .banner-underline {
  border-color: #e6af2e;
  transition: 1s;
  width: 300px;
}
.banner-btn:hover .banner-underline {
  border: 3px solid #e6af2e;
}

/*#################### SKILLS SECTION ###################*/

#skills {
  padding: 20px 0;
  background-color: #a89a78;
}

.skills-container {
  max-width: 95vw;
  margin: 0 auto;
}

.skills-item {
  text-align: center;
  margin: 20px 0;
}

.skills-item .fa-couch,
.skills-item .fa-bread-slice,
.skills-item .fa-wine-bottle,
.skills-item .fa-shipping-fast {
  font-size: 60px;
  color: #191716;
}

.skills-item h1 {
  font-size: 30px;
  letter-spacing: 2px;
  margin: 30px 0;
  color: #e6af2e;
  text-transform: uppercase;
}

.skills-item p {
  width: 75%;
  margin: 0 auto;
  color: #e0e2db;
}

@media screen and (min-width: 576px) {
  .skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1em;
  }
}

@media screen and (min-width: 976px) {
  .skills-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*#################### SERVICES SECTION ###################*/

.title {
  margin: 40px 0;
}

.title-text {
  text-align: center;
  font-size: 25px;
  color: #e0e2db;
  font-style: italic;
  text-transform: uppercase;
  
}

.title-underline {
  width: 200px;
  border: 3px solid #e6af2e;
  margin: 0 auto;
}
.text{
  color: #e0e2db;
  padding-bottom: 20px;
  text-align: justify;
}
.text p{
  width: 80%;
  margin: 0 auto;
  padding-top:10px ;
}
.text span{
  color: #e2a109;
  font-weight: 900;
}
#services {
  min-height: 100vh;
  background: url(images/restaurant-banner.jpg);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0 80px 0;
}

.services-container {
  max-width: 90vw;
  margin: 0 auto;
  color: #e0e2db;
}

.service-item {
  overflow: hidden;
  position: relative;
  min-height: 40vh;
  padding: 60px 0;
}

.service-item .fa-hand-point-down {
  font-size: 60px;
  margin-bottom: 30px;
  color: #e6af2e;
}

.service-item-black {
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.7)
  );
}

.service-item-white {
  background: linear-gradient(
    rgba(206, 206, 206, 0.7),
    rgba(206, 206, 206, 0.7)
  );
  color: #191716;
}

.front-text {
  text-align: center;
  transition: transform 2s;
}
.front-text h1 {
  font-size: 25px;
}
.back-text {
  position: absolute;
  bottom: -100%;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  transition: bottom 2s;
  padding: 30px 30px;
  color: #e0e2db;
}

.back-text-1 {
  background: url(images/restaurant-1.jpg) center /
    cover no-repeat;
}
.back-text-2 {
  background: url(images/restaurant-2.jpg) center /
    cover no-repeat;
    
}

.back-text-3 {
  background: url(images/restaurant-3.jpg) center /
    cover no-repeat;
}
.back-text-4 {
  background: url(images/restaurant-4.jpg)
    center/cover no-repeat;
}
.back-text h1 {
  padding: 10px;
  background: rgba(23, 23, 23,0.5);
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}
.back-text p{
  background: rgba(23, 23, 23,0.5);
  padding: 10px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  font-size: 15px;
}
.back-text button {
  margin-top: 20px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid #e6af2e;
  font-size: 20px;
  color: #e6af2e;
  cursor: pointer;
}

.back-text button:hover {
  background-color: #e6af2e;
  color: #191716;
}

.service-item-white button {
  background: #e6af2e;
  color: #191716;
}

.service-item-white button:hover {
  background: #191716;
  border-color: #191716;
  color: #e6af2e;
}

.service-item:hover .service-item-white {
  background: none;
}
.service-item:hover .front-text {
  transform: translateY(-200px);
}

.service-item:hover .back-text {
  bottom: 0;
}

@media screen and (min-width: 776px) {
    #services {
  
  background-attachment: fixed;
  
}
  .title-text{
    font-size: 35px;
  }
  .text{
    width: 90%;
    margin: 0 auto;
    font-size: 19px;
    padding-bottom: 50px;
  }
  .text p{
    width: 90%;
    font-size: 19px;
    padding-top: 20px;
  }
 
  .services-container {
    max-width: 80vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-container
    .service-item:nth-of-type(1) {
    order: 1;
  }
  .services-container
    .service-item:nth-of-type(2) {
    order: 2;
  }
  .services-container
    .service-item:nth-of-type(3) {
    order: 4;
  }
  .services-container
    .service-item:nth-of-type(4) {
    order: 3;
  }
}
@media screen and (min-width: 1500px) {
  .back-text h1{
    width: 50%;
  }
  .back-text p{
    width: 50%;
    font-size: 16px;
  }
}
/*#################### PROJECTS SECTION ###################*/

#projects .title-text {
  color: #191716;
}

#projects {
  padding: 20px 0 80px 0;
  background-color: #e0e2db;
}

.projects-container {
  max-width: 90vw;
  margin: 0 auto;
}
.owl-nav{
  font-size: 50px;
 position: absolute;
 z-index: 1000;
 top: 100%;
 left: 50%;
 transform: translate(-50%,-50%);
 
}


.projects-item {
  position: relative;
  z-index: 100;
  background: linear-gradient(
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.8)
  );
  color: #e0e2db;
  overflow: hidden;
  margin: 20px 0;
  
}

#projects img {
  width: 100%;
  min-height: 100%;
  display: block;
  transition: transform 4s;
}

.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 4s;
}

.img-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  font-size: 20px;
  opacity: 0;
  color: #e6af2e;
  transition: opacity 4s;
}
#moments{
  font-size: 30px;
}
.img-text h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.img-text h6 {
  font-size: 15px;
}

.projects-item:hover img {
  opacity: 0.5;
  transform: scale(1.3);
}

.projects-item:hover .img-text,
.projects-item:hover .img-footer {
  opacity: 1;
}
.footer-icon{
  cursor: pointer;
}
@media screen and (min-width: 776px) {
  .projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1em;
  }
 
  #moments{
    font-size: 40px;
  }
}

@media screen and (min-width: 976px) {
  .projects-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 1em;
  }
  .owl-nav{
    font-size: 60px;
   position: absolute;
   z-index: 1000;
   top: -5%;
   left: 93%;
  }
}

/*#################### FILLER SECTION ###################*/

#filler-contact {
  min-height: 30vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url(images/restaurant-banner.jpg);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  padding: 60px;
  text-align: center;
}

#filler-contact h1 {
  font-size: 25px;
  text-transform: uppercase;
  color: #e0e2db;
  margin-bottom: 30px;
}

#filler-contact button {
  font-size: 25px;
  text-transform: uppercase;
  color: #e6af2e;
  border: 2px solid #e6af2e;
  padding: 10px 15px;
  background: transparent;
  transition: background 2s ease, color 2s ease;
  cursor: pointer;
}

#filler-contact button:hover {
  background: #e6af2e;
  color: #191716;
}

@media screen and (min-width: 776px) {
  #filler-contact {
      background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #filler-contact h1 {
    font-size: 30px;
    
  }
}

@media screen and (min-width: 976px) {
  #filler-contact {
    justify-content: space-around;
  }
}

/*#################### SPECIALTIES SECTION ###################*/

#specialties {
  padding: 40px 0 60px 0;
  background: url(images/specialties-background.jpg)
    left/cover no-repeat;
}

#specialties .title-text h1 {
  color: #e0e2db;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 20px;
  
}
#specialties .title-underline {
  margin-bottom: 50px;
  border: 3px solid #e0e2db;
}
.specialties-container {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 90vw;
  padding: 0 40px;
}
.specialties-item {
  min-height: 50vh;
  text-align: center;
  position: relative;
  transition: transform 2s ease,
    border-radius 1s ease;
  margin-bottom: 20px;
}

.specialties-1 {
  background: url(images/specialties-1.jpg)
    center/cover no-repeat;
}
.over {
  width: 100%;
  height: 100%;

  transition: background 2s ease;
}
.specialties-item:hover .over {
  background: rgba(0, 0, 0, 0.8);
}

.specialties-1 h1 {
  color: #191716;
}
.specialties-2 {
  background: url(images/specialties-2.jpg)
    center/cover no-repeat;
}
.specialties-3 {
  background: url(images/specialties-3.jpg)
    center/cover no-repeat;
}
.specialties-4 {
  background: url(images/specialties-4.jpg)
    center/cover no-repeat;
}
.specialties-5 {
  background: url(images/specialties-5.jpg)
    center/cover no-repeat;
}
.specialties-6 {
  background: url(images/specialties-6.jpg)
    center/cover no-repeat;
}
.specialties-7 {
  background: url(images/specialties-7.jpg)
    center/cover no-repeat;
}
.specialties-8 {
  background: url(images/specialties-8.jpg)
    center/cover no-repeat;
}
.specialties-9 {
  background: url(images/specialties-9.jpg)
    center/cover no-repeat;
}

.specialties-front-text h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 1;
  transition: opacity 2s;
  color: #efefef;
  font-size: 30px;
  font-weight: 900;
}

.specialties-back-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 2s;
  color: #e6af2e;
}

.specialties-item:hover {
  cursor: pointer;
  caret-color: #e6af2e;
}

.specialties-item:hover h1 {
  opacity: 0;
}
.specialties-item:hover .specialties-back-text {
  opacity: 1;
}
@media screen and (max-width: 1700px) {
  .specialties-item {
    min-height: 40vh;
  }
}
@media screen and (max-width: 1200px) {
  .specialties-item {
    min-height: 30vh;
  }
}
@media screen and (max-width: 776px) {
  .specialties-item {
    min-height: 30vh;
  }
  .specialties-front-text h1 {
    
    font-size: 20px;
    
  }
  #specialties .title-text h1 {
    font-size: 25px;
  }
  .specialties-back-text h2{
    font-size: 20px;
    color: #d1d3d1;
  }
  .specialties-back-text p{
    font-size: 18px;
  }
}
@media screen and (min-width: 776px) {
  .specialties-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3em;
    grid-row-gap: 2em;
  }
}

/*FILLER WELCOME*/

#filler-welcome {
  min-height: 30vh;
  background: linear-gradient(
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    ),
    url(images/welcome.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.h1-welcome {
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: absolute;
}
.h1-welcome:before {
  content: "Radujemo\a0 se\a0 vašem\a0 dolasku";
  color: #ffa500;
  overflow: hidden;
  position: absolute;
  width: 0;
  transition: 1s;
}
@media screen and (max-width: 1100px) {
  .h1-welcome {
    font-size: 5vw;
  }
}
@media screen and (max-width: 800px) {
  #filler-welcome {
    min-height: 20vh;
  background-attachment: scroll;
  }
  
}
/*#################### CONTACT SECTION ###################*/
#contact-section {
  min-height: 80vh;
  background:url('images/contact-background.jpg');
  border-top: 1px solid #e6af2e;
  display: flex;
  flex-direction: column;
}

#contact-section .title h1 {
  color: #e2a109;
}

#contact-section .contact-container {
  position: relative;
  display: flex;
  flex-direction: row;
  
}
.contact-map {
  height: 60vh;
  width: 80%;
  

}
.contact-map iframe {
  width: 100%;
  height: 100%;
  
}

.contact-info {
  background: transparent;
  height: 60vh;
  font-size: 20px;
  padding: 0px 30px 20px 30px;
  color: #f7bb30;
  
  
}

#contact-section .contact-info h2 {
  font-family: "Big Shoulders Inline Display Black";
  color: #ffa500;
  font-size: 50px;
}
#contact-section .contact-info h3 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #ffa500;
  font-size: 30px;
  text-align: center;
  text-decoration: underline;
}
#contact-section .contact-info p {
  line-height: 2;
}
.contact-p-2 {
  color: #ffecbf;
}
#contact-section hr {
  height: 1px;
  background-color: #ffa500;
  border: none;
}

@media screen and (max-width: 800px) {
  #contact-section {
    min-height: auto;
  }
  #contact-section .contact-container {
    flex-direction: column;
  }
  .contact-map {
    width: 100%;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .contact-info h2 {
    display: flex;
    align-self: center;
    padding-top: 20px;
  }
  .contact-small-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .contact-p-1 {
    display: flex;
  }
  .contact-p-2 {
    display: flex;
  }

  .contact-info hr {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .contact-map {
    height: 50vh;
  }
}
@media screen and (max-width: 450px) {
  .contact-map {
    height: 50vh;
  }
  .contact-small-row {
    flex-direction: column;
    align-items: center;
  }
  .contact-info hr {
    display: flex;
    height: 2px;
    width: 70%;
    background-color: #ffa500;
    border: none;
  }
  #contact-section .contact-info h2 {
  
  font-size: 45px;
}
}
/*#################### FOOTER SECTION ###################*/

#footer-section {
  min-height: 10vh;
  background: #171717;
  background: url('images/contact-background.jpg');
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 9px solid #191716;
  
}

.footer-left {
  height: 100%;
  padding: 20px 0px 20px 30px;
  display: flex;
  flex-direction: column;
}
.footer-logo h2 {
  color: #ffa500;
  font-size: 30px;
  font-family: "Big Shoulders Inline Display Black";
}

.footer-networks {
  padding: 20px 0px;
  display: flex;
  justify-content: space-around;
  font-size: 30px;
  color: #d1d3d1;
}
.footer-networks .fa-facebook {
  transition: transform 1s;
}
.footer-networks .fa-facebook:hover {
  color: #4267b2;
  transform: scale(1.5);
  transition: transform 1s;
  cursor: pointer;
}
.footer-networks .fa-google {
  transition: transform 1s;
}
.footer-networks .fa-google:hover {
  color: #ea4335;
  transform: scale(1.5);
  transition: transform 1s;
  cursor: pointer;
}
.footer-networks .fa-instagram {
  transition: font-size 1s;
}
.footer-networks .fa-instagram:hover {
  color: #e1306c;
  transform: scale(1.5);
  transition: transform 1s;
  cursor: pointer;
}

.footer-networks .fa-youtube {
  transition: font-size 1s;
}
.footer-networks .fa-youtube:hover {
  color: #ff0000;
  transform: scale(1.5);
  transition: transform 1s;
  cursor: pointer;
}
.footer-logo h2 {
  font-size: 35px;
}
.footer-middle {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  padding: 20px;
  color: white;
  
}

.footer-middle span {
  color: #e2a109;
}
.footer-middle-2{
  text-align: center;
}
.fa-copyright {
  color: white;
  
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px 13px;
  margin-right: 50px;
  background: #fdcc5a;
  font-size: 12px;
  border: 4px solid #58503e;
  transition: background 1s, color 1s, border 1s;
}
.footer-right:hover {
  cursor: pointer;
  border: 4px solid #e2a109;
  background: #171717;
  color: #d1d3d1;
  transition: background 1s, color 1s, border 1s;
}
.fa-arrow-up {
  font-size: 20px;
}

@media screen and (max-width: 550px) {
  #footer-section {
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 0;
  }
  .footer-left {
    margin-bottom: 80px;
    align-self: flex-start;
  }
  .footer-middle {
    position: absolute;
    bottom: 20px;
    align-self: center;
    
  }
  .footer-right {
    position: absolute;
    right: 0px;
    margin-right: 20px;
    top: 50px;
    padding: 2px 10px 0px 10px;
  }
}
