/*
 * UnderConstructionPage
 * Coming Soon theme CSS
 * (c) WebFactory Ltd, 2015 - 2025
 */

html {
   height: 100%;
   padding: 0;
   margin: 0;
}

body {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  background: rgba(0, 59, 116, 0.8);
  padding: 0;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero-image {
  text-align: center;
  margin: 0 auto 20px auto;
  padding-top: 60px;
}

#hero-image img {
  max-width: 240px;
  height: auto;
  opacity: 0.95;
}

h1 {
  font-size: 60px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 20px 0 30px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}

#countdown-wrapper {
  text-align: center;
  margin: 20px 0 30px 0;
}

#countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.countdown-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 12px;
  min-width: 80px;
}

.countdown-value {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 72px;
  color: #ffffff;
  line-height: 1;
}

.countdown-label {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.countdown-separator {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  padding-bottom: 28px;
}

#countdown-finished {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}

.content {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

#social {
  text-align: center;
  margin-top: 30px;
}

#social a i {
  color: rgba(255, 255, 255, 0.85);
  margin: 10px;
  box-sizing: content-box;
  transition: color 0.2s ease;
}

#social a:hover i {
  color: #ffffff;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    letter-spacing: 2px;
    margin: 15px 0 20px 0;
  }

  .countdown-value {
    font-size: 42px;
  }

  .countdown-separator {
    font-size: 32px;
    padding-bottom: 18px;
  }

  .countdown-item {
    margin: 0 6px;
    min-width: 50px;
  }

  .countdown-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .countdown-separator {
    font-size: 22px;
    padding-bottom: 14px;
  }

  .countdown-item {
    margin: 0 3px;
    min-width: 40px;
  }

  .countdown-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  #hero-image img {
    max-width: 120px;
  }
}
