/* 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;

  /* Sharp High-Quality Background */
  background-image: url("background-img.png");
  background-position: center;
  
  background-repeat: no-repeat;
  background-size: cover;
 background-attachment: scroll;


  /* Improve clarity */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Overlay (no blur) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

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

/* Glass Box - clean, soft glass */
.glass-box {
  background: rgba(65, 18, 86, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0px;
  padding: 50px 70px;
  color: #fff;
  transition: all 0.4s ease;
  z-index: 3;
}

/* Logo */
.glass-box .logo img {
  width: 600px;
  height: auto;
  margin-bottom: 15px;
}

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

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

.glass-box .contact-info a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

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

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

/* Tablet */
@media (max-width: 768px) {
  .glass-box {
    padding: 35px 40px;
  }

  .glass-box .logo img {
    width: 300px;
  }

  .glass-box h1 {
    font-size: 2.4rem;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .glass-box {
    width: 95%;
    padding: 25px 20px;
  }

  .glass-box .logo img {
    width: 300px;
  }

  .glass-box h1 {
    font-size: 2.3rem;
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.3),
      0 0 5px rgba(255, 255, 255, 0.2);
  }

  .glass-box .contact-info {
    font-size: 0.6rem;
    line-height: 1.5;
  }

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