/* ============================================================
   Outfevibe — Clean Obsidian Rose Theme (style.css)
   Single-file, optimized, responsive, dark-only
   Replace your old style.css with this file.
   ============================================================ */

/* -------------------------
   0. Brand variables
   ------------------------- */
:root {
  --rose-soft: #F7E8EC;
  /* soft highlight */
  --rose-mauve: #C57C8A;
  /* primary accent */
  --rose-wine: #732C3F;
  /* secondary accent */
  --rose-dark: #080808;
  /* main bg */
  --brand-gradient: linear-gradient(90deg, #C57C8A, #732C3F);
  --muted: #bfbfbf;
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-weak: rgba(255, 255, 255, 0.02);
  --max-width: 1100px;
  --radius-lg: 18px;
  --radius-sm: 10px;
  --ff: "Inter", "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* wardrobe vle global variable declare  */
:root {
    --rose-soft: #f7e8ec;
    --rose-mauve: #c57c8a;
    --rose-dark: #1a0b12;
    --muted: #bbbbbb;

    --card-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.06);

    --brand-gradient: linear-gradient(90deg,#ff71c6,#b66bff,#8f49ff);
}


/* -------------------------
   1. Base / Reset
   ------------------------- */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--rose-dark);
  color: var(--rose-soft);
  font-family: var(--ff);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 60%), #000;

}

a {
  color: var(--rose-mauve);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--ff);
}

/* -------------------------
   2. Layout helpers
   ------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px;
}

/* Centered block helper that keeps content centered horizontally */
.center-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------
   3. Header / Nav
   ------------------------- */
header.page-header,
header {
  width: 100%;
  background: transparent;
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Center the navigation menu */
.header-inner,
.page-header>.container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
}

.header-right {
  justify-self: end;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  justify-self: start;
}

.logo-row img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  color: var(--rose-mauve);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 20px;
  justify-content: center;
}

.page-nav a {
  color: var(--rose-soft);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 6px;
  border-radius: 8px;
  transition: all .18s ease;
}

.page-nav a:hover {
  color: var(--rose-mauve);
  text-shadow: 0 0 8px rgba(197, 124, 138, 0.12);
  transform: translateY(-1px);
}

/* header right area */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.profile-pill {
  background: var(--card-bg);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 13px;
  color: var(--rose-soft);
}

/* -------------------------
   4. Hero — Centered TEXT | IMAGE block
   ------------------------- */
.hero-wrapper {
  padding: 60px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  padding: 36px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Left: Text block */
.hero-left {
  flex: 1;
  min-width: 280px;
  text-align: left;
  z-index: 2;
}

.hero-left .kicker {
  color: var(--rose-mauve);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.hero-heading {
  font-size: 40px;
  line-height: 1.03;
  margin: 0 0 12px 0;
  color: var(--rose-soft);
  font-weight: 800;
}

.hero-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 520px;
}

/* CTA */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 40px;
  background: var(--brand-gradient);
  color: white;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 30px rgba(197, 124, 138, 0.08);
  transition: transform .18s, opacity .18s;
}

.hero-cta:hover {
  transform: translateY(-3px);
  opacity: .98;
}

/* Right: Image block */
.hero-right {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-right .hero-image {
  width: 420px;
  max-width: 40vw;
  border-radius: 16px;
  object-fit: cover;
  transform: translateY(6px);
  animation: floatY 5s ease-in-out infinite;
  filter: drop-shadow(0 28px 80px rgba(115, 44, 63, 0.18));
  position: relative;
  z-index: 3;
}

/* soft radial glow behind image */
.hero-right::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(197, 124, 138, 0.22), transparent 60%);
  filter: blur(32px);
  z-index: 1;
}

/* small particles (decorative) */
.floating-particles {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
}

/* animation keyframes */
@keyframes floatY {
  0% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(6px);
  }
}

/* small fade-up for hero text */
.hero-heading,
.hero-sub,
.hero-cta {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp .9s ease forwards;
}

.hero-heading {
  animation-delay: .08s;
}

.hero-sub {
  animation-delay: .18s;
}

