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

html, body {
  height: 100%;
  font-family: "Noto Sans NKo Unjoined", sans-serif;
  overflow: hidden;
}

/* Background Container */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-image: url("background-img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

/* Center Content */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 20px;
  color: #fff;
}

/* Logo */
.logo img {
  width: 600px;
  max-width: 90%;
  height: auto;
  margin-bottom: 15px;
}

/* Heading */
.content h1 {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  margin: 15px 0;
  letter-spacing: 1px;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.35),
    0 0 10px rgba(255, 255, 255, 0.2);
}

/* Contact Info */
.contact-info {
  font-size: 1rem;
  line-height: 1.7;
  color:#0d1636;
  margin-top: 10px;
}

.contact-info a {
  color:#0d1636;
  font-weight: 500;
  text-decoration: none;
}

/* Footer */
footer {
  font-size: 0.85rem;
  color: #2d68ad;
  padding: 40px 0;
  text-align: center;
  width: 100%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.115);
  z-index: 2;
}

footer a {
  color: #2d68ad;
  text-decoration: none;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 768px) {
  .logo img {
    width: 300px;
  }

  .content h1 {
    font-size: 2.4rem;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .content h1 {
    font-size: 2.2rem;
  }

  .contact-info {
    font-size: 0.8rem;
  }

  footer {
    font-size: 0.7rem;
    padding: 20px 0;
  }
}
