body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  background: linear-gradient(45deg, #ffb6c1, #dda0dd, #ffffff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

header {
  background: url('header-background.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  width: 150px;
  height: auto;
}

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

.nav-links {
  flex-grow: 1;
  justify-content: center;
}

.nav-links li a,
.social-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 25px;
  background: white;
  margin-bottom: 4px;
  border-radius: 5px;
}

#toggle-menu {
  display: none;
}

#toggle-menu:checked + .hamburger + .nav-links {
  display: flex;
  flex-direction: column;
}

.header-content {
  margin-top: 150px;
  position: relative;
}

.header-content h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 700;
}

.call-to-action {
  background-color: #ff4081;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.call-to-action:hover {
  background-color: #e63670;
}

.whatsapp-icon {
  font-size: 2rem;
  color: #25D366;
}

.instagram-icon {
  font-size: 2rem;
  color: #C13584;
}

.facebook-icon {
  font-size: 2rem;
  color: #3b5998;
}

#services {
  padding: 20px 20px; /* Reduced top padding for closer positioning to header */
  text-align: center;
  margin-top: 20px; /* Further adjusted for fixed navbar */
}

#services h2 {
  color: white; /* Cambiar color a blanco */
  font-size: 3rem;
  font-family: 'Great Vibes', cursive;
  margin-bottom: 20px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.service:hover {
  transform: scale(1.05);
}

.service-sweet16 {
  background-image: url('service-sweet16.jpg');
}

.service-weddings {
  background-image: url('service-weddings.jpg');
}

.service-birthday {
  background-image: url('service-birthday.jpg');
}

.service-graduations {
  background-image: url('service-graduations.jpg');
}

.service-corporate {
  background-image: url('service-corporate.jpg');
}

.service-baptisms {
  background-image: url('service-baptisms.jpg');
}

#contact {
  padding: 50px 20px;
  text-align: center;
}

#contact form {
  max-width: 600px;
  margin: auto;
  text-align: left;
}

#contact label {
  font-weight: 500;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#about {
  padding: 50px 20px;
  text-align: center;
}

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-social-links a {
  font-size: 2rem; /* Increase size of social icons */
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
  }

  .nav-links li a {
    width: 100%;
    display: block;
  }

  .header-content h1 {
    font-size: 2rem;
  }

  .call-to-action {
    font-size: 1rem;
    padding: 8px 16px;
  }

  #services h2 {
    font-size: 2.5rem;
  }

  .service {
    width: 100%;
    height: 150px;
    font-size: 1.2rem;
  }

  #contact form {
    padding: 0 10px;
  }
}