/* ========================================
   CAMP CATEGORIES PAGE - MODERN DESIGN
   ======================================== */

:root {
  --primary-gradient: linear-gradient(135deg, #13314f 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --card-shadow-hover: 0 20px 60px rgba(102, 126, 234, 0.25);
}

/* ========== HERO SECTION ========== */
.camps-hero-modern {
  position: relative;
  padding: 8rem 0 6rem;
  background: var(--primary-gradient);
  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%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  animation: gradientFloat 15s ease infinite;
}

@keyframes gradientFloat {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

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

.camps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInDown 0.8s ease;
}

.camps-hero-badge i {
  font-size: 1.25rem;
}

.camps-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.camps-hero-subtitle {
  font-size: 1.375rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== CATEGORIES SECTION ========== */
.camps-categories-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.camps-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 3rem;
}

/* ========== CATEGORY CARD ========== */
.camp-category-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

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

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

/* Category Image */
.camp-category-image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--primary-gradient);
}

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

.camp-category-card:hover .camp-category-img {
  transform: scale(1.15);
}

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

.camp-category-img-placeholder i {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

.camp-category-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #13314f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
}

.camp-category-card:hover .camp-category-badge {
  background: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

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

/* Category Body */
.camp-category-body {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.camp-category-title {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1.125rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.camp-category-card:hover .camp-category-title {
  color: #13314f;
  transform: translateX(8px);
}

.camp-category-description {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

/* Category CTA */
.camp-category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #13314f;
  transition: all 0.4s ease;
}

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

.camp-category-cta i {
  font-size: 1.375rem;
  transition: transform 0.4s ease;
}

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

/* ========== CTA SECTION ========== */
.camps-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.camps-cta-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  padding: 4rem;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.camps-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.camps-cta-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-gradient);
  border-radius: 50%;
  color: #fff;
  font-size: 3.5rem;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  z-index: 1;
}

.camps-cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.camps-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.camps-cta-content p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.camps-cta-button {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-cta-modern {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--primary-gradient);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.4);
}

.btn-cta-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(102, 126, 234, 0.5);
  color: #fff;
}

.btn-cta-modern i {
  font-size: 1.25rem;
  transition: transform 0.4s ease;
}

.btn-cta-modern:hover i {
  transform: translateX(6px);
}

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

  .camps-cta-card {
    padding: 3rem;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .camps-hero-title {
    font-size: 3.5rem;
  }

  .camps-categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }

  .camps-cta-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .camps-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .camps-hero-modern {
    padding: 6rem 0 4rem;
  }

  .camps-hero-title {
    font-size: 2.75rem;
  }

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

  .camps-categories-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .camp-category-body {
    padding: 2rem;
  }

  .camps-cta-card {
    padding: 2.5rem;
  }

  .camps-cta-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .camps-hero-title {
    font-size: 2.25rem;
  }

  .camp-category-title {
    font-size: 1.5rem;
  }

  .camp-category-image-wrapper {
    height: 240px;
  }

  .camps-cta-content h2 {
    font-size: 1.75rem;
  }

  .camps-cta-content p {
    font-size: 1rem;
  }
}
