:root {
  --clr-bg: #fafafa;
  --clr-dark: #333;
  --clr-accent: #ff6f61;
  --clr-accent-light: #ffd1ca;
  --transition: 0.5s ease;
}

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

body {
  font-family: "Roboto", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-dark);
  line-height: 1.6;
}

.bp-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.bp-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.bp-container:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.bp-logo {
  font-family: "Fredoka One", cursive;
  font-size: 1.8rem;
  color: var(--clr-accent);
  text-decoration: none;
}
.bp-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.bp-nav a {
  color: var(--clr-dark);
  text-decoration: none;
  padding: 8px;
  transition: color var(--transition);
}
.bp-nav a:hover {
  color: var(--clr-accent);
}

.bp-has-dropdown {
  position: relative;
}

.bp-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1000;
}

.bp-has-dropdown:hover .bp-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bp-dropdown li {
  list-style: none;
}
.bp-dropdown li a {
  display: block;
  text-align: center;
  padding: 0.5rem;
  color: #222;
  border-radius: 4px;
  transition: background 0.2s;
}
.bp-dropdown li a:hover {
  background: var(--clr-accent-light);
}

.bp-dropdown::-webkit-scrollbar {
  height: 6px;
}
.bp-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.bp-dropdown::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.bp-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .bp-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .bp-nav ul.bp-open {
    display: flex;
  }
  .bp-menu-toggle {
    display: block;
  }
}

.bp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.bp-logo__icon {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}

.bp-logo__text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
}

