/* ================================
   Event Gallery Section
   DJ Oshawn Website
   Option 2: Editorial Angled Gallery
   Desktop/Base CSS Only
================================ */

.gallery-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  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%);
  color: #ffffff;
  padding: clamp(54px, 6vw, 96px) 3.5vw clamp(80px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.14;
  pointer-events: none;
}

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

/* ================================
   Main Layout
================================ */

.gallery-section__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(42px, 4vw, 76px);
  align-items: center;
}

/* ================================
   Left Editorial Content
================================ */

.gallery-section__content {
  max-width: 330px;
}

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

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

.gallery-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;
}

.gallery-section__content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(40px, 3.2vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0;
  max-width: 320px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.gallery-section__content h2 span {
  color: #B71930;
  display: block;
}

.gallery-section__content p {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 26px 0 0;
  max-width: 310px;
}

.gallery-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  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;
}

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

.gallery-section__button span {
  transition: transform 0.25s ease;
}

.gallery-section__button:hover span {
  transform: translateX(4px);
}

/* ================================
   Editorial Gallery Strip
================================ */

.gallery-section__cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1.18fr 1.18fr 1.18fr 0.88fr;
  gap: clamp(14px, 1.25vw, 22px);
  align-items: stretch;
}

/* ================================
   Base Card
================================ */

.gallery-card {
  position: relative;
  min-height: clamp(320px, 24vw, 420px);
  background: #090909;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transform: skewX(-6deg);
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

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

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5) 42%, transparent 72%),
    radial-gradient(circle at top right, rgba(183,25,48,0.2), transparent 42%);
  z-index: 2;
  pointer-events: none;
}

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

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

/* ================================
   Image
================================ */

.gallery-card__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: skewX(6deg) scale(1.2);
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important;
  display: block;
  filter: saturate(0.94) contrast(1.06) brightness(0.78);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

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

/* Optional individual crops */
.gallery-card--one .gallery-card__image {
  object-position: center center;
}

.gallery-card--two .gallery-card__image {
  object-position: center center;
}

.gallery-card--three .gallery-card__image {
  object-position: center center;
}

/* ================================
   Card Number
================================ */

.gallery-card__number {
  position: absolute;
  top: 22px;
  left: 28px;
  z-index: 3;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(52px, 3.7vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(183,25,48,0.9);
  text-shadow: 0 0 24px rgba(183,25,48,0.35);
  transform: skewX(6deg);
}

/* ================================
   Card Text
================================ */

.gallery-card__content {
  position: absolute;
  left: 28px;
  right: 22px;
  bottom: 28px;
  z-index: 3;
  transform: skewX(6deg);
}

.gallery-card__content h3 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(24px, 1.65vw, 34px);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 0.98;
  color: #ffffff;
  margin: 0 0 10px;
}

.gallery-card__content p {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B71930;
  margin: 0;
}

/* ================================
   Open Icon
================================ */

.gallery-card__icon {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 4;
  transform: skewX(6deg);
  font-size: 22px;
  line-height: 1;
  color: #B71930;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.gallery-card:hover .gallery-card__icon {
  opacity: 1;
  transform: skewX(6deg) translate(4px, -4px);
}

/* ================================
   More Albums Card
================================ */

.gallery-card--more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background:
    radial-gradient(circle at center, rgba(183,25,48,0.22), transparent 54%),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    #080808;
}

.gallery-card--more::before {
  background:
    linear-gradient(to top, rgba(0,0,0,0.86), transparent 64%),
    radial-gradient(circle at center, rgba(183,25,48,0.34), transparent 52%);
}

.gallery-card__more-inner {
  position: relative;
  z-index: 3;
  transform: skewX(6deg);
  text-align: center;
  padding: 30px;
}

.gallery-card__grid-icon {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 6px;
  justify-content: center;
  margin: 0 auto 30px;
}

.gallery-card__grid-icon i {
  width: 7px;
  height: 7px;
  background: #B71930;
  box-shadow: 0 0 12px rgba(183,25,48,0.55);
}

.gallery-card__more-inner h3 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(28px, 2.2vw, 44px);
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px;
}

.gallery-card__more-inner p {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B71930;
  margin: 0;
}

.gallery-section__inner {
  gap: clamp(28px, 3vw, 54px);
}

.gallery-section__cards {
  grid-template-columns: 1.22fr 1.22fr 1.22fr 0.72fr;
  transform: translateY(-12px);
}

.gallery-card {
  min-height: clamp(285px, 21vw, 370px);
  border-color: rgba(183, 25, 48, 0.16);
}

.gallery-card:hover {
  border-color: rgba(183, 25, 48, 0.9);
}

