@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap");

:root {
  --eo-bg: #05050a;
  --eo-yellow: #ffde59;
  --eo-yellow-hover: #ffe878;
  --eo-text: rgba(255, 255, 255, 0.78);
  --eo-muted: rgba(255, 255, 255, 0.56);
  --eo-border: rgba(255, 222, 89, 0.18);
  --eo-surface: rgba(255, 255, 255, 0.035);
}

.page--event-organiser {
  background: var(--eo-bg);
  color: #fff;
  overflow-x: clip;
}

.eo-container {
  width: min(100% - 2rem, 72.624rem);
  margin-inline: auto;
}

/* —— Hero —— */
.eo-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: min(68vh, 34rem);
  min-height: 20rem;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.eo-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.eo-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.eo-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.22) 0%, rgba(5, 5, 10, 0.12) 40%, rgba(5, 5, 10, 0.55) 72%, var(--eo-bg) 100%),
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(255, 222, 89, 0.06), transparent 60%);
}

.eo-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 46rem);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.eo-hero__brand {
  display: block;
  margin: 0 0 0.85rem;
  color: var(--eo-yellow);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.eo-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.eo-hero__text {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.55;
}

.eo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.eo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--eo-yellow);
  color: #05050a;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.eo-btn:hover,
.eo-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 222, 89, 0.28);
  background: var(--eo-yellow-hover);
  outline: none;
}

.eo-btn--ghost {
  background: transparent;
  color: var(--eo-yellow);
  border-color: rgba(255, 222, 89, 0.55);
}

.eo-btn--ghost:hover,
.eo-btn--ghost:focus-visible {
  background: rgba(255, 222, 89, 0.1);
  box-shadow: none;
}

/* —— Shared section chrome —— */
.eo-section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.eo-section--tight {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.eo-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--eo-yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eo-heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.eo-heading--center {
  text-align: center;
}

.eo-lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--eo-text);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.6;
}

.eo-lead--center {
  margin-inline: auto;
  text-align: center;
}

.eo-header {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.eo-header--center {
  text-align: center;
}

/* —— About —— */
.eo-about {
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(255, 222, 89, 0.05), transparent 55%),
    var(--eo-bg);
}

.eo-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.eo-about__copy p {
  margin: 0;
  color: var(--eo-text);
  font-size: 1rem;
  line-height: 1.65;
}

.eo-about__copy .eo-heading {
  margin-bottom: 1.1rem;
}

.eo-about__copy p + p {
  margin-top: 1rem;
}

.eo-about__highlight {
  margin-top: 1.5rem !important;
  color: var(--eo-yellow);
  font-family: "Syne", "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.eo-about__panel {
  background: var(--eo-yellow);
  color: #05050a;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  width: min(100%, 28rem);
  justify-self: end;
  margin-top: 1.25rem;
}

.eo-about__panel-title {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.eo-about__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.eo-about__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.eo-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #05050a;
}

/* —— Event types —— */
.eo-types {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.eo-types .eo-header {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.eo-types__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.65rem;
}

.eo-type {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--eo-border);
  background: var(--eo-surface);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  min-width: 0;
}

/* Top: 2 large | Middle: 3 equal | Bottom: 2 large */
.eo-types__grid .eo-type:nth-child(1),
.eo-types__grid .eo-type:nth-child(2),
.eo-types__grid .eo-type:nth-child(6),
.eo-types__grid .eo-type:nth-child(7) {
  grid-column: span 6;
}

.eo-types__grid .eo-type:nth-child(3),
.eo-types__grid .eo-type:nth-child(4),
.eo-types__grid .eo-type:nth-child(5) {
  grid-column: span 4;
}

.eo-type:hover,
.eo-type:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 222, 89, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.eo-type__image {
  position: relative;
  height: 7rem;
  aspect-ratio: auto;
  overflow: hidden;
  background: #120a18;
}

.eo-types__grid .eo-type:nth-child(1) .eo-type__image,
.eo-types__grid .eo-type:nth-child(2) .eo-type__image,
.eo-types__grid .eo-type:nth-child(6) .eo-type__image,
.eo-types__grid .eo-type:nth-child(7) .eo-type__image {
  height: 8.25rem;
}

.eo-type__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.eo-type:hover .eo-type__image img {
  transform: scale(1.05);
}

.eo-type__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.7rem 0.85rem 0.85rem;
  flex: 1;
}

