body {
  font-family: "Orbitron", sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  margin: 0;
  padding: 0;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

nav {
  position: relative;
  height: 60px;
  width: 100%;
  background-color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInDown 1s ease-in-out;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navmm {
  display: flex;
  gap: 80px;
}

.nav1,
.nav2 {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 5px;
  font-family: "Orbitron", sans-serif;
  transition: all 0.3s ease;
}

.nav1:hover,
.nav2:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
}

header {
  text-align: center;
  padding: 50px 20px;
  background-color: #302b63;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 2s ease-in-out;
}

header h1 {
  margin: 0;
  font-size: 3em;
  animation: zoomIn 1s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}

.contact-info {
  display: flex;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-in-out;
  text-align: center;
}

.contact-info .info {
  width: 45%;
  margin: 10px;
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.contact-info h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1.2em;
}

.social-media {
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.social-media h2 {
  font-size: 2em;
  margin-bottom: 20px;
  animation: zoomIn 1s ease-in-out;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeIn 2s ease-in-out;
}

.social-links a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInUp 1s ease-in-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.social-links a:hover {
  background-color: white;
  color: black;
}

.whatsapp {
  background-color: #25d366;
}

.facebook {
  background-color: #3b5998;
}

.instagram {
  background-color: #e1306c;
}

.youtube {
  background-color: #ff0000;
}

.tiktok {
  background-color: #000000;
}

/* Mobile Responsive Updates */
@media screen and (max-width: 768px) {
  .navmm {
    gap: 2em;
  }

  header h1 {
    font-size: 2.5em;
  }

  .contact-info .info {
    width: 100%;
    margin: 0.5em 0;
  }

  .contact-info h2 {
    font-size: 1.5em;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 100%;
    justify-content: center;
    font-size: 1em;
    padding: 8px 15px;
  }
}

@media screen and (max-width: 480px) {
  .navmm {
    gap: 1em;
  }

  .nav1,
  .nav2 {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  header h1 {
    font-size: 2em;
  }

  .contact-info h2 {
    font-size: 1.2em;
  }

  .contact-info p {
    font-size: 1em;
  }

  .social-media h2 {
    font-size: 1.5em;
  }
}
