/* ============================================
   DHA Directory Bold Light - Energetic Theme
   Inspired by: Stripe, Lemon Squeezy, Framer
   ============================================ */

/* Google Font: Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===========================================
   Design System Variables
   =========================================== */
:root {
  /* Primary - Rose/Coral (energetic, modern) */
  --color-primary-50: #fff1f2;
  --color-primary-100: #ffe4e6;
  --color-primary-200: #fecdd3;
  --color-primary-300: #fda4af;
  --color-primary-400: #fb7185;
  --color-primary-500: #f43f5e;
  --color-primary-600: #e11d48;
  --color-primary-700: #be123c;

  /* Secondary - Orange (warmth, energy) */
  --color-secondary-400: #fb923c;
  --color-secondary-500: #f97316;
  --color-secondary-600: #ea580c;

  /* Neutral - Slate (clean, modern) */
  --color-neutral-50: #f8fafc;
  --color-neutral-100: #f1f5f9;
  --color-neutral-200: #e2e8f0;
  --color-neutral-300: #cbd5e1;
  --color-neutral-400: #94a3b8;
  --color-neutral-500: #64748b;
  --color-neutral-600: #475569;
  --color-neutral-700: #334155;
  --color-neutral-800: #1e293b;
  --color-neutral-900: #0f172a;

  /* Accent - Emerald for success */
  --color-accent-500: #10b981;
  --color-accent-600: #059669;

  /* Warm - Amber for ratings */
  --color-warm-400: #fbbf24;
  --color-warm-500: #f59e0b;

  /* Semantic tokens */
  --color-bg: #ffffff;
  --color-bg-subtle: var(--color-neutral-50);
  --color-surface: #ffffff;
  --color-text: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-600);
  --color-text-muted: var(--color-neutral-400);
  --color-border: var(--color-neutral-200);
  --color-border-subtle: var(--color-neutral-100);
  --color-link: var(--color-primary-500);

  /* Gradients - Bold and energetic */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-secondary-400) 100%);
  --gradient-primary-hover: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-secondary-500) 100%);
  --gradient-hero-blob: linear-gradient(135deg, rgba(244,63,94,0.15) 0%, rgba(251,146,60,0.1) 100%);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: var(--font-sans);

  /* Sizing */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows - Bold depth */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(15, 23, 42, 0.15);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ===========================================
   Base & Reset
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-600);
}

/* ===========================================
   Typography
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

p {
  margin: 0 0 var(--space-md);
}

/* ===========================================
   Layout
   =========================================== */
.bold-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.bold-section {
  padding: var(--space-4xl) 0;
}

/* ===========================================
   Buttons - Gradient powered
   =========================================== */
.bold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.bold-btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.3);
}

.bold-btn--primary:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.4);
  color: white;
}

.bold-btn--secondary {
  background: white;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.bold-btn--secondary:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
}

/* ===========================================
   Header
   =========================================== */
.bold-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
}

.bold-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.bold-header__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bold-header__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.875rem;
}

.bold-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.bold-header__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.bold-header__link:hover {
  color: var(--color-text);
}

.bold-header__cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ===========================================
   Hero - Bold with decorative blobs
   =========================================== */
.bold-hero {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
  background: var(--color-bg);
}

/* Decorative blob shapes */
.bold-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: var(--gradient-hero-blob);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: blob-float 8s ease-in-out infinite;
}

.bold-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(251,146,60,0.12) 0%, rgba(244,63,94,0.08) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  pointer-events: none;
  animation: blob-float 10s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

.bold-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.bold-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.bold-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.bold-hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bold-hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Search */
.bold-hero__search {
  display: flex;
  gap: var(--space-sm);
  max-width: 520px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-sm);
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
}

.bold-hero__search-input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
}

.bold-hero__search-input::placeholder {
  color: var(--color-text-muted);
}

.bold-hero__search-btn {
  padding: var(--space-md) var(--space-xl);
}

