/* Page-owned styles for /events/ */

.events-hero {
  background: linear-gradient(160deg, #0B0A0C 0%, #1A1118 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-hero__inner {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.events-hero__eyebrow {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4AF37;
  margin: 0;
}

.events-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0;
  max-width: 15ch;
}

.events-hero__lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: #B8A97A;
  max-width: 60ch;
  margin: 0;
}

.events-hero__cta {
  margin-top: 0.5rem;
}

.events-intro {
  background-color: #0B0A0C;
}

.events-intro__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.events-intro__title {
  margin: 0;
}

.events-intro__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 70ch;
}

.events-intro__content p {
  margin: 0;
}

.events-intro__lead {
  font-size: 1.25rem;
  line-height: 1.6;
}

.events-list {
  background-color: #0B0A0C;
}

.events-list__title {
  margin-bottom: 2rem;
}

.events-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.event-card {
  background: linear-gradient(145deg, #1A1118 0%, #221622 100%);
  border: 1px solid #D4AF37;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.event-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), 0 0 16px rgba(212, 175, 55, 0.35);
  border-color: #FFBF00;
}

.event-card__title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.event-card__date {
  color: #D4AF37;
  font-weight: 500;
  margin: 0;
}

.event-card__description {
  color: #B8A97A;
  margin: 0;
}

.event-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-card__details li {
  color: #FFFFFF;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.event-card__details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #D4AF37;
}

.event-feature {
  background-color: #0B0A0C;
}

.event-feature__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.event-feature__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.event-feature__text p {
  margin: 0;
  max-width: 70ch;
}

.event-feature__title {
  margin: 0;
}

.event-feature__subtitle {
  margin: 0;
}

.event-feature__schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-feature__schedule li {
  color: #B8A97A;
}

.event-feature__schedule span {
  color: #D4AF37;
  font-weight: 500;
  margin-right: 0.5rem;
}

.event-feature__media {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #D4AF37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.event-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  border: none;
}

.events-benefits {
  background-color: #0B0A0C;
}

.events-benefits__title {
  margin-bottom: 1rem;
}

.events-benefits__lead {
  color: #B8A97A;
  max-width: 70ch;
  margin-bottom: 2rem;
}

.events-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card {
  background: linear-gradient(145deg, #1A1118 0%, #221622 100%);
  border: 1px solid #D4AF37;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.benefit-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), 0 0 16px rgba(212, 175, 55, 0.35);
}

.benefit-card__icon {
  font-size: 2rem;
  line-height: 1;
  color: #D4AF37;
}

.benefit-card__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.benefit-card p {
  margin: 0;
  color: #B8A97A;
}

.events-testimonials {
  background-color: #1A1118;
}

.events-testimonials__title {
  margin-bottom: 2rem;
}

.events-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: #0B0A0C;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  padding: 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.testimonial-card p {
  margin: 0;
  color: #FFFFFF;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-card__author {
  color: #D4AF37;
  font-style: normal;
  font-weight: 500;
}

.events-reservation {
  background: linear-gradient(160deg, #1A1118 0%, #0B0A0C 100%);
  text-align: center;
  padding: 4rem 1.5rem;
}

.events-reservation__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.events-reservation__title {
  margin: 0;
}

.events-reservation__text {
  margin: 0;
  color: #B8A97A;
  max-width: 60ch;
}

.events-reservation__contact {
  margin: 0;
  color: #FFFFFF;
}

.events-reservation__contact a {
  color: #D4AF37;
}

.events-reservation__contact a:hover {
  color: #FFBF00;
}

.events-faq {
  background-color: #0B0A0C;
}

.events-faq__container {
  max-width: 800px;
  margin-inline: auto;
}

.events-faq__title {
  margin-bottom: 2rem;
}

.events-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #D4AF37;
  border-radius: 8px;
  background: #1A1118;
  overflow: hidden;
}

.faq-item__button {
  background: none;
  border: none;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.faq-item__button:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: #FFFFFF;
  box-shadow: none;
}

.faq-item__button:focus-visible {
  outline: 2px solid #FFBF00;
  outline-offset: -2px;
}

.faq-item__icon {
  font-size: 1.5rem;
  line-height: 1;
  color: #D4AF37;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[data-open="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item[data-open="true"] .faq-item__content {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-item__content p {
  margin: 0;
  color: #B8A97A;
}

.events-gallery {
  background-color: #0B0A0C;
}

.events-gallery__title {
  margin-bottom: 1rem;
}

.events-gallery__lead {
  color: #B8A97A;
  max-width: 70ch;
  margin-bottom: 2rem;
}

.events-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.events-gallery__item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #D4AF37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), 0 0 16px rgba(212, 175, 55, 0.35);
}

.events-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  border: none;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .events-hero {
    padding: 7rem 3rem 6rem;
  }

  .events-intro__container {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .events-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .event-feature__container {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 2rem;
    align-items: start;
  }

  .events-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .events-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .events-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .events-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .events-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .events-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-card,
  .benefit-card,
  .events-gallery__item,
  .faq-item__content,
  .faq-item__icon {
    transition-duration: 0.01ms !important;
  }
}
