/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background: #f9fafb;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1.2s ease-out forwards;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* WhatsApp Button */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-3px);
}

/*Header*/
header {
  background-color: #1ebe5d;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nav-menu {
  display: flex;
  gap: 22px;
}

.nav-menu a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: white;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  transform: scale(1.1);
  color: #fff;
}

@media (max-width: 600px) {
  header {
    padding: 10px 0;
  }
  .nav-menu a {
    font-size: 1.3rem;
  }
}



/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 2rem 3rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  color: #25d366;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 320px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-right {
    text-align: center;
  }
}
