/* Explore Page Styles */
.explore-page {
  min-height: 100vh;
}

.explore-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.explore-hero .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
}

.explore-hero .hero-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
}

.explore-hero .hero-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Attractions Section */
.attractions-section {
  background: var(--bg-light);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.attraction-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.attraction-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.attraction-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.attraction-content {
  padding: 30px;
}

.attraction-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.attraction-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.attraction-footer {
  display: flex;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid var(--bg-light);
}

.distance {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

/* Experience Section */
.experience-section {
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.experience-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-light);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.experience-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.experience-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
  transition: all 0.3s ease;
}

.experience-card:hover .experience-icon {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.experience-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .attractions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .experience-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .explore-hero {
    height: 50vh;
    min-height: 350px;
  }

  .explore-hero .hero-title {
    font-size: 36px;
  }

  .explore-hero .hero-subtitle {
    font-size: 20px;
  }

  .explore-hero .hero-description {
    font-size: 16px;
  }

  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .attraction-image {
    height: 200px;
  }

  .attraction-content {
    padding: 25px;
  }

  .attraction-content h3 {
    font-size: 20px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-card {
    padding: 30px 25px;
  }
}
