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

body {
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--navbar-bg);
  backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--navbar-shadow);
  z-index: var(--z-floating-logo);
  transition: var(--transition-normal);
}

.navbar-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--navbar-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  position: relative;
}

.navbar-logo img {
  object-fit: contain;
  position: absolute;
  background-color: #ffffff;
  width: 100px;
  height: 100px;
  padding: 10px;
  border-radius: 50%;
  top: -38px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--menu-gap);
}

.navbar-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  padding: var(--menu-link-padding);
  border-radius: var(--menu-link-border-radius);
  transition: var(--transition-normal);
  text-transform: uppercase;
  font-size: var(--font-size-small);
  letter-spacing: 1px;
}

.navbar-link:hover {
  background-color: var(--primary-gold);
  color: var(--text-white);
}

/* Hamburger menu para móvil */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: var(--hamburger-size);
  height: var(--hamburger-size);
  justify-content: center;
  gap: var(--hamburger-gap);
}

.navbar-toggle span {
  width: 100%;
  height: var(--hamburger-line-height);
  background-color: var(--primary-green);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

/* Espaciado para compensar el navbar fixed */
body {
  padding-top: var(--navbar-height);
  font-family: "Roboto Slab", serif;
  line-height: 1.6;
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  background: url(./assets/bgbanner.png);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
  /* min-height: 500px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: bold;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary {
  background-color: var(--primary-gold);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background-color: var(--primary-gold-dark);
}

/* Activities Section */
.activities {
  background-color: var(--bg-secondary);
  padding: 80px 0;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.activity-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

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

.activity-card h3 {
  padding: 20px;
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-text-color);
}

/* Schedule Section */
.schedule {
  background-color: white;
  padding: 80px 0;
}

.schedule h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-text-color);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.schedule-column {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid var(--primary-text-color);
}

.schedule-item {
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-weight: bold;
  color: var(--primary-text-color);
  font-size: 1.1rem;
}

.schedule-event {
  color: #555;
  margin-top: 5px;
}

/* Pricing Section */
.pricing {
  background-color: var(--bg-secondary);
  padding: 80px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  color: var(--primary-text-color);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.price-card {
  background: white;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-type {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-text-color);
  margin-bottom: 10px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: #654321;
  margin-bottom: 20px;
}

.pricing-note {
  text-align: center;
  margin: var(--spacing-md) 0;
  padding: var(--spacing-md);
  background: rgba(45, 84, 54, 0.1);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary-green);
}

.pricing-note p {
  margin: 0;
  color: var(--primary-text-color);
  font-weight: 600;
  font-style: italic;
}

.addon {
  background: var(--primary-text-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.addon h3 {
  margin-bottom: 10px;
}

/* Footer Section */
.footer {
  background-color: var(--footer-bg-color);
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.footer-section h3 {
  font-size: 1.8rem;
  color: var(--color-footer-text);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  font-weight: bold;
  color: #2d5436;
  margin-bottom: 5px;
}

.faq-answer {
  color: #666;
  line-height: 1.6;
}

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

.contact-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Navbar móvil */
  body {
    padding-top: 70px;
  }
  
  .navbar {
    height: 70px;
  }
  
  .navbar-container {
    padding: 0 20px;
    justify-content: center !important;
  }
  
  /* Centrar logo container en móvil */
  .navbar-logo {
    position: static !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  /* Logo centrado en móvil */
  .navbar-logo img {
    width: 95px !important;
    height: 95px !important;
    top: 16px !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 8px !important;
  }
  
  /* Ocultar completamente el menú en móvil */
  .navbar-menu {
    display: none !important;
  }
  
  /* Ocultar hamburger menu */
  .navbar-toggle {
    display: none !important;
  }
  
  /* Ocultar elementos decorativos en móvil para mejor legibilidad */
  .hero-family,
  .hero-santa,
  .hero-mug {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .activities-grid,
  .schedule-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 15px;
  }
}

.hero-mug{
  width: 350px;
  position: absolute;
  bottom: 150px;
  right: 100px;
  transform: translate(50%, 50%) rotate(-15deg);
  transition: transform 0.3s ease;
}

.hero-mug:hover{
  transform: translate(50%, 50%) rotate(-10deg) scale(1.05);
}

.hero-mug img{
  width: 100%;
}

/* Hero Family - Lado izquierdo */
.hero-family {
  position: absolute;
    left: 0;
    bottom: -7px;
    width: 500px;
    z-index: 2;
}

/* .hero-family:hover {
  transform: rotate(3deg) scale(1.05);
} */

.hero-family img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Hero Santa - Lado derecho */
.hero-santa {
  position: absolute;
    right: 0;
    bottom: -7px;
    width: 463px;
    z-index: 3;
}

/* .hero-santa:hover {
  transform: rotate(-5deg) scale(1.05);
} */

.hero-santa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}