* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100dvw;
  height: 100dvh;
  height: -webkit-fill-available;
}

.page-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("../assets/SVG-Assets/Mercat-Cross-7b-FINAL.jpg"); */
  background-image: url("https://res.cloudinary.com/dyrwl8j9r/image/upload/v1750781641/king_james/Mercat-Cross-7b-FINAL.jpg");
  background-size: cover;
  background-position: bottom;
  z-index: 0;
}

.banner-container {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 80%;
  height: 20%;
  max-width: 600px;
  display: flex;
}

/* TOP Banner */
.top-banner {
  text-align: center;
  background-image: url("../assets/SVG-Shapes/Shape-001_2.svg");
  background-attachment: fixed;
  /* background-size: 100% 100%; */
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 2;
  width: 100%;
  height: 80%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  /* max-width: 600px; */
}

.title_container {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  color: #2c3a15;
}
.step_into_history {
  font-weight: 500 !important;
}

.with_container {
  display: flex;
  flex-direction: row;
}

.horizontal_line {
  width: 25%;
  height: 1px;
  margin: auto;
  background-color: #2c3a15;
}
.king_james {
  font-weight: 700 !important;
  font-size: 1.5rem;
}

.top-banner h1 {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 1.6rem;
  line-height: 1.4;
  color: #2c3a15;
}

/* Text Box */
.text-box {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(245, 245, 220, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 600px;
  width: 80%;
  z-index: 2;
  font-size: 1.1rem;
  color: #2c2c2c;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Bottom Banner */
.bottom-banner {
  align-items: center;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.75rem 2rem;
  text-align: center;
  background-image: url("../assets/SVG-Shapes/Shape-002.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  width: 80%;
  /* height: 25%; */
  max-width: 400px;
}

.bottom-banner P {
  font-size: 1.2rem;
  color: #e0cda4;
}

/* King image */
.king-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: 450px;
}

.king-image img {
  width: 100%;
  height: auto;
}
.cta {
  width: 50%;
  max-width: 400px;
  height: 3rem;
  margin: auto;
  background-color: #e4d2a7;
  opacity: 1;
  border-style: solid;
  border-radius: 1.5rem;
  border-width: 3px;
  border-color: #2c3a15;
  font-size: 1.5rem;
  position: absolute;
  bottom: 10%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, 0);
  color: #2c3a15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta p {
  margin: auto;
  text-align: center;
  font-weight: 700;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .top-banner h1 {
    font-size: 1.2rem;
  }

  .text-box {
    font-size: 1rem;
    padding: 1rem;
  }

  .bottom-banner h2 {
    font-size: 1rem;
  }
}

/* Landscape orientation */
@media screen and (orientation: landscape) {
  .king-image {
    display: none;
  }
}
