
/* ===== Shared Styles: Fonts, Colors, Navbar, Footer ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: 'Fredoka', sans-serif;
  background-color: #fff8f1;
  color: #333;
}



/* Navbar */
header {
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}



.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}



.logo {
  height: 125px;
}



.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}



.nav-button {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #35b2ac;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
}



.nav-button:hover {
  background-color: #2a9a96;
  transform: scale(1.05);
}



/* Footer */
footer {
  text-align: center;
  background-color: #35b2ac;
  color: white;
  padding: 25px;
  font-size: 14px;
  margin-top: 60px;
}



.footer-connect {
  text-align: center;
  margin-bottom: 10px;
}



.footer-connect p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}



.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}



.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}



.social-icons img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-button {
    padding: 5px 9px;
    font-size: 15px;
  }

  .logo {
    height: 100px;
  }
}

