/* CSS Components */
@import url('../components/button/shared.css');
@import url('../components/button/responsive.css');
@import url('../components/carousel/shared.css');
@import url('../components/carousel/responsive.css');


/* CSS Pages */
@import url('../css/cardapio/desktop.css');
@import url('../css/cardapio/mobile.css');
@import url('../css/contato/desktop.css');
@import url('../css/contato/mobile.css');
@import url('../css/historia/shared.css');
@import url('../css/historia/responsive.css');
@import url('../css/localizacao/desktop.css');
@import url('../css/localizacao/mobile.css');
@import url('../css/restaurante/desktop.css');
@import url('../css/restaurante/mobile.css');


/* Fonts */
@font-face {
  font-family: 'SantaCatalina';
  src: url('../assets/fonts/SantaCatalina.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* CSS Commons */

.gallery-section {
  text-align: center;
  padding-bottom: 100px;
}

.gallery-section h2 {
  font-family: 'SantaCatalina';
  font-size: 60px;
  color: #3f291b;
  margin-bottom: 65px;
}

.gallery-section .gallery-credits-2 {
  font-family: 'SantaCatalina';
  font-size: 25px;
  color: #3f291b;
}

.gallery-section .gallery-credits-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #3f291b;
}

@media (max-width: 768px) {
  .gallery-section .gallery-credits-2 {
    font-family: 'SantaCatalina';
    font-size: 20px;
    color: #3f291b;
  }
  
  .gallery-section .gallery-credits-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #3f291b;
  }
}

[data-animation] {
  opacity: 0;
  transform: translateY(50px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(150px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-250px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInDown {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInDown 1.5s ease-out forwards;
}

[data-animation] {
  opacity: 0;
  transform: translateX(0);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInLeft 1.5s ease-out forwards;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  opacity: 1;
  transform: translateX(0);
  animation: fadeInRight 1.5s ease-out forwards;
}

