/* Coming Soon Specific Styles - COMPACT VERSION */
body {
  padding-top: 0;
  overflow: hidden;
  margin: 0;
  height: 100vh;
}

.coming-soon-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5a5a5a 0%, #404040 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 135, 50, 0.15), transparent);
  animation: float-circle 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
  width: 250px;
  height: 250px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.bg-circle:nth-child(2) {
  width: 180px;
  height: 180px;
  top: 55%;
  right: 10%;
  animation-delay: -5s;
}

.bg-circle:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 15%;
  animation-delay: -10s;
}

@keyframes float-circle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.05);
    opacity: 0.5;
  }
}

/* Content Container - COMPACT */
.coming-soon-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* Logo - SMALLER */
.coming-soon-logo {
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

.coming-soon-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

/* Main Title - COMPACT */
.coming-soon-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.coming-soon-title .highlight {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle - SMALLER */
.coming-soon-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.5;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Countdown Timer - COMPACT */
.countdown-timer {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  min-width: 85px;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(246, 135, 50, 0.3);
}

.countdown-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Newsletter Form - COMPACT */
.coming-soon-form {
  display: flex;
  gap: 0.5rem;
  max-width: 450px;
  margin: 0 auto 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.coming-soon-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 0.9rem;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.coming-soon-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.coming-soon-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(246, 135, 50, 0.2);
}

.coming-soon-form button {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: var(--color-white);
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(246, 135, 50, 0.3);
}

.coming-soon-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 135, 50, 0.4);
}

/* Social Links - COMPACT */
.coming-soon-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 1s backwards;
}

.coming-soon-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--color-white);
}

.coming-soon-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(246, 135, 50, 0.4);
}

.coming-soon-social svg {
  width: 20px;
  height: 20px;
}

/* Back to Home Link - COMPACT */
.back-home {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  animation: fadeIn 1s ease-out 1.2s backwards;
}

.back-home a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-home a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 0.9rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.6rem 0.75rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  .coming-soon-logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .coming-soon-content {
    padding: 1rem;
  }

  .coming-soon-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .coming-soon-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .countdown-timer {
    gap: 0.4rem;
  }

  .countdown-item {
    min-width: 60px;
    padding: 0.5rem 0.6rem;
  }

  .countdown-number {
    font-size: 1.75rem;
  }

  .countdown-label {
    font-size: 0.6rem;
  }

  .coming-soon-form {
    flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .coming-soon-form input,
  .coming-soon-form button {
    width: 100%;
  }

  .back-home {
    top: 0.75rem;
    left: 0.75rem;
  }

  .back-home a {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }

  .coming-soon-logo img {
    height: 35px;
  }
}

/* Extra small screens */
@media (max-height: 600px) {
  .coming-soon-content {
    padding: 0.75rem;
  }

  .coming-soon-logo {
    margin-bottom: 0.75rem;
  }

  .coming-soon-logo img {
    height: 35px;
  }

  .coming-soon-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .coming-soon-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .countdown-timer {
    margin-bottom: 1rem;
  }

  .countdown-item {
    padding: 0.5rem 0.6rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .coming-soon-form {
    margin-bottom: 1rem;
  }

  .coming-soon-social a {
    width: 35px;
    height: 35px;
  }

  .coming-soon-social svg {
    width: 18px;
    height: 18px;
  }
}

/* Light Theme Support */
@media (prefers-color-scheme: light) {
  .coming-soon-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  }

  .coming-soon-title {
    color: var(--color-gray-800);
  }

  .coming-soon-subtitle {
    color: var(--color-gray-700);
  }

  .countdown-item {
    background: rgba(246, 135, 50, 0.05);
    border-color: rgba(246, 135, 50, 0.2);
  }

  .coming-soon-form input {
    background: rgba(246, 135, 50, 0.05);
    border-color: var(--color-gray-300);
    color: var(--color-gray-800);
  }

  .coming-soon-form input::placeholder {
    color: var(--color-gray-500);
  }

  .coming-soon-social a,
  .back-home a {
    background: rgba(246, 135, 50, 0.05);
    border-color: rgba(246, 135, 50, 0.2);
    color: var(--color-gray-800);
  }
}
