/* Business Directory Page Styles */

/* Page Hero Section */
.page-hero-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  font-family: "Aileron Regular", sans-serif;
}

.page-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  font-weight: 400;
}

/* Directory Categories Section */
.directory-categories-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 3rem;
  font-family: "Aileron Bold", sans-serif;
}

.directory-category-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e2e8f0;
  cursor: pointer;
}

.directory-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: #482BE7;
}

.directory-category-icon {
  font-size: 3.5rem;
  color: #482BE7;
  margin-bottom: 1.5rem;
}

.directory-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-family: "Aileron Bold", sans-serif;
}

.directory-category-count {
  font-size: 0.95rem;
  color: #718096;
  font-family: "Aileron Regular", sans-serif;
}

/* Featured Businesses Section */
.featured-businesses-section {
  padding: 5rem 0;
  background-color: #f7fafc;
}

.business-listing-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.business-listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.business-listing-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e2e8f0;
}

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

.business-listing-card:hover .business-listing-image img {
  transform: scale(1.05);
}

.business-listing-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.business-listing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  font-family: "Aileron Bold", sans-serif;
}

.business-listing-category {
  font-size: 0.95rem;
  color: #482BE7;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Aileron SemiBold", sans-serif;
}

.business-listing-location {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 1rem;
  font-family: "Aileron Regular", sans-serif;
}

.business-listing-description {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-family: "Aileron Regular", sans-serif;
}

.business-listing-rating {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #4a5568;
  font-family: "Aileron Regular", sans-serif;
}

.business-listing-rating .fa-star {
  color: #ffc107;
  margin-right: 0.25rem;
}

.btn-view-profile {
  background-color: #482BE7;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: "Aileron SemiBold", sans-serif;
  width: 100%;
}

.btn-view-profile:hover {
  background-color: #20B2AA;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 43, 231, 0.3);
}

.btn-load-more {
  background-color: #ffffff;
  border: 2px solid #482BE7;
  border-radius: 8px;
  padding: 0.875rem 2.5rem;
  color: #482BE7;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: "Aileron SemiBold", sans-serif;
}

.btn-load-more:hover {
  background-color: #482BE7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 43, 231, 0.3);
}

/* Join Directory Section */
.join-directory-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #482BE7 0%, #20B2AA 100%);
}

.join-directory-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.join-directory-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  font-family: "Aileron Bold", sans-serif;
}

.join-directory-subtitle {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-family: "Aileron Regular", sans-serif;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .page-hero-subtitle {
    font-size: 1.125rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .directory-category-card {
    padding: 2rem 1.5rem;
  }

  .directory-category-icon {
    font-size: 3rem;
  }

  .business-listing-content {
    padding: 1.5rem;
  }

  .business-listing-name {
    font-size: 1.25rem;
  }

  .join-directory-card {
    padding: 2rem;
  }

  .join-directory-title {
    font-size: 1.75rem;
  }
}