.hero-cta {
  animation-delay: .34s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------
   5. Controls / Filters area (reused on AI page)
   ------------------------- */
.controls-wrap {
  margin-top: 18px;
  background: var(--glass-weak);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

select,
input[type="text"] {
  min-width: 150px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  color: var(--rose-soft);
  font-size: 14px;
}

select option {
  background: var(--rose-dark);
  color: var(--rose-soft);
}

/* buttons: primary / ghost */
.btn-primary,
.btn-primary:focus {
  background: var(--brand-gradient);
  color: white;
  border: 0;
  padding: 10px 18px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--rose-soft);
  cursor: pointer;
}

/* results count */
.results-meta {
  color: var(--muted);
  font-size: 13px;
}

/* -------------------------
   6. Strips: wardrobe / trending
   ------------------------- */
.strip {
  margin-top: 28px;
}

.strip-title {
  font-weight: 800;
  color: var(--rose-soft);
  margin-bottom: 8px;
  font-size: 16px;
}

.horizontal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

/* mini card */
.mini-card {
  flex: 0 0 140px;
  width: 140px;
  background: var(--card-bg);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.mini-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

/* -------------------------
   7. Result cards (AI suggestions)
   ------------------------- */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px;
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.card img {
  width: 160px;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
  color: var(--rose-soft);
  font-weight: 700;
}

.tags {
  margin-top: 8px;
}

.tag {
  display: inline-block;
  background: rgba(197, 124, 138, 0.12);
  color: var(--rose-mauve);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  margin-right: 6px;
}

/* card actions */
.card-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card .meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

/* -------------------------
   8. Feature cards / how it works
   ------------------------- */
/* how it works  */
.howitworks-section {
  margin-top: 80px;
  text-align: center;
}

.howitworks-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.how-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 124, 138, 0.25);
  box-shadow: 0 18px 50px rgba(197, 124, 138, 0.18);
}

.how-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.how-card h3 {
  color: var(--rose-soft);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.how-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.feature-card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  transition: transform .25s, box-shadow .25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(115, 44, 63, 0.06);
  border-color: rgba(197, 124, 138, 0.14);
}

/* Feature Section */
.features-section {
  text-align: center;
  margin: 80px 0;
  padding: 20px;
}

.features-section h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature-subtitle {
  font-size: 1rem;
  color: #c7c7c7;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  padding: 0 40px;
}

.feature-card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(255, 80, 180, 0.3);
}

.feature-icon-small {
  width: 120px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #ff4dcc);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: #ffb9f3;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.85rem;
  color: #d8d8d8;
  line-height: 1.3;
}

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card-link:hover .feature-card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 60, 150, 0.35);
}

/* Responsive */
@media(max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-pill {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 20px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--rose-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.25s;
}

.feature-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 124, 138, 0.25);
  box-shadow: 0 14px 40px rgba(197, 124, 138, 0.18);
}

.f-icon {
  font-size: 18px;
}

/* Explore Feature Title */
.features-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.feature-subtitle {
  text-align: center;
  color: #bfbfbf;
  margin-bottom: 40px;
  font-size: 1rem;
}

/* small feature text */
.feature-card h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--rose-soft);
}

/* Section Titles */
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--rose-soft);
}

.section-desc {
  color: var(--muted);
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
}

/* Center all main sections uniformly */
section.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Center section titles */
.section-title {
  text-align: center;
}

/* Center section text */
.section-desc {
  text-align: center;
}

/* Center How It Works title */
#howItWorksTitle,
.howItWorksTitle,
h2.section-title {
  text-align: center !important;
}


/* HOW IT WORKS */
.how-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-items: center;
}

.how-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  transition: 0.25s ease;
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 124, 138, 0.25);
  box-shadow: 0 12px 28px rgba(197, 124, 138, 0.15);
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--rose-mauve);
}

.step-text {
  margin-top: 8px;
  color: var(--rose-soft);
  font-size: 16px;
  font-weight: 500;
}


/* -------------------------
   9. CTA section (polish)
   ------------------------- */
.cta-enhanced {
  margin-top: 36px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-left h3 {
  margin: 0;
  font-size: 20px;
  color: var(--rose-soft);
}

.cta-left p {
  margin: 6px 0 0 0;
  color: var(--muted);
}

/* CTA button override */
.cta-btn {
  background: var(--brand-gradient);
  color: white;
  border: 0;
  padding: 12px 18px;
  border-radius: 40px;
  font-weight: 800;
  cursor: pointer;
}

/* -------------------------
   10. Footer
   ------------------------- */
footer.page-footer,
footer {
  margin-top: 48px;
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--rose-soft);
  background: transparent;
  font-size: 14px;
}

/* -------------------------
   11. Tiny utilities
   ------------------------- */
.text-muted {
  color: var(--muted);
}

.center {
  text-align: center;
}

.row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* -------------------------
   12. Responsiveness
   ------------------------- */
