/* Hero Section */
.hero {
  background: url('/images/hero-birthday.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  background: #e63946;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn:hover {
  background: #c71f30;
}

/* Event Highlights */
.event-highlights {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.highlight-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* .highlight-item img {
  height: 100px;
  margin-bottom: 15px;
} */

.highlight-item img {
  height: 150px;
  width: 150px;            /* Make width equal to height */
  margin-bottom: 40px;
  border-radius: 50%;      /* Makes it a circle */
  object-fit: cover;       /* Ensures the image fills the circle */
}


/* Event Gallery */
.event-gallery {
  padding: 60px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Event Packages */
.event-packages {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.package-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.package-card:hover {
  transform: translateY(-5px);
}
.package-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.package-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #e63946;
}
.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.package-card ul li {
  margin: 5px 0;
}
.package-card.popular {
  border: 2px solid #e63946;
}


/* About Events Section */
/*.about-events {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.about-events .section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.about-events .about-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px;
}*/

/*.about-events {
  background-color: #fafafa;
  padding: 80px 0;
  color: #333;
}*/

.about-events .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #ff9800;
}

.about-events h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  color: #e63946;
}

.about-events .about-text {
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-events .about-list {
  margin: 15px 0 25px 25px;
  line-height: 1.6;
}




/*readmore*/

  .about-events {
    padding: 80px 0;
    background: #fff;
    color: #333;
    font-family: "Poppins", sans-serif;
  }

  .about-events .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 20px;
  }

  .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease;
  }

  .about-more-content.open {
    max-height: 8000px; /* expand enough for full content */
  }

  .about-more-content h3 {
    font-size: 22px;
    margin-top: 24px;
    color: #e63946;
  }

  .about-more-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
  }

  .about-more-content ul li {
    margin-bottom: 8px;
  }

  .read-more-container {
    text-align: center;
    margin-top: 25px;
  }

  .read-more-btn {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
  }

  .read-more-btn:hover {
    background: #c71f30;
  }


