:root {
  --primary-color: #FF6B6B;
  --secondary-color: #4ECDC4;
  --accent-color: #FFE66D;
  --dark-color: #2C3E50;
  --light-color: #F7F9FC;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.logo-img {
  height: 75px;
  width: auto;
}

.logo svg {
  display: none;
}

.logo span {
  display: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-color);
  margin-left: 2rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links a:nth-child(4) { transition-delay: 0.4s; }
  .nav-links a:nth-child(5) { transition-delay: 0.5s; }
  .nav-links a:nth-child(6) { transition-delay: 0.6s; }

  /* Hamburger Animation */
  .menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Adjust logo size for mobile */
  .logo-img {
    height: 50px;
  }

  nav {
    padding: 0.5rem 5%;
  }
}

/* Header */
header {
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero {
  text-align: center;
  color: white;
  z-index: 1;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--dark-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Floating Balloons Animation */
.floating-balloons {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Logo Balloon Styles */
.logo-balloon {
  position: absolute;
  z-index: 2;
}

.logo-balloon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.5));
}

/* Equipment Section */
.equipment-section {
  padding: 5rem 5%;
  background: var(--light-color);
  position: relative;
  z-index: 1;
}

.equipment-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, rgba(0,0,0,0.05) 50%);
  z-index: -1;
}

h2 {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.equipment-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.equipment-card:hover {
  transform: translateY(-10px);
}

.equipment-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  background: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

/* Equipment Icons */
.castle::after,
.trailer::after,
.furniture::after,
.deco::after,
.sound::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.castle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12,2L2,12h2v9h16v-9h2L12,2z M12,5l6,6H6L12,5z M7,14h4v5H7V14z M13,19v-5h4v5H13z'/%3E%3C/svg%3E");
}

.trailer::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19,7c-0.5,0-1,0.5-1,1v3H4V8c0-0.5-0.5-1-1-1S2,7.5,2,8v8c0,0.5,0.5,1,1,1h1c0,1.7,1.3,3,3,3s3-1.3,3-3h4c0,1.7,1.3,3,3,3s3-1.3,3-3h1c0.5,0,1-0.5,1-1V8C22,7.5,21.5,7,19,7z M7,18c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S7.6,18,7,18z M17,18c-0.6,0-1-0.4-1-1s0.4-1,1-1s1,0.4,1,1S17.6,18,17,18z'/%3E%3C/svg%3E");
}

.furniture::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M20,8V6c0-1.1-0.9-2-2-2H6C4.9,4,4,4.9,4,6v2c-1.1,0-2,0.9-2,2v3c0,1.1,0.9,2,2,2v1c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-1c1.1,0,2-0.9,2-2v-3C22,8.9,21.1,8,20,8z M12,5l6,6H6L12,5z M7,14h4v5H7V14z M13,19v-5h4v5H13z'/%3E%3C/svg%3E");
}

.deco::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12,2C6.5,2,2,6.5,2,12c0,5.5,4.5,10,10,10s10-4.5,10-10C22,6.5,17.5,2,12,2z M12,20c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S16.4,20,12,20z M15,6.5l-3,7l-3-3l7-3z'/%3E%3C/svg%3E");
}

.sound::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12,3v18c4.97,0,9-4.03,9-9S16.97,3,12,3z M3,12c0,4.97,4.03,9,9,9V3C7.03,3,3,7.03,3,12z'/%3E%3C/svg%3E");
}

/* Packages Section */
.packages-section {
  padding: 5rem 5%;
  background: white;
  position: relative;
  z-index: 1;
  background: linear-gradient(45deg, #FFE5E5 25%, #E5F9FF 50%, #FFF5E5 75%);
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='3' fill='rgba(255,107,107,0.1)'/%3E%3C/svg%3E") repeat;
  z-index: -1;
}

.package-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  padding: 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  position: relative;
  border: 3px dashed var(--secondary-color);
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: sparkle 3s infinite;
}

@keyframes sparkle {
  0% { transform: translate(-30%, -30%) rotate(45deg); }
  100% { transform: translate(30%, 30%) rotate(45deg); }
}

.package-card.featured {
  background: linear-gradient(135deg, #FFB6C1 0%, #87CEEB 100%);
  color: white;
  transform: scale(1.05);
  border: 3px dashed white;
}

.package-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.featured h3 {
  color: white;
}

.package-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.price {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: var(--secondary-color);
  font-family: 'Fredoka', sans-serif;
}

.featured .price {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.package-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  padding-left: 1.5rem;
}

.package-card li {
  margin: 0.8rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.package-card li::before {
  content: '🎈';
  position: absolute;
  left: -1rem;
  animation: float 3s ease-in-out infinite;
}

.featured li::before {
  content: '⭐';
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.package-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.package-button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.featured .package-button {
  background: white;
  color: var(--primary-color);
}

.featured .package-button:hover {
  background: var(--accent-color);
  color: var(--dark-color);
  border-color: white;
}

/* Contact Section */
.contact-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: white;
  position: relative;
  z-index: 1;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, rgba(0,0,0,0.05) 50%);
  z-index: -1;
}

.contact-section h2 {
  color: white;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.submit-button {
  background: var(--accent-color);
  color: var(--dark-color);
  border: none;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background: var(--light-color);
}

/* Hire Section */
.hire-section {
  padding: 8rem 5% 5rem;
  background: linear-gradient(135deg, #f6f9fc, #edf2f7);
  position: relative;
  z-index: 1;
}

.hire-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, rgba(0,0,0,0.05) 50%);
  z-index: -1;
}

.hire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hire-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.hire-card:hover {
  transform: translateY(-10px);
}

.hire-card h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: var(--dark-color);
}

.hire-card .price {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 1rem 0;
}

.hire-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.hire-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.hire-card ul li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

/* Castle Prices Section */
.castle-prices-section {
  padding: 5rem 5%;
  background: white;
  position: relative;
  z-index: 1;
}

.castle-prices-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom right, transparent 49%, rgba(0,0,0,0.05) 50%);
  z-index: -1;
}

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

.castle-price-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.castle-price-card:hover {
  transform: translateY(-10px);
}

.castle-price-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.castle-price-card .price {
  font-size: 2rem;
  color: var(--primary-color);
}

.castle-price-card p {
  margin: 1rem 0;
}

/* WhatsApp Button Styles */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .whatsapp-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
}

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 5% 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Fredoka', sans-serif;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.social-icon:hover::before {
  transform: scale(1.2);
}

.facebook {
  background: linear-gradient(45deg, #4267B2, #5B7BD5);
}

.facebook::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
}

.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z'/%3E%3C/svg%3E");
}

.twitter {
  background: linear-gradient(45deg, #1DA1F2, #19C3FF);
}

.twitter::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z'/%3E%3C/svg%3E");
}

.tiktok {
  background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
}

.tiktok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z'/%3E%3C/svg%3E");
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}