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

:root {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  color: #333;
}

.hero-section {
  flex: 1;
  position: relative;
  background-image: url("/public/byanner-2.jpg");
  background-size: fill;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%
  );
}

.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

header {
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0;
  letter-spacing: 1px;
}

.coming-soon-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.coming-soon-content h2 {
  font-size: 2.8rem;
  color: #c41e3a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.coming-soon-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a3a5c;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.coming-soon-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.coming-soon-content .tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a3a5c;
  font-style: italic;
  margin-top: 2rem;
  margin-bottom: 0;
}

footer {
  background: linear-gradient(135deg, #1a3a5c 0%, #0f2942 100%);
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-item strong {
  color: #f0f0f0;
  margin-right: 0.5rem;
}

.contact-item a {
  color: #87ceeb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-bottom .crafted {
  font-size: 1rem;
  margin-top: 1.5rem;
}

.footer-bottom .heart {
  color: #c41e3a;
  font-size: 1.2rem;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-bottom .subtitle {
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.8;
  margin-top: 0.5rem;
}

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

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

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .coming-soon-content {
    padding: 2rem 1.5rem;
  }

  .coming-soon-content h2 {
    font-size: 2rem;
  }

  .coming-soon-content .lead {
    font-size: 1.1rem;
  }

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

  .coming-soon-content .tagline {
    font-size: 1.1rem;
  }

  footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .contact-item {
    font-size: 0.95rem;
  }
}

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

  header h1 {
    font-size: 1.6rem;
  }

  .logo {
    width: 80px;
    height: 80px;
  }

  .coming-soon-content h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }

  .coming-soon-content .lead {
    font-size: 1rem;
  }

  .coming-soon-content p {
    font-size: 0.95rem;
  }
}
