/* oswald-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/oswald-v57-latin-600.woff2") format("woff2");
}
/* prata-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/prata-v22-latin-regular.woff2") format("woff2");
}
/* arimo-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/arimo-v35-latin-regular.woff2") format("woff2");
}
/* arimo-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: italic;
  font-weight: 400;
  src: url("../assets/fonts/arimo-v35-latin-italic.woff2") format("woff2");
}
/* arimo-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/arimo-v35-latin-600.woff2") format("woff2");
}
/* arimo-600italic - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: italic;
  font-weight: 600;
  src: url("../assets/fonts/arimo-v35-latin-600italic.woff2") format("woff2");
}
body {
  margin: 0;
  overflow-x: hidden;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Arimo", sans-serif;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 50px;
}
@media (max-width: 650px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 650px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-family: "Prata", serif;
  font-size: 30px;
}
@media (max-width: 650px) {
  h3 {
    font-size: 25px;
  }
}

p {
  font-size: 25px;
}
@media (max-width: 650px) {
  p {
    font-size: 20px;
  }
}

h1, h2, h3, h4, p {
  cursor: default;
}

header {
  background-color: #f5f1e6;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1147px) {
  header {
    height: 60px;
    padding: 0 15px;
  }
}
header .top {
  display: flex;
  align-items: center;
}
@media (max-width: 1147px) {
  header .top {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
header .logo img {
  height: 110px;
  width: auto;
  display: block;
}
@media (max-width: 1147px) {
  header .logo img {
    height: 40px;
  }
}
header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1147px) {
  header .burger {
    display: block;
  }
}
header .burger span {
  margin: 0.2rem 0;
  display: block;
  height: 3px;
  width: 100%;
  background: #3e3e3e;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
header .burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .burger.open span:nth-child(2) {
  opacity: 0;
}
header .burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
header .inside {
  display: flex;
  gap: 25px;
}
@media (max-width: 1147px) {
  header .inside {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f5f1e6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    align-items: center;
    padding: 0;
  }
  header .inside.open {
    max-height: 300px;
    padding: 20px 0;
  }
}
header .inside__link {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #3e3e3e;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
header .inside__link:hover {
  color: #7d9c8b;
}
header .outside {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1147px) {
  header .outside {
    display: none;
  }
}
header .outside__link {
  color: #3e3e3e;
  font-size: 1.7rem;
  text-decoration: none;
  transition: color 0.3s;
}
header .outside__link:hover {
  color: #7d9c8b;
}
header .outside__link[href^=tel] {
  background-color: #e3c16f;
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
header .outside__link[href^=tel]:hover {
  background-color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
}

.btn {
  font-family: "Oswald", sans-serif;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn--secondary {
  background-color: transparent;
  border: 2px solid #7d9c8b;
  color: #f5f1e6;
}
.btn--secondary:hover {
  background-color: #7d9c8b;
}
.btn--tertiary {
  background-color: #e3c16f;
  color: #3e3e3e;
}
.btn--tertiary:hover {
  background-color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: translateY(-3px);
}

footer {
  background-color: #3e3e3e;
  color: #f5f1e6;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 40px 20px;
  }
}
footer .start {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  footer .start {
    order: 1;
    align-items: center;
    padding-left: 0;
  }
}
footer .start a {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #e3c16f;
  transition: all 0.3s ease;
}
footer .start a:hover {
  color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: scale(1.1);
}
footer .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  footer .center {
    order: 3;
  }
}
footer .center a {
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  color: #e3c16f;
  transition: all 0.3s ease;
}
footer .center a:hover {
  color: rgb(235.3023255814, 211.3837209302, 153.6976744186);
}
footer .end {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  footer .end {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }
}
footer .end a {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #e3c16f;
  font-size: 30px;
  transition: all 0.3s ease;
}
footer .end a:hover {
  color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: translateY(-3px);
}
footer .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
footer .modal__content {
  position: relative;
  background-color: #f5f1e6;
  color: #3e3e3e;
  padding: 40px;
  border-radius: 50px;
  width: 95%;
  max-width: 600px;
}
@media (max-width: 768px) {
  footer .modal__content {
    padding: 20px;
    width: auto;
  }
}
footer .modal__content--close {
  position: absolute;
  right: 40px;
  top: 20px;
  background: none;
  background-color: transparent;
  border: none;
  color: #3e3e3e;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
footer .modal__content--close:hover {
  color: #717171;
}
footer .modal__content--body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
footer .modal__content--body h3 {
  margin-top: 40px;
}
footer .modal__content--body button {
  background: #e3c16f;
  border: none;
  cursor: pointer;
  color: #3e3e3e;
  margin: 10px;
  transition: all 0.3s ease;
}
footer .modal__content--body button:hover {
  background: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: scale(1.05);
}
footer .modal__content--body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
footer .modal__content--body label {
  font-weight: bold;
  margin-bottom: -15px;
  font-size: 0.9rem;
}
footer .modal__content--body input[type=text] {
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: rgb(237.7142857143, 230.8, 211.7857142857);
  color: #3e3e3e;
  outline: none;
  transition: border-color 0.3s ease;
}
footer .modal__content--body input[type=text]:focus {
  border-color: #e3c16f;
}
footer .modal__content--body input[type=file], footer .modal__content--body select {
  padding: 10px;
  background: rgba(62, 62, 62, 0.05);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
}
footer .modal__content--body input[type=file]::file-selector-button, footer .modal__content--body select::file-selector-button {
  background: #e3c16f;
  color: #3e3e3e;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}
footer .modal__content--body input[type=file]::file-selector-button:hover, footer .modal__content--body select::file-selector-button:hover {
  background: rgb(218.6976744186, 174.6162790698, 68.3023255814);
}
footer .modal.open {
  display: flex;
}

#adminTrigger {
  text-decoration: none;
  color: #fff;
  cursor: default;
}

.gallery {
  padding: clamp(3rem, 8vw, 6rem) 20px;
  margin: 0 auto;
}
.gallery__title {
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 2rem;
}
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery__filters--btn, .gallery__filters--btn-add {
  padding: 10px 25px;
  border: 2px solid rgb(88.4082969432, 116.0917030568, 100.9104803493);
  background: transparent;
  color: #3e3e3e;
  font-family: "Oswald", sans-serif;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery__filters--btn.active, .gallery__filters--btn:hover, .gallery__filters--btn-add.active, .gallery__filters--btn-add:hover {
  background-color: rgb(88.4082969432, 116.0917030568, 100.9104803493);
  color: #fff;
}
.gallery__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}
.gallery__grid--item {
  position: relative;
  height: 300px;
  flex: 0 1 350px;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .gallery__grid--item {
    min-width: 140px;
    flex: 1 1 140px;
    height: 160px;
  }
}
.gallery__grid--item.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  position: relative;
}
.gallery__grid--item.hidden {
  flex: 0 0 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
  pointer-events: none;
}
.gallery__grid--item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__grid--item:hover:not(.hidden) {
  transform: scale(1.1);
  z-index: 10;
}
.gallery__grid--overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(transparent, rgba(62, 62, 62, 0.9));
  display: flex;
  align-items: center;
  padding-left: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .gallery__grid--overlay {
    opacity: 1 !important;
    background: linear-gradient(transparent, rgba(62, 62, 62, 0.7));
    height: 150px;
  }
}
.gallery__grid--overlay span {
  color: #f5f1e6;
  font-family: "Prata", serif;
  font-size: 1.3rem;
  padding: 10px 20px;
  border-bottom: 2px solid #e3c16f;
  position: absolute;
  bottom: 20px;
}
@media (max-width: 768px) {
  .gallery__grid--overlay span {
    font-size: 1rem;
    bottom: 20px;
  }
}
.gallery__grid--item:hover .gallery__grid--overlay {
  opacity: 1;
}

.admin-tools {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  z-index: 10;
}
@media (max-width: 768px) {
  .admin-tools {
    top: 5px;
    left: 5px;
    right: 5px;
  }
}
.admin-tools button {
  background: #e3c16f;
  color: #3e3e3e;
  border: none;
  border-radius: 5px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .admin-tools button {
    padding: 5px;
  }
}
.admin-tools button:hover {
  color: rgb(87.5, 87.5, 87.5);
  transform: scale(1.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox--active {
  display: flex;
}
.lightbox__image {
  max-width: 90%;
  max-height: 80vh;
  border: 3px solid #f5f1e6;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}
.lightbox__close:hover {
  color: #7d9c8b;
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 20px;
  cursor: pointer;
  font-size: 2rem;
}
.lightbox__prev:hover, .lightbox__next:hover {
  background: #7d9c8b;
}
.lightbox__prev {
  left: 20px;
}
.lightbox__next {
  right: 20px;
}/*# sourceMappingURL=gallery.css.map */