.intro {
  font-family: "Bell MT";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.intro .logo-container {
  text-align: center;
}
.intro .logo-container .reveal-mask {
  width: 300px;
  height: auto;
  display: inline-block;
  position: relative;
}
.intro .logo-container .reveal-mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 2;
  transform: translateX(0);
  transition: transform 1.2s ease;
}
.intro .logo-container .reveal-mask.unmasked::before {
  transform: translateX(100%);
}
.intro .logo-container .logo {
  width: 300px;
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease;
}
.intro .logo-container .logo-text {
  margin-top: 0;
  padding-top: 0;
  letter-spacing: 2px;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
@media (max-width: 1000px) {
  .intro .logo-container .logo-text {
    font-size: 24px;
    font-family: Georgia, "Times New Roman", Times, serif;
  }
}

body {
  margin: 0;
}

#contact-container {
  display: flex;
  flex-direction: column;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.8s ease;
  border-radius: 15px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(0);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 40px;
  z-index: 10000;
  max-width: 90%;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 1000px) {
  #contact-container {
    padding: 38px;
  }
}
#contact-container.active {
  transform: translate(-50%, -50%) scaleY(1);
}
#contact-container > div {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
#contact-container > div p {
  line-height: 22px;
  font-size: 22px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1000px) {
  #contact-container > div p {
    line-height: 18px;
    font-size: 18px;
  }
}
#contact-container > div .font-special {
  font-size: 25px;
}
@media (max-width: 1000px) {
  #contact-container > div .font-special {
    font-size: 22px;
  }
}
#contact-container .text-special {
  font-size: 20px;
  padding-bottom: 10px;
  margin: 0px;
  font-style: italic;
  border-bottom: 1px solid white;
}
@media (max-width: 1000px) {
  #contact-container .text-special {
    font-size: 17px;
    font-family: "Times New Roman", Times, serif;
  }
}
#contact-container .link-special {
  font-size: 19px;
  margin-top: 50px;
  padding-bottom: 10px;
  color: white;
  text-decoration: underline;
  transition: color 0.3s;
  cursor: pointer;
}
#contact-container .link-special:hover {
  color: rgba(240, 240, 240, 0.5058823529);
}
@media (max-width: 1000px) {
  #contact-container .link-special {
    font-size: 17px;
  }
}
#contact-container .hover-effect {
  margin: 8px;
  cursor: pointer;
  transition: color 0.3s;
  color: white;
  text-decoration: none;
}
#contact-container .hover-effect:hover {
  color: rgba(240, 240, 240, 0.5058823529);
}
@media (max-width: 1000px) {
  #contact-container .hover-effect {
    margin-inline: 15px;
  }
}
#contact-container .font-size-mid {
  font-size: 17px;
}
@media (max-width: 1000px) {
  #contact-container .font-size-mid {
    font-size: 15px;
  }
}
#contact-container p {
  margin: 8px;
}
@media (max-width: 1000px) {
  #contact-container p {
    margin-block: 8px;
    margin-inline: 0;
  }
}

.icons {
  opacity: 0;
  transition: 0.8s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-direction: row;
  z-index: 888888888;
  position: fixed;
  top: 20px;
  right: 20px;
}
.icons a img {
  max-height: 40px;
  max-width: 40px;
}

.reveal-icons {
  opacity: 1;
}

#gallery-container {
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.img-initial,
.img-loop {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform-origin: center;
}

.img-initial {
  transform: scaleY(0);
  transition: none;
}

.img-initial.in {
  transform: scaleY(1);
  opacity: 1;
  transition: transform 0.8s;
}

.img-initial.zoom {
  transform: scale(1.15);
  transition: transform 10s ease-out;
  z-index: 0;
}

.img-loop.visible {
  opacity: 1;
  transform: scale(1.3);
  z-index: 2;
  transition: opacity 3s, transform 18s;
}

body {
  margin: 0;
  font-family: sans-serif;
}

.popup-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 88888888888888900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-overlay.active .popup-container {
  transform: scale(1);
  opacity: 1;
}
.popup-overlay .popup-container {
  position: relative;
  width: calc(100vw - 50px);
  height: calc(100vh - 50px);
  max-width: 1000px;
  max-height: 1000px;
  background: white;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.popup-overlay .popup-image {
  width: 30%;
  height: 100%;
}
.popup-overlay .popup-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.popup-overlay .popup-content {
  width: 70%;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .popup-overlay .popup-content {
    padding: 20px;
  }
}
.popup-overlay .popup-content h2 {
  margin-top: 0;
  font-size: 1.8rem;
}
@media (max-width: 1000px) {
  .popup-overlay .popup-content h2 {
    margin-top: 50px;
  }
}
.popup-overlay .popup-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.popup-overlay .popup-content form input,
.popup-overlay .popup-content form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem !important;
  resize: vertical;
}
@media (max-width: 1000px) {
  .popup-overlay .popup-content form input,
  .popup-overlay .popup-content form textarea {
    font-family: Georgia, "Times New Roman", Times, serif;
  }
}
.popup-overlay .popup-content form textarea {
  min-height: 100px;
  font: caption;
}
@media (max-width: 1000px) {
  .popup-overlay .popup-content form textarea {
    font-family: Georgia, "Times New Roman", Times, serif;
  }
}
.popup-overlay .popup-content form button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: black;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.popup-overlay .popup-content form button:hover {
  background-color: #333;
}
.popup-overlay .close-popup {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 40px;
  height: 40px;
  background: #eee;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
@media (max-width: 1000px) {
  .popup-overlay .close-popup {
    right: 20px;
  }
}
.popup-overlay .close-popup:hover {
  background: #ccc;
}
.popup-overlay .close-popup::before, .popup-overlay .close-popup::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #333;
  transform-origin: center;
}
.popup-overlay .close-popup::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup-overlay .close-popup::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#form-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

.success {
  background-color: #d4edda;
  color: #155724;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
}

.hidden {
  display: none;
}

body {
  font-family: "Garamond";
}
@media (max-width: 1000px) {
  body {
    font-family: Georgia, serif;
  }
}

@font-face {
  font-family: "Bell MT";
  src: url("/fonts/BellMT.woff2") format("woff2"), url("/fonts/BellMT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Garamond";
  src: url("/fonts/Garamond.woff2") format("woff2"), url("/fonts/Garamond.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@media (max-width: 1000px) {
  .font-times-mobile {
    font-family: "Times New Roman", Times, serif !important;
  }
}/*# sourceMappingURL=main.css.map */