/*
Theme Name: Your Theme Name
*/

/*--------------------------------------------------------------
Coming Soon Page
--------------------------------------------------------------*/

html,
body {
  margin: 0;
  min-height: 100%;
}

body.coming-soon-page {
  margin: 0;
  overflow-x: hidden;
  background-color: #e9e2d4;
}

.coming-soon {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: #e9e2d4;
}

.coming-soon__video {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/*
 * Lightens the video so the text remains readable.
 * Adjust the opacity if your video is lighter or darker.
 */
.coming-soon__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: rgba(242, 236, 224, 0.3);
}

.coming-soon__container {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;
  min-height: 100svh;

  padding-top: 60px;
  padding-bottom: 60px;
}

.coming-soon__content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #1a3761;
}

.coming-soon__logo {
  display: block;
  width: min(100%, 330px);
  height: auto;
  margin: 0 auto 26px;
}

.coming-soon__title {
  margin: 0 0 12px;

  color: #1a3761;
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(42px, 5.2vw, 61px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.22px;
}

.coming-soon__contact {
  color: #1a3761;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.08px;
}

.coming-soon__contact p {
  margin: 0;
}

.coming-soon__contact p + p {
  margin-top: 2px;
}

.coming-soon__contact a {
  color: #1a3761;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.coming-soon__contact a:hover,
.coming-soon__contact a:focus-visible {
  color: #c98b27;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coming-soon__contact a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.coming-soon__separator {
  display: inline-block;
  margin: 0 4px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .coming-soon__content {
    max-width: 650px;
  }

  .coming-soon__logo {
    width: min(100%, 290px);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .coming-soon__container {
    padding: 40px 24px;
  }

  .coming-soon__content {
    max-width: 520px;
  }

  .coming-soon__logo {
    width: min(100%, 250px);
    margin-bottom: 24px;
  }

  .coming-soon__title {
    margin-bottom: 16px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1.05;
  }

  .coming-soon__contact {
    font-size: 15px;
    line-height: 1.6;
  }

  .coming-soon__contact p:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .coming-soon__separator {
    margin: 0;
  }
}

/* Small phones */
@media (max-width: 399.98px) {
  .coming-soon__container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .coming-soon__logo {
    width: min(100%, 220px);
  }

  .coming-soon__title {
    font-size: 38px;
  }

  .coming-soon__contact {
    font-size: 14px;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .coming-soon__video {
    display: none;
  }

  .coming-soon {
    background: linear-gradient(
        rgba(242, 236, 224, 0.3),
        rgba(242, 236, 224, 0.3)
      ),
      #e9e2d4;
  }

  .coming-soon__contact a {
    transition: none;
  }
}
