* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.soon-body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(rgba(14, 14, 104, 0.7), rgba(6, 6, 76, 0.7)), url("../images/hero-background.jpg") no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



/* This controls spacing between hero, contact, and footer */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero section takes up ~70% of screen, vertically centered */
.soon-hero {
    flex: 0 0 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.soon-hero h1 {
    font-size: 4rem;
    padding: 20px;
    border-radius: 10px;
    /*height: 90%;*/
}

.soon-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #d1b895;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 60px 20px;
    text-align: center;
    flex: 1;
}

/* Contact section fits its content naturally */
.contact {
    padding: 40px 20px;
    text-align: center;
}

.contact a {
  display: inline-block;
  margin: 0 10px;
  color: #ff5733;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.contact i {
  animation: bounce 2s infinite;
  display: inline-block;
  transition: transform 0.3s;
}

.contact a:hover i {
  transform: scale(1.2); /* Slight zoom on hover */
}

.soon-footer {
    background: #111;
    padding: 20px;
    font-size: 0.8rem;
}

.intro-text {
  font-size: 1rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 10px;
}

.tagline {
  font-size: 2rem;
  color: #ff5733;
  margin-top: 10px;
  text-shadow: 0 0 10px rgba(255, 87, 51, 0.7);
  animation: fadeBounce 2s ease;
}

/* Tagline animation */
@keyframes fadeBounce {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  70% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.soon-hero p:nth-of-type(3) {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d1b895;
  animation: fadeIn 3s ease forwards;
  opacity: 0;
}

/* Simple fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.contact h2 {
  animation: pulse 3s infinite;
  color: #ff5733;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 600px) {
  .soon-hero h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .soon-hero p {
    font-size: 1rem;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact i {
    font-size: 1.8rem; /* Smaller icons */
  }

  section {
    padding: 40px 10px;
  }
}

@media (max-width: 400px) {
  .contact p {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact a {
    margin: 10px 0;
  }
}

