/* 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: #e45d3d;
}

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

.brand-title {
  font-family: "Sofia Sans", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #d8007e; /* dark warm shade */
  margin-bottom: 10px;
}


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

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

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

footer a {
  color: #3e0e03;
  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;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}
