/* ========= OLU SIGNATURE CAMPAIGN ========= */
:root {
  --magenta: #980054;       /* Magenta Velvet */
  --ivory: #FFF9F2;         /* Ivory Thread (slightly warmer white) */
  --tangerine: #F39C3D;     /* Tangerine Wool */
  --midnight: #1C1A19;      /* Deep neutral black */
}

/* Page Background */
body.olu {
  background: #fff;
  color: var(--midnight);
  font-family: "Raleway", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* ===== HERO SECTION ===== */
.vs-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #a22e6a 0%, var(--magenta) 100%);
  color: var(--ivory);
  text-align: center;
  overflow: hidden;
}

.vs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}

.vs-hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 720px;
}

.vs-hero-inner h1 {
  font-family: "Russolo", Raleway, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ivory);
}

.vs-hero-inner p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 24px;
  color: white
}

/* CTA Button */
.glow-cta {
  display: inline-block;
  background: var(--ivory);
  color: var(--magenta);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.glow-cta:hover {
  background: var(--midnight);
  color: var(--ivory);
  transform: translateY(-3px);
}

/* ===== GENERAL SECTIONS ===== */
.vs-section {
  padding: 90px 6vw;
  background: #fff;
  color: var(--midnight);
}

.vs-two {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
}

.vs-text h2 {
  font-family: "Russolo", Raleway, sans-serif;
  color: var(--magenta);
  font-size: 2rem;
  margin-bottom: 16px;
}

.vs-text p {
  font-size: 1rem;
  line-height: 1.75;
}

/* Pill Row */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill {
  background: var(--magenta);
  color: var(--ivory);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Image Media */
.vs-media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* ===== SWATCHES ===== */
.vs-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.vs-swatch {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.vs-chip {
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 12px;
  background: var(--c);
  margin-bottom: 10px;
}

/* ===== GRID OF IMAGES ===== */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.vs-grid img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
.vs-grid img:hover {
  transform: translateY(-5px);
}

/* ===== CTA SECTION ===== */
.vs-cta {
  background: var(--magenta);
  color: var(--ivory);
  text-align: center;
}
.vs-cta h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
.discuss-btn {
  display: inline-block;
  background: var(--ivory);
  color: var(--magenta);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}
.discuss-btn:hover {
  background: var(--midnight);
  color: var(--ivory);
  transform: translateY(-3px);
}

/* ===== FADE ANIMATIONS ===== */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .vs-two {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .vs-section {
    padding: 60px 5vw;
  }
  .vs-hero-inner h1 {
    font-size: 2.4rem;
  }
  .vs-hero-inner p {
    font-size: 1rem;
  }
}


