
:root {
  /* Colores base */
  --primary-color: #3B8589;       
  --secondary-color: #4DB2B2;    
  --accent-color: #DCE8F8;      
  --text-dark: #333;        
  --text-light: #fff;        
  
  /* Colores temáticos */
  --color-bodas: #9C27B0;   
  --color-infantiles: #E91E63;   
  --color-cumpleanos: #FF9800;   
  --color-xv: #FF5722;           
  
  /* Fuentes */
  --font-title: 'Dancing Script', cursive;
  --font-body: 'Pacifico', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--accent-color);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 60px;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 4px 10px rgba(215, 76, 180, 0.25);
}

.logo:hover {
  transform: rotate(15deg);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
  font-size: 1.2rem;
}

nav a:hover {
  color: var(--secondary-color);
}

.dropdown {
  position: absolute;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown a {
  padding: 8px 0;
  display: block;
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#hero {
  position: relative;
  height: 100vh;
  margin-top: 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light);
  z-index: 2;
  width: 90%;
}

.hero-text h1 {
  font-family: var(--font-title);
  font-size: 5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 5rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Botones temáticos */
.bodas .cta-button {
  background: var(--color-bodas);
}

.infantiles .cta-button {
  background: var(--color-infantiles);
}

.cumpleaños .cta-button {
  background: var(--color-cumpleanos);
}

.bodas .cta-button:hover {
  background: #7B1FA2;
}

.infantiles .cta-button:hover {
  background: #C2185B;
}

.cumpleaños .cta-button:hover {
  background: #F57C00;
}

.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  margin-bottom: 50px;
}

.services h2 i {
  margin-right: 15px;
}

/* Estilos temáticos para títulos */
.bodas .services h2,
.bodas .card h3,
.bodas .testimonials h2 {
  color: var(--color-bodas);
}

.infantiles .services h2,
.infantiles .card h3,
.infantiles .testimonials h2 {
  color: var(--color-infantiles);
}

.cumpleaños .services h2,
.cumpleaños .card h3,
.cumpleaños .testimonials h2 {
  color: var(--color-cumpleanos);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
  color: #666;
  font-size: 1.4rem;
}

.price {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2em;
}

.testimonials {
  background-color: var(--accent-color);
  padding-top: 0px;
  padding-bottom: 70px;
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.testimonials h2 i {
  color: #FFD700;
  margin-right: 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #555;
  font-size: 1.4rem;
}

.testimonial span {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.5rem;
}

footer {
  background: var(--primary-color);
  color: white;
  padding: 50px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-section p, 
.footer-section a {
  margin-bottom: 15px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.social-icon i {
  font-size: 1.5rem;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  nav ul.show {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .testimonials h2 {
    font-size: 2rem;
  }
}