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

html, body {
  height: 100%;
  font-family: "Fira Sans", sans-serif;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background: url('bg-img.jpg') center center / cover no-repeat;
  /*background-color:#9f9f9f;*/
  padding: 20px;
}

/* Content wrapper */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 90%;
}

/* Logo */
.logo img {
  width: 380px;
  height: auto;
  margin-bottom: 20px;
}

/* Big Heading */
h1 {
  font-size: 4rem;       /* larger size */
  font-weight: 700;      /* bold */
  margin: 20px 0;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3); /* attractive shadow */
}

/* Contact Info */
.contact-info {
  font-size: 1rem;
  line-height: 1.8;
  margin: 15px 0;
  max-width: 90%;
  text-align: center;
  color: #000;
}

.contact-info a {
  color: inherit;          /* keeps same text color */
  text-decoration: none;   /* removes underline */
}

.contact-info a:hover {
  text-decoration: underline;  /* underline only on hover (optional) */
}


/* Footer */
footer {
  font-size: 0.9rem;
  color: #000;
  padding: 100px 0;
  text-align: center;
}

footer a {
  color: #012d3b;
  text-decoration: none;
  font-weight: 600;
}

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

  h1 {
    font-size: 3rem;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .logo img {
    width: 200px;
    margin-top: 40px;
  }

  h1 {
    font-size: 2.2rem;
  }

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

  footer {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
    .contact-info {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 2.1rem;
    }
}