/* ===== Page container ===== */

.site-container {
  width: 100%;
  max-width: var(--canvas-width);
  margin-inline: auto;
}

.section-inner {
  padding-inline: var(--gutter);
}

/* ===== Pill Button ===== */

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--btn-padding);
  border: 0;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.btn-pill:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Cream pill — used on dark sections */
.btn-pill--light {
  background-color: var(--clr-cream);
  color: var(--clr-dark);
}

/* White pill — used on dark sections ("Find tickets", "View all" on Shows) */
.btn-pill--white {
  background-color: var(--clr-white);
  color: var(--clr-dark);
}

/* Dark pill — used on light/cream sections ("View all", merch CTA) */
.btn-pill--dark {
  background-color: var(--clr-dark);
  color: var(--clr-cream);
}

/* Small size — "Find tickets" */
.btn-pill--sm {
  font-size: var(--fs-ui);
  font-weight: var(--fw-medium);
}

/* ===== Section Heading + Squiggle ===== */

.section-heading {
  display: inline-block;
}

.section-heading__title {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-section-heading);
  line-height: var(--lh-body);
}

.section-heading--light .section-heading__title {
  color: var(--clr-dark);
}

.section-heading--dark .section-heading__title {
  color: var(--clr-cream);
}

.section-heading__squiggle {
  display: block;
  margin-top: 4px;
  width: 237px;   /* matches squiggle.svg viewBox width */
  height: auto;
}

/* ===== Section Watermark ===== */

.section-watermark {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-watermark);
  line-height: var(--lh-display);
  color: var(--clr-ghost);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ===== Socials Row ===== */

.socials {
  display: flex;
  align-items: center;
  gap: var(--social-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--social-size);
  height: var(--social-size);
  transition: opacity 0.18s ease;
}

.socials__link:hover {
  opacity: 0.8;
}

.socials__link img,
.socials__link svg {
  width: 100%;
  height: 100%;
  display: block;
}

.socials--lg .socials__link {
  width: var(--social-size-lg);
  height: var(--social-size-lg);
}

/* ===== Label Caps ===== */
/* Used for "STAY CONNECTED WITH DAMON", "SAY HELLO" */

.label-caps {
  font-family: var(--font-body);
  font-size: var(--fs-subhead);
  font-weight: var(--fw-medium);
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: var(--lh-body);
}

/* ===== Swiper pagination overrides ===== */
/* Scoped to .hero-carousel to avoid bleeding into other Swiper instances */

.hero-carousel .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--dot-gap);
  bottom: 28px;
}

.hero-carousel .swiper-pagination-bullet {
  width: var(--dot-width);
  height: var(--dot-height);
  border-radius: var(--dot-radius);
  background-color: var(--clr-white);
  opacity: 1;
  margin: 0;
  flex-shrink: 0;
}

.hero-carousel .swiper-pagination-bullet-active {
  background-color: var(--clr-gold);
}

/* ===== Swiper arrow overrides ===== */

.hero-carousel .swiper-button-prev,
.hero-carousel .swiper-button-next {
  width: 56px;
  height: 56px;
  background-color: var(--clr-arrow-bg);
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.hero-carousel .swiper-button-prev {
  left: 40px;
}

.hero-carousel .swiper-button-next {
  right: 40px;
}

.hero-carousel .swiper-button-prev::after,
.hero-carousel .swiper-button-next::after {
  font-size: 16px;
  color: var(--clr-white);
  font-weight: var(--fw-medium);
}

/* Hide arrows on mobile — dots only */
@media (max-width: 767px) {
  .hero-carousel .swiper-button-prev,
  .hero-carousel .swiper-button-next {
    display: none;
  }
}
