/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");

/* General Styles */
body {
  background-image: url("./assets/neo-digital-native-jc-8FUm31yd05g-unsplash.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: "Raleway", sans-serif;
  padding: 20px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  font-size: 85px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap; /* Ensures all circles are in a single row */
}

/* Circle Container */
.circle-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.circle-svg {
  width: 120px;
  height: 120px;
}

.circle-container .background,
.circle-container .progress {
  fill: none;
  stroke-width: 8;
}

.circle-container .background {
  stroke: #444;
}

.circle-container .progress {
  stroke: #1abc9c;
  stroke-linecap: round;
  stroke-dasharray: 314; /* 2 * Math.PI * 50 */
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 0.35s linear;
}

/* Labels */
.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.label span {
  font-size: 24px;
  font-weight: bold;
}

.label p {
  margin: 0;
  font-size: 14px;
}

/* Get Notified Button */
.get-notified {
  background-color: black;
  width: max-content;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 20px;
  margin-top: 50px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, font-size 0.3s ease;
}

.get-notified:hover {
  transform: scale(1.1);
  font-size: 22px;
}

/* Social Media Icons */
.social-media-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.icon {
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 5px;
}

.icon:hover {
  transform: scale(1.2);
  color: #1abc9c;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  body {
    background-position: center;
    padding: 20px;
  }

  .coming-soon {
    font-size: 50px;
    margin-bottom: 15px;
  }

  /* Ensure circles stack in a single row */
  .countdown-container {
    flex-wrap: wrap; /* Allows stacking */
    gap: 10px;
  }

  .circle-container {
    width: 80px;
    height: 80px;
  }

  .circle-svg {
    width: 80px;
    height: 80px;
  }

  .circle-container .background,
  .circle-container .progress {
    stroke-width: 6;
  }

  .circle-container .progress {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
  }

  .label span {
    font-size: 20px;
  }

  .label p {
    font-size: 12px;
  }

  /* Adjust Get Notified Button */
  .get-notified {
    padding: 10px 16px;
    font-size: 16px;
    margin-top: 30px;
  }

  /* Optimize Social Media Icons */
  .social-media-icons {
    gap: 12px;
  }

  .icon {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  svg {
    display: none;
  }
}
