/* ========================================
   CAMP LISTING PAGES - MODERN DESIGN
   ======================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #13314f 0%, #764ba2 100%);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 16px 48px rgba(102, 126, 234, 0.2);
}

/* ========== HERO SECTION ========== */
.camps-hero-section {
  position: relative;
  padding: 6rem 0 4rem;
  background: var(--primary-gradient);
  color: #fff;
  overflow: hidden;
}

.camps-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.camps-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.camps-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.camps-breadcrumb a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.camps-breadcrumb a:hover {
  opacity: 0.8;
}

.camps-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.6);
}

.camps-breadcrumb span:last-child {
  color: #fff;
  font-weight: 600;
}

.camps-page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.02em;
}

.camps-page-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* ========== LISTING SECTION ========== */
.camps-listing-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 50%);
}

.camps-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

/* ========== CAMP CARD ========== */
.camp-card-modern {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.camp-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: var(--card-shadow-hover);
}

.camp-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Card Image */
.camp-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #13314f;
}

.camp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.camp-card-modern:hover .camp-card-img {
  transform: scale(1.1);
}

.camp-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
}

.camp-card-img-placeholder i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
}

.camp-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.camp-card-modern:hover .camp-card-overlay {
  opacity: 1;
}

.camp-duration-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #13314f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.camp-card-modern:hover .camp-duration-badge {
  background: #fff;
  transform: scale(1.05);
}

.camp-duration-badge i {
  font-size: 1.125rem;
}

/* Card Body */
.camp-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.camp-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.875rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.camp-card-modern:hover .camp-card-title {
  color: #13314f;
}

.camp-card-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Card Footer */
.camp-card-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

.camp-stats {
  display: flex;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 500;
}

.stat-item i {
  font-size: 1.125rem;
  color: #13314f;
}

.camp-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  font-weight: 600;
  color: #13314f;
  transition: all 0.3s ease;
}

.camp-card-modern:hover .camp-card-cta {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateX(8px);
}

.camp-card-cta i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.camp-card-modern:hover .camp-card-cta i {
  transform: translateX(4px);
}

/* ========== EMPTY STATE ========== */
.empty-state-modern {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  border: 3px solid #dee2e6;
}

.empty-icon i {
  font-size: 4rem;
  color: #adb5bd;
}

.empty-state-modern h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.empty-state-modern p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-back-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.btn-back-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .camps-modern-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .camps-page-title {
    font-size: 2.5rem;
  }

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

  .camps-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .camp-card-body {
    padding: 1.5rem;
  }

  .camp-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .camps-hero-section {
    padding: 4rem 0 3rem;
  }

  .camps-page-title {
    font-size: 2rem;
  }

  .camp-card-title {
    font-size: 1.25rem;
  }

  .camp-card-image-wrapper {
    height: 220px;
  }
}