/* Quick category pills */
.bold-hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.bold-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-sm) var(--space-md);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.bold-hero__pill:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
  transform: translateY(-1px);
}

.bold-hero__pill-icon {
  font-size: 1rem;
}

/* ===========================================
   Categories Section - Colorful pills
   =========================================== */
.bold-categories {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-subtle);
}

.bold-categories__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.bold-categories__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.bold-categories__subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
}

.bold-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.bold-category {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.bold-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.bold-category__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Colorful icon backgrounds */
.bold-category--restaurants .bold-category__icon {
  background: linear-gradient(135deg, #fecaca, #fecdd3);
}
.bold-category--coffee .bold-category__icon {
  background: linear-gradient(135deg, #fde68a, #fed7aa);
}
.bold-category--fitness .bold-category__icon {
  background: linear-gradient(135deg, #bbf7d0, #a7f3d0);
}
.bold-category--beauty .bold-category__icon {
  background: linear-gradient(135deg, #fbcfe8, #f5d0fe);
}
.bold-category--services .bold-category__icon {
  background: linear-gradient(135deg, #bfdbfe, #c7d2fe);
}
.bold-category--shopping .bold-category__icon {
  background: linear-gradient(135deg, #fef08a, #fde68a);
}

.bold-category__text {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9375rem;
}

.bold-category__count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ===========================================
   Listings Section
   =========================================== */
.bold-listings {
  padding: var(--space-4xl) 0;
}

.bold-listings__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.bold-listings__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.bold-listings__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.bold-listings__link:hover {
  gap: 8px;
}

.bold-listings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* ===========================================
   Listing Card - Bold shadows, zoom effect
   =========================================== */
.bold-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.bold-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.bold-card__image-wrap {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.bold-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bold-card:hover .bold-card__image {
  transform: scale(1.05);
}

.bold-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 6px 12px;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
}

.bold-card__favorite {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.bold-card__favorite:hover {
  transform: scale(1.1);
  color: var(--color-primary-500);
}

.bold-card__body {
  padding: var(--space-lg);
}

.bold-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-500);
  margin-bottom: var(--space-xs);
}

.bold-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.3;
}

.bold-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.bold-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.bold-card__stars {
  color: var(--color-warm-400);
}

.bold-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===========================================
   CTA Section - Gradient background
   =========================================== */
.bold-cta {
  padding: var(--space-4xl) 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.bold-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl);
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.bold-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  color: white;
}

.bold-cta__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.bold-cta__btn {
  background: white;
  color: var(--color-primary-600);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bold-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-700);
}

/* ===========================================
   Footer
   =========================================== */
.bold-footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background: var(--color-neutral-900);
  color: white;
}

.bold-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .bold-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bold-footer__brand {
  max-width: 280px;
}

.bold-footer__logo {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bold-footer__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.bold-footer__desc {
  font-size: 0.9375rem;
  color: var(--color-neutral-400);
  line-height: 1.7;
}

.bold-footer__col-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  color: white;
}

.bold-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bold-footer__link {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--color-neutral-400);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.bold-footer__link:hover {
  color: white;
}

.bold-footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-neutral-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.bold-footer__copy {
  font-size: 0.875rem;
  color: var(--color-neutral-500);
}

.bold-footer__social {
  display: flex;
  gap: var(--space-md);
}

.bold-footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--color-neutral-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-400);
  transition: all var(--transition-fast);
}

.bold-footer__social-link:hover {
  background: var(--gradient-primary);
  color: white;
}

/* ===========================================
   Responsive
   =========================================== */
@media (max-width: 768px) {
  .bold-hero__search {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .bold-hero__search-btn {
    width: 100%;
  }

  .bold-header__nav {
    display: none;
  }

  .bold-listings__grid {
    grid-template-columns: 1fr;
  }

  .bold-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================
   Utility Classes
   =========================================== */
.bold-text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bold-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