.bp-hero {
  position: relative;
  height: 80vh;
  background: url("../assets/images/hero.jpeg") center/cover fixed;
  display: flex;
  align-items: center;
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.bp-hero__content {
  position: relative;
  text-align: center;
  width: 100%;
  color: #fff;
  animation: fadeInDown 1s ease forwards;
}
.bp-hero__content h1 {
  font-family: "Fredoka One", cursive;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.bp-hero__content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.bp-btn {
  background: var(--clr-accent);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background var(--transition);
}
.bp-btn:hover {
  background: var(--clr-accent-light);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bp-fade-in {
  opacity: 0;
  animation: fadeInDown 1s forwards;
}
.bp-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s forwards;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.bp-zoom-in {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s forwards;
}
@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.bp-about {
  padding: 80px 0;
  text-align: center;
}
.bp-about h2 {
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.bp-about ul {
  list-style: none;
  margin-top: 16px;
}
.bp-about ul li {
  margin-bottom: 8px;
}

.bp-genres {
  padding: 4rem 1rem;
  background: #fafafa;
  text-align: center;
}

.bp-genres h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff6b6b;
  position: relative;
}
.bp-genres h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff6b6b;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.bp-genres__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.bp-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
}

.bp-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.bp-card h3 {
  margin: 1rem 0;
  font-size: 1.25rem;
  color: #333;
  font-family: "Roboto", sans-serif;
}

.bp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.bp-genres__more {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.bp-genres__cta {
  margin-top: 1rem;
}

.bp-genres__cta .bp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e72);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.bp-genres__cta .bp-btn:hover {
  background: linear-gradient(135deg, #ff8e72, #ff6b6b);
  transform: translateY(-3px);
}

.bp-zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bp-zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 600px) {
  .bp-genres h2 {
    font-size: 2rem;
  }
  .bp-card img {
    height: 120px;
  }
}

.bp-slider {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.bp-slider h2 {
  text-align: center;
  color: var(--clr-accent);
  margin-bottom: 32px;
}
.bp-slider__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
.bp-slide {
  min-width: 250px;
  text-align: center;
}
.bp-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.bp-slide p {
  margin-top: 8px;
}
.bp-slider__prev,
.bp-slider__next {
  position: absolute;
  top: 50%;
  background: var(--clr-accent);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.bp-slider__prev {
  left: 16px;
}
.bp-slider__next {
  right: 16px;
}

.bp-membership {
  padding: 80px 0;
  text-align: center;
  background: var(--clr-accent-light);
}
.bp-membership h2 {
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.bp-footer {
  background: #fff;
  padding: 24px 0;
  text-align: center;
}
.bp-footer-nav a {
  color: var(--clr-dark);
  text-decoration: none;
  margin: 0 6px;
  transition: color var(--transition);
}
.bp-footer-nav a:hover {
  color: var(--clr-accent);
}
bp-footer p {
  margin-top: 12px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .bp-hero__content h1 {
    font-size: 2.5rem;
  }
  .bp-genres__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bp-parallax {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-parallax__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background: url("../assets/images/gallery1.jpg") center/cover no-repeat;
  transform: translateX(-50%);
  background-attachment: fixed;
  will-change: transform;
  z-index: 1;
}

.bp-parallax__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.bp-parallax__content {
  position: relative;
  text-align: center;
  z-index: 3;
  color: #333;
  animation: fadeInUp 1s ease forwards;
}

.bp-parallax__content h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.bp-parallax__content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.bp-parallax__content .bp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e72);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-parallax__content .bp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .bp-parallax__bg {
    background-attachment: scroll;
  }
  .bp-parallax__content h2 {
    font-size: 2rem;
  }
  .bp-parallax__content p {
    font-size: 1rem;
  }
}

.bp-contact {
  padding: 80px 20px;
  background: #fff5f8;
  color: #333;
  text-align: left;
}

.bp-contact h2 {
  font-size: 2.8rem;
  text-align: center;
  color: #ff6b6b;
  margin-bottom: 40px;
}

.bp-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.bp-contact__info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bp-contact__list,
.bp-contact__hours {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.bp-contact__list li,
.bp-contact__hours li {
  font-size: 1rem;
  margin-bottom: 8px;
}

.bp-contact__list a {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bp-contact__list a:hover {
  color: #ff4757;
}

.bp-contact__hours li {
  background: #ffe3ea;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-right: 8px;
}

.bp-contact__note {
  font-style: italic;
  color: #555;
}

.bp-contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bp-contact__card {
  background: #fff;
  border: 2px solid #ff6b6b;
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-contact__card h4 {
  margin-top: 0;
  color: #ff4757;
  font-size: 1.4rem;
}

.bp-contact__card p {
  margin-bottom: 0;
  line-height: 1.5;
}

.bp-contact__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .bp-contact {
    padding: 60px 0;
  }
  .bp-contact h2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
  .bp-contact__hours li {
    margin-bottom: 12px;
  }
}

.bp-genres-list {
  padding: 80px 0;
  text-align: center;
}
.bp-genres-list__title {
  font-size: 2.8rem;
  color: #ff6f61;
  margin-bottom: 40px;
}
.bp-genres-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.bp-genre-card {
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bp-genre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.bp-genre-card__inner {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.bp-genre-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.bp-genre-card__name {
  margin: 16px 0;
  font-size: 1.1rem;
  color: #333;
}
@media (max-width: 600px) {
  .bp-genres-list__grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.gp-hero {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1rem;
}
.gp-hero__media img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.gp-hero__content {
  flex: 1;
}
.gp-hero__title {
  font-size: 2.5rem;
  color: #ff6f61;
  margin-bottom: 1rem;
}
.gp-hero__desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.gp-reviews {
  background: #f9f9f9;
  padding: 4rem 1rem;
}
.gp-reviews__title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}
.gp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.gp-review {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  font-style: italic;
  color: #555;
}
.gp-review__text {
  margin: 0;
}
.gp-review__author {
  margin-top: 1rem;
  text-align: right;
  font-weight: 500;
  color: #ff6f61;
}

.gp-contact-cta {
  text-align: center;
  padding: 4rem 0;
}
.gp-contact-cta__title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}
.gp-contact-cta__text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}
.gp-contact-cta__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ff6f61;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.gp-contact-cta__btn:hover {
  background: #e0484a;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .gp-hero {
    flex-direction: column;
    text-align: center;
  }
  .gp-hero__media img {
    max-width: 100%;
  }
}

.bp-featured {
  padding: 4rem 0;
  background: #fff5f0;
}
.bp-featured__title {
  text-align: center;
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: 2rem;
}
.bp-carousel {
  position: relative;
  overflow: hidden;
}
.bp-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bp-carousel__slide {
  min-width: 250px;
  margin: 0 1rem;
  text-align: center;
}
.bp-carousel__slide img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bp-carousel__caption {
  margin-top: 0.75rem;
  color: #333;
  font-size: 0.95rem;
}
.bp-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}
.bp-prev {
  left: 1rem;
}
.bp-next {
  right: 1rem;
}
.bp-carousel__nav:hover {
  background: rgba(255, 255, 255, 1);
}
@media (max-width: 600px) {
  .bp-carousel__slide {
    min-width: 200px;
  }
  .bp-carousel__nav {
    font-size: 1.2rem;
  }
}

.bp-upcoming-events {
  padding: 4rem 0;
  background: #fff;
}
.bp-upcoming-events__title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #e76f51;
}
.bp-upcoming-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.bp-event-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bp-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.bp-event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.bp-event-card__body {
  padding: 1.5rem;
}
.bp-event-card__name {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #264653;
}
.bp-event-card__date {
  display: block;
  font-size: 0.9rem;
  color: #2a9d8f;
  margin-bottom: 1rem;
}
.bp-event-card__desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.bp-event-card__link {
  display: inline-block;
  font-weight: 500;
  color: #e76f51;
  text-decoration: none;
  transition: color 0.3s;
}
.bp-event-card__link:hover {
  color: #f4a261;
}

@media (max-width: 600px) {
  .bp-upcoming-events__title {
    font-size: 2rem;
  }
  .bp-event-card img {
    height: 150px;
  }
}

.bp-event-detail-hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.bp-event-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.bp-event-detail-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  animation: bp-fade-in 1s ease forwards;
}
.bp-event-detail-hero__title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.bp-event-detail-hero__subtitle {
  font-size: 1.2rem;
}

.bp-event-detail-desc {
  padding: 4rem 0;
}
.bp-event-detail-desc__heading {
  text-align: center;
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 1rem;
}
.bp-event-detail-desc__text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #333;
}

.bp-event-detail-info {
  padding: 4rem 0;
  background: #f9f9f9;
}
.bp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.bp-info-item h3 {
  font-size: 1.1rem;
  color: #264653;
  margin-bottom: 0.5rem;
}
.bp-info-item p {
  color: #555;
}

.bp-event-detail-faq {
  padding: 4rem 0;
}
.bp-event-detail-faq__heading {
  text-align: center;
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 2rem;
}
.bp-accordion__item {
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.bp-accordion__header {
  width: 100%;
  background: #fff;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.bp-accordion__header::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s;
}
.bp-accordion__item.active .bp-accordion__header::after {
  transform: rotate(45deg);
}
.bp-accordion__body {
  background: #f4f4f4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.bp-accordion__item.active .bp-accordion__body {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

.bp-event-detail-cta {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #e76f51, #f4a261);
  color: #fff;
}
.bp-event-detail-cta__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.bp-event-detail-cta__text {
  margin-bottom: 1.5rem;
}
.bp-event-detail-cta__btn {
  display: inline-block;
  background: #fff;
  color: #e76f51;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.bp-event-detail-cta__btn:hover {
  background: #ffe5e0;
}

.bp-event-detail-info {
  padding: 4rem 0;
  background: #fafafa;
}
.bp-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.bp-info-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.bp-info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.bp-info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #2a5d8f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.bp-info-item p {
  color: #555;
  line-height: 1.5;
}

.bp-event-detail-faq {
  padding: 4rem 0;
}
.bp-event-detail-faq__heading {
  text-align: center;
  font-size: 2.2rem;
  color: #d36044;
  margin-bottom: 2.5rem;
  position: relative;
}
.bp-event-detail-faq__heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #d36044;
  display: block;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.bp-accordion__item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.bp-accordion__header {
  background: linear-gradient(90deg, #fbeec1, #ffdd9e);
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}
.bp-accordion__header:hover {
  background: linear-gradient(90deg, #ffe8a1, #ffd074);
}
.bp-accordion__header::after {
  content: "▼";
  position: absolute;
  right: 1.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.bp-accordion__item.active .bp-accordion__header::after {
  transform: rotate(180deg);
}

.bp-accordion__body {
  background: #fff8f0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}
.bp-accordion__item.active .bp-accordion__body {
  max-height: 200px;
  padding: 1rem 1.5rem;
}
.bp-accordion__body p {
  color: #444;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .bp-info-grid {
    grid-template-columns: 1fr;
  }
  .bp-accordion__header {
    font-size: 1rem;
  }
  .bp-accordion__body {
    font-size: 0.95rem;
  }
}

@keyframes bp-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .bp-event-detail-hero__title {
    font-size: 2.2rem;
  }
  .bp-event-detail-hero__subtitle {
    font-size: 1rem;
  }
}

.bp-team {
  padding: 5rem 1rem;
  background: #fff;
  text-align: center;
}
.bp-team__title {
  font-size: 2.8rem;
  color: #f36b6b;
  margin-bottom: 0.5rem;
}
.bp-team__intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.bp-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bp-team__member {
  background: #f9f5f2;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bp-team__member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.bp-team__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f36b6b;
  margin-bottom: 1rem;
}

.bp-team__name {
  font-size: 1.4rem;
  color: #333;
  margin: 0.5rem 0 0.25rem;
}

.bp-team__role {
  font-size: 1rem;
  color: #888;
  margin-bottom: 1rem;
  font-style: italic;
}

.bp-team__bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .bp-team__title {
    font-size: 2.2rem;
  }
  .bp-team__intro {
    font-size: 1rem;
  }
}

.bp-space {
  padding: 6rem 1rem;
  background: #fff9f4;
}
.bp-space__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bp-space__media {
  text-align: center;
}
.bp-space__img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.bp-space__content {
  text-align: left;
}
.bp-space__title {
  font-size: 2.8rem;
  color: #e8595c;
  margin-bottom: 1rem;
}
.bp-space__text {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .bp-space__inner {
    grid-template-columns: 1fr;
  }
  .bp-space__img {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

.title_background {
  background: linear-gradient(135deg, #ffe5e0, #fff9f4);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.title_background::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at top left,
    rgba(232, 89, 84, 0.2),
    transparent 70%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

.title_background .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.title_background .title {
  font-size: 2.5rem;
  color: #e8595c;
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  animation: fadeInScale 0.8s ease-out both;
}

.text_background {
  background: #ffffff;
  padding: 3rem 1rem 4rem;
}

.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}

.text_background .text {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555555;
  text-align: justify;
  position: relative;
  padding: 1.5rem;
  border-left: 4px solid #e8595c;
  background: #fff7f5;
  border-radius: 6px;
  animation: fadeInUp 0.8s ease-out both;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .title_background {
    padding: 3rem 0.5rem;
  }
  .title_background .title {
    font-size: 2rem;
    padding: 0.5rem 1rem;
  }
  .text_background {
    padding: 2rem 0.5rem 3rem;
  }
  .text_background .text {
    font-size: 1rem;
    padding: 1rem;
  }
}
