/* ==========================================================================
   House of Cedrar — Coming Soon
   ========================================================================== */

@font-face {
  font-family: "Quagera";
  src: url("../fonts/quageraregular-jebd9.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Smeltex";
  src: url("../fonts/Smeltex-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Smeltex";
  src: url("../fonts/Smeltex-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --color-primary: #232d3e;
  --color-white: #ffffff;
  --color-accent: #a68d5c;
  --font-heading: "Quagera", Georgia, "Times New Roman", serif;
  --font-emphasis: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Smeltex", system-ui, -apple-system, sans-serif;
  --body-size: 0.9375rem;
  --btn-size: 0.875rem;
  --footer-size: 0.875rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: url("../images/bg-img.jpg") center / cover no-repeat;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.coming-soon {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vh, 4rem);
}

.coming-soon__container {
  max-width: 1200px;
}

.coming-soon__content {
  max-width: 52rem;
}

/* --------------------------------------------------------------------------
   Logo
   -------------------------------------------------------------------------- */

.coming-soon__logo {
  width: min(291px, 72vw);
  height: auto;
  margin-bottom: clamp(1.75rem, 4vh, 2.75rem);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.coming-soon__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.4375rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.coming-soon__headline em {
  font-family: var(--font-emphasis);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.8vw, 3.2375rem);
}

.coming-soon__body {
  font-size: var(--body-size);
  line-height: 1.35;
  max-width: 26rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vh, 3rem);
}

.coming-soon__body p {
  margin-bottom: 0.8rem;
}

.coming-soon__body p + p {
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.coming-soon__actions {
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.btn-coming-soon {
  --bs-btn-padding-x: 1.75rem;
  --bs-btn-padding-y: 0.875rem;
  --bs-btn-font-family: var(--font-body);
  --bs-btn-font-size: var(--btn-size);
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.2;
  --bs-btn-color: var(--color-primary);
  --bs-btn-bg: var(--color-white);
  --bs-btn-border-color: var(--color-white);
  --bs-btn-hover-color: var(--color-primary);
  --bs-btn-hover-bg: #A68D5C;
  --bs-btn-active-color: var(--color-primary);
  --bs-btn-active-bg: #A68D5C;
  --bs-btn-active-border-color: #A68D5C;
  --bs-btn-focus-shadow-rgb: 35, 45, 62;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 11.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 0;
  box-shadow:
    0 4px 24px rgba(255, 255, 255, 0.35),
    0 1px 3px rgba(35, 45, 62, 0.08);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn-coming-soon:hover,
.btn-coming-soon:focus-visible {
  box-shadow:
    0 6px 28px rgba(255, 255, 255, 0.45),
    0 2px 6px rgba(35, 45, 62, 0.1);
  transform: translateY(-1px);
}

.btn-coming-soon__icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer links
   -------------------------------------------------------------------------- */

.coming-soon__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: var(--footer-size);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.coming-soon__link:hover,
.coming-soon__link:focus-visible {
  color: var(--color-primary);
  opacity: 0.75;
}

.coming-soon__link-icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Tablet & Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  .coming-soon__body p + p {
    margin-top: 0.125rem;
  }
}

@media (min-width: 1200px) {

}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

@media (max-width: 575.98px) {
  .btn-coming-soon {
    min-width: calc(50% - 0.75rem);
    flex: 1 1 calc(50% - 0.75rem);
    --bs-btn-padding-x: 0.75rem;
    letter-spacing: 0.12em;
  }

  .coming-soon__logo {
    width: min(227px, 65vw);
  }


  .coming-soon__actions {
    gap: 1.5rem !important;
  }

  .coming-soon__footer .gap-4 {
    gap: 3rem !important;
  }
}
