/* Coming Soon Page Styles */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #0f3fab;
  --secondary-color: #e2362f;
  --text-dark: #1f2937;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(15, 63, 171, 0.8), rgba(226, 54, 47, 0.8)),
    url("assets/hero-background.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-dark);
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
}

/* Background overlay pattern */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.8s ease-out;
}

.logo-wrapper {
  margin-bottom: 2rem;
  display: inline-block;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.divider {
  height: 4px;
  width: 60px;
  background: var(--secondary-color);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.contact-info {
  background: rgba(15, 63, 171, 0.05); /* Light blue tint */
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid rgba(15, 63, 171, 0.1);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #374151;
  font-size: 1rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  color: var(--secondary-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  width: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 1.25rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(15, 63, 171, 0.3);
}

.contact-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(226, 54, 47, 0.2);
}

.contact-btn:hover {
  background-color: #c02020;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(226, 54, 47, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .logo-img {
    height: 80px;
  }
}

.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer p {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.developer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.developer-credit a:hover {
  color: var(--secondary-color);
}