@media (max-width:1000px) {
  .hero {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 18px;
  }

  .hero-right {
    width: 100%;
    max-width: 420px;
  }

  .hero-left {
    text-align: center;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-nav {
    display: none;
  }

  /* mobile simple header; keep if you have hamburger */
  header.page-header {
    padding: 12px;
  }

  .hero-heading {
    font-size: 30px;
  }
}

@media (max-width:420px) {
  .hero-heading {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-right::before {
    width: 320px;
    height: 320px;
    filter: blur(30px);
  }

  .mini-card {
    width: 120px;
    flex: 0 0 120px;
  }
}

/* -------------------------
   13. Accessibility / focus
   ------------------------- */
button:focus,
a:focus,
select:focus {
  outline: 3px solid rgba(197, 124, 138, 0.12);
  outline-offset: 3px;
}

/* Slight shadow + depth around hero container */
.hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-radius: 22px;
}

/* Improve neon glow */
.hero-right::before {
  background: radial-gradient(circle, rgba(197, 124, 138, 0.28), transparent 70%);
  filter: blur(40px);
}

/* Make text side breathe more */
.hero-left {
  padding-left: 20px;
}

/* Slightly larger welcome heading */
.hero-heading {
  font-size: 48px;
  margin-bottom: 8px;
}

/* Balance vertical alignment */
.hero {
  padding: 60px 40px;
}

/* moodboard images and video  */
/* Outfevibe Aesthetic Moodboard */
.aesthetic-gallery {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

/* 5-Reel Instagram-Style Row */
.reels-row {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.reel {
  width: 180px;
  /* perfect reel width */
  height: 320px;
  /* perfect reel height */
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
  transition: 0.3s ease;
  flex-shrink: 0;
  /* prevents shrinking */
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* same as Insta reels */
}

/* Hover effect */
.reel:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(197, 124, 138, 0.28);
}

/* Horizontal scroll bar hidden */
.reels-row::-webkit-scrollbar {
  height: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .reel {
    width: 140px;
    height: 260px;
  }
}

/* Fix spacing for Aesthetic section */
.aesthetic-section {
  margin-top: 60px;
  /* space from previous section */
  text-align: center;
}

.aesthetic-section .section-title {
  margin-bottom: 10px;
  /* less gap before description */
}

.aesthetic-section .section-desc {
  max-width: 720px;
  margin: 10px auto 20px auto;
  /* balanced spacing */
  line-height: 1.6;
}

.reels-row {
  margin-top: 10px !important;
  /* reduce big gap */
}

/* Quote Section */
.quote-section {
  text-align: center;
  margin-top: 60px;
}

.main-quote {
  font-size: 1.5rem;
  color: #e8e8e8;
  width: 70%;
  margin: auto;
  line-height: 1.6;
}


/* Why Outfevibe */
.why-outfevibe {
  text-align: center;
  margin-top: 80px;
}

.why-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.why-outfevibe h2 {
  font-size: 2rem;
  color: white;
}

.why-text {
  color: #cfcfcf;
  width: 60%;
  margin: 15px auto;
}


/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 80px;
  padding: 40px 0;
}

.sparkle {
  font-size: 1.5rem;
  color: #ff3ccf;
}

.cta-title {
  font-size: 1.9rem;
  color: white;
  margin-top: 10px;
}

.cta-subtext {
  color: #d9d9d9;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.cta-button {
  padding: 12px 28px;
  background: linear-gradient(90deg, #ff55d4, #b845ff);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.3s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 50, 150, 0.6);
}


/* Author Section */
.author-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  padding: 20px;
}

.author-text {
  width: 45%;
}

.author-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
}

.author-text p {
  color: #cfcfcf;
  line-height: 1.5;
}

.social-links .social-icon {
  display: inline-block;
  margin-right: 15px;
  color: #ff55d4;
  text-decoration: none;
}

.author-photo img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid #ff55d4;
  box-shadow: 0 0 15px rgba(255, 70, 180, 0.6);
}


/* Feedback Section */
.feedback-section {
  text-align: center;
  margin: 80px auto;
}

.feedback-form {
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form input,
.feedback-form textarea {
  background: #111;
  border: 1px solid #444;
  padding: 12px;
  border-radius: 10px;
  color: white;
}

.feedback-form button {
  background: #ff55d4;
  padding: 12px;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* Logo Above Why Section */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.outfevibe-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(255, 70, 180, 0.5);
}

.outfevibe-logo img {
  width: 60px;
}

/* Quote */
.quote-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  margin: 80px auto 20px;
  z-index: 2;
}

.quote-heading .highlight {
  color: #ff6ddd;
  font-weight: 700;
}

/* Neon Divider */
.neon-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4ddb, transparent);
  margin: 10px auto 30px;
}

.underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff66d4, transparent);
  margin: 0 auto 20px;
}

/* ANIMATION */
.vibe-section * {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Why Outfevibe */
.why-outfevibe {
  text-align: center;
  margin-bottom: 40px;
}

.why-outfevibe h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}

.why-outfevibe p {
  color: #cfcfcf;
  width: 60%;
  margin: 10px auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* BACKGROUND GRADIENT AURA */
.vibe-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 50, 200, 0.15), transparent);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 0;
}