/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset Default Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Full-page Background */
body {
  background-image: url("img.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: black; /* Set text color */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Navigation Bar */
.topnav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px;
  background: transparent;
}

.topnav a {
  color: black;
  text-decoration: none;
  font-size: 17px;
  margin: 0 15px;
  transition: 0.3s;
}

.topnav a:hover {
  color: #f8c630;
}

/* Center the entire home section */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  width: 100%;
}

/* Adjust heading and paragraph */
.home h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.home p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 10px auto;
}

/* Social Media Links */
.home-contact {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-contact a {
  color: black;
  font-size: 30px;
  margin: 0 15px;
  transition: 0.3s;
}

.home-contact a:hover {
  color: #f8c630;
}

/* Footer */
.footbar {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 15px;
}

.footbar a {
  color: #f8c630;
  font-weight: bold;
  text-decoration: none;
}

.footbar a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .topnav {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .topnav a {
    display: block;
    margin: 5px 0;
  }

  .home h1 {
    font-size: 2.5rem;
  }

  .home p {
    font-size: 1rem;
  }

  .home-contact a {
    font-size: 25px;
  }
}