.eo-type__title {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.eo-type__text {
  margin: 0;
  color: var(--eo-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* —— Included —— */
.eo-included {
  padding-top: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 55% 45% at 90% 10%, rgba(255, 222, 89, 0.06), transparent 50%),
    var(--eo-bg);
}

.eo-included .eo-header,
.eo-steps .eo-header,
.eo-why .eo-header {
  margin-bottom: clamp(1.2rem, 2.4vw, 1.75rem);
}

.eo-included__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.eo-include {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid var(--eo-border);
  background:
    linear-gradient(180deg, rgba(255, 222, 89, 0.06), transparent 70%),
    var(--eo-surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.eo-include:hover {
  border-color: rgba(255, 222, 89, 0.4);
  transform: translateY(-2px);
}

.eo-include__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--eo-yellow);
  color: #05050a;
}

.eo-include__icon svg {
  display: block;
}

.eo-include__label {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

/* —— How it works —— */
.eo-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.eo-steps {
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.eo-step {
  border: 1px solid var(--eo-border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 222, 89, 0.06), transparent 55%),
    var(--eo-surface);
}

.eo-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--eo-yellow);
  color: #05050a;
  font-size: 0.9rem;
  font-weight: 800;
}

.eo-step__label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--eo-yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eo-step__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.eo-step__text {
  margin: 0;
  color: var(--eo-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* —— Why choose —— */
.eo-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.eo-why {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.eo-feature {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--eo-border);
  background: var(--eo-surface);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.eo-feature:hover {
  border-color: rgba(255, 222, 89, 0.38);
  transform: translateY(-2px);
}

.eo-feature__number {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--eo-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eo-feature__title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.eo-feature__text {
  margin: 0;
  color: var(--eo-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* —— Final CTA —— */
.eo-cta {
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.eo-cta__panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 222, 89, 0.22);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(5, 5, 10, 0.78) 0%, rgba(5, 5, 10, 0.72) 45%, rgba(5, 5, 10, 0.88) 100%),
    url("../Website-Images/About/CTA-beach-party.png") center / cover no-repeat;
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34);
  text-align: center;
}

.eo-cta__content {
  position: relative;
  z-index: 1;
}

.eo-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.eo-cta__text {
  max-width: 30rem;
  margin: 0.75rem auto 1.1rem;
  color: var(--eo-text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.eo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.eo-faq-section {
  padding: clamp(4.5rem, 9vw, 7rem) 1.25rem clamp(4rem, 8vw, 6rem);
}

.eo-faq {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.eo-faq__header {
  margin-bottom: 1.35rem;
  text-align: center;
}

.eo-faq .outro-faq {
  margin-top: 0;
}

.eo-faq .outro-faq__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

/* —— Reveal —— */
.eo-reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .eo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .eo-type,
  .eo-type__image img,
  .eo-include,
  .eo-feature {
    transition: none;
  }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .eo-included__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* 4 smaller + 3 wider — no orphan */
  .eo-types__grid .eo-type:nth-child(n) {
    grid-column: span 3;
  }

  .eo-types__grid .eo-type:nth-child(5),
  .eo-types__grid .eo-type:nth-child(6),
  .eo-types__grid .eo-type:nth-child(7) {
    grid-column: span 4;
  }

  .eo-types__grid .eo-type:nth-child(n) .eo-type__image {
    height: 7rem;
  }
}

@media (max-width: 900px) {
  .eo-about__grid {
    grid-template-columns: 1fr;
  }

  .eo-types__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eo-types__grid .eo-type:nth-child(n) {
    grid-column: auto;
  }

  .eo-types__grid .eo-type:nth-child(7) {
    grid-column: 1 / -1;
  }

  .eo-steps__grid,
  .eo-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .eo-hero {
    aspect-ratio: 3 / 2;
    max-height: min(48vh, 22rem);
    min-height: 16rem;
  }

  .eo-about__list {
    grid-template-columns: 1fr;
  }

  .eo-types__grid {
    grid-template-columns: 1fr;
  }

  .eo-types__grid .eo-type:nth-child(n),
  .eo-types__grid .eo-type:nth-child(7) {
    grid-column: auto;
  }

  .eo-steps__grid,
  .eo-why__grid,
  .eo-included__grid {
    grid-template-columns: 1fr;
  }
}
