/* Hero do Fotógrafo */
.photographer-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px; /* afasta do header fixo */
}

.photographer-hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.05);
}

.photographer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}

.photographer-hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 70px 0;
  color: #fff;
}

.photographer-hero-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.photographer-hero-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.photographer-hero-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  background: #fff;
}

.photographer-hero-badge {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: linear-gradient(135deg, #ffb100, #ff7b00);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.photographer-hero-badge::before {
  content: 'PRO';
}

.photographer-hero-info {
  max-width: 720px;
  margin: 0 auto;
}

.photographer-hero-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.photographer-hero-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.photographer-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.photographer-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  text-decoration: none;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.photographer-hero-link i {
  font-size: 1rem;
}

.photographer-hero-link:hover {
  background: rgba(0,0,0,0.55);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: #fff;
}

.photographer-hero-bio {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Filtros de álbuns (mesmo padrão do buscar) */
.search-filters {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.search-input-wrapper {
  position: relative;
}

.search-input-wrapper .form-control {
  padding-left: 3rem;
  padding-right: 2.5rem;
  border-radius: 10px;
  border: 2px solid #e9ecef;
  font-size: 1rem;
  width: 100%;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.2rem;
  z-index: 1;
}

.search-input-wrapper .clear-search {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0.25rem;
  display: none;
  z-index: 1;
}

.search-input-wrapper .form-control:not(:placeholder-shown) ~ .clear-search {
  display: block;
}

.filter-select {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  width: 100%;
}

/* Grid de álbuns (reaproveita estilo do buscar) */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 350px;
  background: #fff;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.album-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.album-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.album-meta i {
  font-size: 0.9rem;
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
  grid-column: 1 / -1;
}

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
  grid-column: 1 / -1;
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .photographer-hero-content {
    padding: 60px 0 40px 0;
  }

  .photographer-hero-name {
    font-size: 1.6rem;
  }

  .albums-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
