
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1e1b3a;
  color: #f1f1f1;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;

  position: static;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  width: clamp(150px, 20vw, 170px);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #c084fc;
}

.hero-layout,
.section-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 8%;
  flex-wrap: wrap;
}

.hero-text,
.section-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1,
.section h2 {
  font-size: 2.8rem;
  color: #c084fc;
  margin: 0;
}

.hero-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(90deg, #9333ea, #7e22ce);
  color: white;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(147, 51, 234, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.6);
}

.hero-image,
.section-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.section-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.section-image:hover {
  transform: scale(1.03);
}

.section h2 {
  font-size: 2rem;
  color: #c084fc;
  margin-bottom: 1rem;
}

.section ul {
  padding-left: 1.5rem;
  line-height: 1.8;
}

#register {
  padding: 3rem 10%;
  text-align: center;
}

#register h2 {
  font-size: 2rem;
  color: #c084fc;
  margin-bottom: 2rem;
}

#register form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

#register input,
#register button {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  width: 100%;
  box-sizing: border-box;
}

#register input {
  background: #fff;
  color: #000;
}

#register button {
  background-color: #9333ea;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

#register button:hover {
  background-color: #7e22ce;
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #15132b;
  font-size: 1rem;
  color: #bbb;
  max-width: 100%;
  box-sizing: border-box;
}

.centered {
  text-align: center;
}

@media (max-width: 768px) {
  .hero-layout,
  .section-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1,
  .section h2 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .section-visual {
    margin-top: 1rem;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
    width: 100%;
  }

    .logo {
    margin: 0 auto;
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 1rem;
    padding-left: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }



  .nav-links li a {
    display: block;
    padding: 0.75rem 0;
    width: 100%;
  }
}

.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25D366;
}

.facebook {
  background-color: #1877F2;
}

.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;

  position: static;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.navbar .logo {
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0 auto; /* Center horizontally */
  padding: 0;
  flex: 1;
  justify-content: center;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #15132b;
    padding: 1rem 0;
  }
    .logo {
    margin: 0 auto;
    display: block;
  }

  .nav-links.show-menu {
    display: flex;
  }



  .nav-links li {
    text-align: center;
  }
}