/* ================================
   Services / Booking Section
   DJ Oshawn Website
   Desktop/Base CSS Only
================================ */

.services-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(183, 25, 48, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(183, 25, 48, 0.08), transparent 30%),
    linear-gradient(135deg, #030303 0%, #070707 52%, #120407 100%);
    padding: clamp(54px, 6vw, 96px) 3.5vw clamp(80px, 8vw, 120px);
}

.services-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.52;
  pointer-events: none;
}

.services-section__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: grayscale(0.05) contrast(1.18) brightness(0.68) saturate(1);
  transform: scale(1.03);
}

.services-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.48) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 42%),
    radial-gradient(circle at 74% 20%, rgba(183,25,48,0.22), transparent 34%);
  pointer-events: none;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.13;
  pointer-events: none;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 8%;
  width: 44vw;
  height: 44vw;
  z-index: 3;
  background: radial-gradient(circle, rgba(183,25,48,0.2), transparent 62%);
  filter: blur(16px);
  opacity: 0.8;
  pointer-events: none;
}

.services-section__inner {
  position: relative;
  z-index: 4;
  width: min(100%, 1600px);
  margin: 0 auto;
}

/* ================================
   Intro
================================ */

.services-section__intro {
  max-width: 760px;
  margin-bottom: clamp(54px, 5.5vw, 88px);
}

.services-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.services-section__eyebrow p {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #B71930;
  margin: 0;
  line-height: 1;
}

.services-section__eyebrow span {
  display: block;
  width: 140px;
  height: 1px;
  background: #B71930;
  box-shadow: 0 0 10px rgba(183,25,48,0.45);
}

.services-section__intro h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(58px, 6vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #ffffff;
  margin: 0;
}

.services-section__intro h2 span {
  display: block;
  color: #B71930;
}

.services-section__intro p {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
  max-width: 720px;
  margin: 32px 0 0;
}

/* ================================
   Intro Buttons
================================ */

.services-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.services-section__button,
.services-section__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 174px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 32px;
  line-height: 1;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.services-section__button--primary,
.services-section__cta-button {
  color: #ffffff;
  background: #B71930;
  border: 1px solid #B71930;
}

.services-section__button--primary:hover,
.services-section__cta-button:hover {
  color: #000000;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 18px 45px rgba(255,255,255,0.14);
}

.services-section__button--ghost {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.24);
}

.services-section__button--ghost:hover {
  color: #ffffff;
  border-color: #B71930;
  background: rgba(183,25,48,0.12);
  box-shadow: 0 18px 45px rgba(183,25,48,0.16);
}

.services-section__button span,
.services-section__cta-button span {
  transition: transform 0.25s ease;
}

.services-section__button:hover span,
.services-section__cta-button:hover span {
  transform: translateX(4px);
}

/* ================================
   Service Cards
================================ */

.services-section__cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 22px);
  margin-top: 12px;
}

.service-card {
  position: relative;
  min-height: clamp(280px, 23vw, 380px);
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
  transform: skewX(-5deg);
  isolation: isolate;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.service-card:hover {
  transform: skewX(-5deg) translateY(-10px);
  border-color: rgba(183,25,48,0.9);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.58),
    0 0 46px rgba(183,25,48,0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0,0,0,0.96), rgba(0,0,0,0.48) 50%, rgba(0,0,0,0.12) 100%),
    radial-gradient(circle at top left, rgba(183,25,48,0.2), transparent 42%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border: 1px solid rgba(183,25,48,0);
  pointer-events: none;
  transition: border-color 0.32s ease, box-shadow 0.32s ease;
}

.service-card:hover::after {
  border-color: rgba(183,25,48,0.7);
  box-shadow: inset 0 0 34px rgba(183,25,48,0.12);
}

.service-card__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: skewX(5deg) scale(1.18);
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(0.9) contrast(1.06) brightness(0.72);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08) brightness(0.9);
}

.service-card__icon {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 3;
  transform: skewX(5deg);
  width: 34px;
  height: 34px;
  color: #B71930;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-card__content {
  position: absolute;
  left: 26px;
  right: 24px;
  bottom: 28px;
  z-index: 3;
  transform: skewX(5deg);
}

.service-card__content h3 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(25px, 1.75vw, 36px);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}

.service-card__content span {
  display: block;
  width: 48px;
  height: 2px;
  background: #B71930;
  margin: 16px 0 14px;
}

.service-card__content p {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0;
}

/* ================================
   Bottom CTA
================================ */

.services-section__cta {
  margin-top: clamp(36px, 4vw, 62px);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(5,5,5,0.72);
  padding: clamp(28px, 3vw, 42px) clamp(28px, 4vw, 62px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(260px, auto) auto;
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
}

.services-section__cta-icon {
  width: 44px;
  height: 44px;
  color: #B71930;
}

.services-section__cta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.services-section__cta h3 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(32px, 2.5vw, 52px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.services-section__cta p {
  position: relative;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(16px, 1.1vw, 19px);
  color: rgba(255,255,255,0.72);
  margin: 0;
  padding-left: clamp(20px, 2vw, 34px);
}

.services-section__cta p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 34px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
}

.services-section__cta-button {
  white-space: nowrap;
}