/* ========== HERO - NPR Pattern ========== */
/* Atmospheric hero with search bar, orange CTA, social proof */

/* Logo with camera icon on home */
.logo-with-icon {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: #FF8C00;
}

.hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.85) 100%),
    url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=1920') center/cover !important;
}

body:not(.light-mode) .hero-bg-npr {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.5) 100%),
    url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?w=1920') center/cover !important;
}

.hero-content-npr {
  width: 100%;
  max-width: 700px;
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #000000 !important;
  letter-spacing: -0.02em;
}

body:not(.light-mode) .hero-headline {
  color: #fff !important;
}

.hero-services {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

body:not(.light-mode) .hero-services {
  color: rgba(255,255,255,0.9);
}


.hero-services::before { content: ''; }
.hero-services::after { content: ''; }

/* Search bar */
.hero-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}


.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  padding: 1rem 1.25rem;
  min-width: 0;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #999;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  transition: color 0.2s;
}

.location-btn:hover {
  color: #333;
}

.location-icon {
  width: 18px;
  height: 18px;
  color: #FF8C00;
  flex-shrink: 0;
}

.profile-btn {
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.profile-btn svg {
  width: 24px;
  height: 24px;
}

.profile-btn:hover {
  color: #333;
}

/* Hero buttons - NPR style */
.hero-buttons-npr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-buttons-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-instant-booking {
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%) !important;
  color: #000000 !important;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.btn-instant-booking:hover {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 140, 0, 0.4);
}

.btn-browse-creators {
  background: #fff !important;
  color: #000000 !important;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-browse-creators:hover {
  background: #fafafa !important;
  border-color: #000000;
  transform: translateY(-2px);
}

.btn-vendor {
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%) !important;
  color: #000000 !important;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(155, 142, 212, 0.3);
}

.btn-vendor:hover {
  background: linear-gradient(135deg, #FFA726 0%, #FF8C00 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 140, 0, 0.4);
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #555555;
}

body:not(.light-mode) .proof-item {
  color: rgba(255,255,255,0.95);
}

.proof-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.proof-icon.star {
  color: #FF8C00;
}

.proof-icon.heart {
  color: #FF8C00;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,140,0,0.3);
}

body:not(.light-mode) .proof-divider {
  background: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .hero-search-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-divider {
    width: 100%;
    height: 1px;
  }
  .hero-buttons-npr {
    flex-direction: column;
  }
  .hero-buttons-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-instant-booking,
  .btn-browse-creators,
  .btn-vendor {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ========== SERVICE SECTIONS (Screenshot Pattern) ========== */
/* Photography, Makeup, Event, Editing - dark cards with image, price, View All */

.service-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.service-section .section-title h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.service-section .section-title p {
  color: #555555;
  font-size: 1rem;
}

body:not(.light-mode) .service-section .section-title h2 {
  color: #fff;
}

body:not(.light-mode) .service-section .section-title p {
  color: rgba(255,255,255,0.8);
}


.service-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .service-section-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-section-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.service-section-card:hover {
  border-color: rgba(255, 140, 0, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-section-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-section-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-section-card:hover .service-section-card-image img {
  transform: scale(1.05);
}

.service-section-card-content {
  padding: 1.25rem;
}

.service-section-card-content h4 {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-price {
  color: #FF8C00;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn-view-all {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 140, 0, 0.5);
  border-radius: 12px;
  color: #FF8C00;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.service-section-card:hover .btn-view-all {
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  border-color: #FF8C00;
}

.service-section-footer {
  text-align: center;
}

.service-section-footer .btn-gold {
  padding: 0.75rem 2rem;
}
