/* Reset default margin and padding */
html,
body,
main,
.coming-soon-page {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  /* overflow: hidden; */
}

/* Global font */
html {
  font-family: "Rethink Sans", sans-serif;
}

/* Coming Soon Page Background */
.coming-soon-page {
  background-color: #121212;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100%;

  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("images/coming-soon.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content Card */
.content-card {
  position: relative;
  z-index: 2;
  padding: 40px 24px 36px 24px; /* Decreased left and right padding */
  text-align: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* Logo */
.logo {
  width: 250px; /* Increased from 140px to 180px */
  margin: 0 auto 18px auto;
  display: block;
}

/* Heading */
.main-heading {
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  line-height: 1.05;
  font-size: 2.8rem;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .main-heading {
    font-size: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .main-heading {
    font-size: 4.5rem;
  }
}

/* Split "COMING SOON" into two lines */
.main-heading span {
  display: block;
}

/* Paragraphs */
.subheading {
  font-size: 1.08rem;
  margin-bottom: 22px;
  color: #e5e7eb;
  font-weight: 400;
}

.contact-text {
  font-size: 0.98rem;
  margin-bottom: 16px;
  color: #d1d5db;
  font-weight: 400;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 1.08rem;
  text-align: left;
  display: inline-block;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WhatsApp and Email icon colors */
.contact-list .whatsapp {
  color: #25d366;
  font-size: 1.2em;
  margin-right: 6px;
}
.contact-list .email {
  color: #a259ff;
  font-size: 1.2em;
  margin-right: 6px;
}

/* Links */
a {
  text-decoration: underline;
  white-space: nowrap;
  color: #fff;
  transition: color 0.3s;
  font-weight: 600;
}

a:hover {
  color: #22d3ee;
}
