html {
  scroll-behavior: smooth;
}

body {
  font-family: "Messina Sans";
  color: #333333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

.container {
  margin: auto;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 20px;
  font-family: "Messina Sans";
  font-weight: 300;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archeron Pro", sans-serif;
}

h4 {
  font-weight: 400;
  font-size: 26px;
}

.contact_details {
  position: fixed;
  top: 8vh;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.contact_details .flex_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact_details .flex_wrap a {
  color: #ffffff;
  position: relative;
  font-size: 13px;
  transition: 0.6s;
  font-weight: 300;
}
.contact_details .flex_wrap a::after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.6s;
  background-color: #ffffff;
}
.contact_details .flex_wrap a:hover::after {
  background-color: rgba(255, 255, 255, 0.6117647059);
  width: 90%;
  left: 5%;
}
@media screen and (max-width: 480px) {
  .contact_details {
    bottom: 8vh;
    top: auto;
  }
}
@media screen and (max-width: 380px) {
  .contact_details .flex_wrap {
    justify-content: space-around;
    gap: 10px;
  }
}

.parallax_container {
  position: relative;
  height: 140vh;
  width: 100%;
  overflow: hidden;
}

/* Make the Swiper act like a background layer */
.banner_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%; /* Taller for the "move up" effect */
  z-index: 0;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.418); /* Darkens the image for readability */
  z-index: 1;
}

.main_text {
  position: absolute; /* Changed from relative */
  top: 32%; /* Distance from the top of the container */
  left: 50%;
  transform: translate(-50%, -32%); /* Keeps it perfectly centered horizontally */
  z-index: 2;
  color: white;
  text-align: center;
  width: 90%;
}
.main_text h1 {
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 1;
  margin-bottom: 0;
  text-shadow: 1px 5px 5px rgba(38, 0, 9, 0.56);
}
.main_text span {
  font-size: clamp(3.2rem, 8vw, 3.8rem);
  font-family: "Messina Sans";
  text-shadow: 3px 7px 6px rgba(38, 0, 9, 0.56);
}/*# sourceMappingURL=style.css.map */