/*
Theme Name: KIVO Coming Soon
Theme URI: https://kivovaluers.gr
Author: KIVO Valuers
Description: Coming soon landing page for KIVO Valuers.
Version: 1.0.0
Text Domain: kivo-coming-soon
*/

:root {
  --bg: #ecece9;
  --ink: #112022;
  --muted: #5c5c5c;
  --orange: #e88855;
  --teal: #0a6b66;
  --content-max: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.coming-soon {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.coming-soon__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem clamp(1.75rem, 4vw, 2.5rem);
  background: var(--bg);
}

.coming-soon__logo {
  display: block;
  width: min(191px, 48vw);
  height: auto;
  margin: 0 auto 2.75rem;
}

.coming-soon__title {
  margin: 0 0 0.85rem;
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--orange);
  text-transform: uppercase;
}

.coming-soon__subtitle {
  margin: 0 0 2.75rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.coming-soon__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  width: 100%;
  max-width: var(--content-max);
}

.coming-soon__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.coming-soon__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.coming-soon__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.coming-soon__socials a {
  display: block;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.coming-soon__socials a:hover,
.coming-soon__socials a:focus-visible {
  opacity: 0.75;
  transform: translateY(-1px);
}

.coming-soon__socials img {
  width: 36px;
  height: 36px;
  display: block;
}

.coming-soon__phone {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.55rem, 4.5vw, 1.85rem);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.1;
  transition: opacity 0.2s ease;
}

.coming-soon__phone:hover,
.coming-soon__phone:focus-visible {
  opacity: 0.8;
}

.coming-soon__visual {
  flex: 0 0 auto;
  width: 100%;
  height: clamp(11rem, 32vh, 18rem);
  background-color: #061a16;
  background-image: url("assets/bottom-section.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .coming-soon__logo {
    width: 191px;
    margin-bottom: 3.25rem;
  }

  .coming-soon__subtitle {
    margin-bottom: 3.25rem;
  }

  .coming-soon__contact {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3.5rem;
  }

  .coming-soon__block {
    align-items: flex-start;
    text-align: left;
    min-width: 11rem;
  }

  .coming-soon__block--phone {
    padding-top: 0;
  }

  .coming-soon__socials img {
    width: 40px;
    height: 40px;
  }

  .coming-soon__visual {
    height: clamp(14rem, 38vh, 22rem);
  }
}

@media (min-width: 1200px) {
  .coming-soon__visual {
    height: min(38vh, 26rem);
  }
}

@media (max-height: 700px) and (min-width: 768px) {
  .coming-soon__content {
    padding-top: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .coming-soon__logo {
    margin-bottom: 1.75rem;
  }

  .coming-soon__subtitle {
    margin-bottom: 1.75rem;
  }

  .coming-soon__visual {
    height: 28vh;
  }
}
