@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f7f9fc;
  color: #333;
}

/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 6px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
}

/* ------------ FOOTER -------------  */
footer {
  font-family: 'Poppins', sans-serif;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 300px;
  text-align: left;
}

.footer-logo .animated-logo {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

.footer-logo p {
  margin: 10px 0;
}

.footer-link {
  text-decoration: underline;
  color: white;
  gap: 50px;
}

@keyframes shine {
  0% {
    background-position: -500px;
  }
  100% {
    background-position: 500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- RESPONSIVE ----------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-left {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo .animated-logo {
    font-size: 2em;
  }
}
