/* 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;
  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: 350px;
  height: auto;
  margin-bottom: 10px;
}

/* Optional heading */
h1 {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 10px 0;
}

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

/* Social Icons Container */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between icons */
  margin-top: 10px;
}

/* Facebook Icon */
.facebook-icon {
  font-size: 28px;
  color: #3b5998;
  transition: transform 0.3s ease, color 0.3s ease;
}

.facebook-icon:hover {
  transform: scale(1.1);
  color: #3b5998;
}

/* Instagram Icon */
.instagram-icon {
  font-size: 28px;
  color: #f56040;
  transition: transform 0.3s ease, color 0.3s ease;
}

.instagram-icon:hover {
  transform: scale(1.1);
  color: #f56040;
}


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

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

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

  h1 {
    font-size: 2rem;
  }

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

  .facebook-icon {
    font-size: 24px;
  }
  .instagram-icon {
    font-size: 24px;
}
}
/* Mobile */
@media (max-width: 480px) {
  .logo img {
    width: 200px;
    margin-top: 50px;
  }

  h1 {
    font-size: 1.6rem;
  }

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

  .facebook-icon {
    font-size: 22px;
  }

  .instagram-icon {
    font-size: 22px;
  }

  footer {
    font-size: 0.7rem;
  }
}
