/* ================================
   About Section
   DJ Oshawn Website
   Mock-Up 2: Editorial Statement
   Desktop/Base CSS Only
================================ */

.about-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 92vh;
  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);
  display: flex;
  align-items: center;
}

/* Background image */

.about-section__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.28;
  pointer-events: none;
}

.about-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(0.2) contrast(1.08) brightness(0.48) saturate(0.9);
  transform: scale(1.04);
}

/* Dark cinematic overlay */

.about-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.82) 42%, rgba(0,0,0,0.58) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.78), transparent 42%),
    radial-gradient(circle at 82% 32%, rgba(183,25,48,0.2), transparent 34%);
  pointer-events: none;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  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.12;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 14%;
  width: 42vw;
  height: 42vw;
  z-index: 3;
  background: radial-gradient(circle, rgba(183,25,48,0.18), transparent 64%);
  filter: blur(14px);
  opacity: 0.8;
  pointer-events: none;
}

/* Layout */

.about-section__inner {
  position: relative;
  z-index: 4;
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  gap: clamp(60px, 7vw, 120px);
  align-items: center;
}

/* Content */

.about-section__content {
  max-width: 860px;
}

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

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

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

.about-section__content 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;
  max-width: 920px;
}

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

.about-section__lead {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  max-width: 760px;
  margin: 34px 0 0;
}

.about-section__body {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 720px;
  margin: 22px 0 0;
}

/* Buttons */

.about-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.about-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 168px;
  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;
}

.about-section__button--primary {
  color: #ffffff;
  background: #B71930;
  border: 1px solid #B71930;
}

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

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

.about-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);
}

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

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

/* Principles */

.about-section__principles {
  display: grid;
  gap: 18px;
}

.about-principle {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01)),
    rgba(5,5,5,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 26px 28px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.about-principle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(183,25,48,0.22), transparent 46%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.about-principle:hover {
  transform: translateX(-8px);
  border-color: rgba(183,25,48,0.75);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.42),
    0 0 40px rgba(183,25,48,0.15);
}

.about-principle:hover::before {
  opacity: 1;
}

.about-principle span {
  display: block;
  position: relative;
  z-index: 2;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #B71930;
  margin-bottom: 12px;
}

.about-principle h3 {
  position: relative;
  z-index: 2;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  margin: 0 0 12px;
}

.about-principle p {
  position: relative;
  z-index: 2;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.66);
  margin: 0;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  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.16;
  pointer-events: none;
}

.about-section__inner {
  position: relative;
  z-index: 3;
}