/*--------------------------------------------------------------
# Destination Page Styles
--------------------------------------------------------------*/

/* Hero Section */
.destination-hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('../img/destinations/nuwaraeliya.jpg') center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: white;
}

.destination-hero .hero-content {
  position: relative;
  z-index: 2;
}

.destination-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-hero .subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Destination Stats */
.destination-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ec018a;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Highlight Cards */
.highlight-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.highlight-card .card-body {
  padding: 2rem;
}

.highlight-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #06518b;
}

.highlight-card p {
  color: #666;
  line-height: 1.6;
}

.highlight-card .icon-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec018a, #ff4db8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.highlight-card .icon-badge i {
  font-size: 1.8rem;
  color: white;
}

/* Attraction Items */
.attraction-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.attraction-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(10px);
}

.attraction-item .attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.attraction-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #06518b;
}

.attraction-item .rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
}

/* Travel Information Box */
.travel-info-box {
  background: linear-gradient(135deg, #06518b, #0a7bb5);
  color: white;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.travel-info-box h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item i {
  font-size: 1.8rem;
  color: #ec018a;
  margin-top: 0.3rem;
}

.info-item .info-content h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-item .info-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #ec018a, #ff4db8);
  color: white;
  text-align: center;
  padding: 5rem 0;
  border-radius: 30px;
  margin: 4rem 0;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn {
  background: white;
  color: #ec018a;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
}

.cta-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .destination-hero h1 {
    font-size: 2.5rem;
  }

  .destination-hero .subtitle {
    font-size: 1.2rem;
  }

  .destination-stats {
    gap: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .highlight-card img {
    height: 200px;
  }

  .travel-info-box {
    padding: 2rem;
  }

  .travel-info-box h3 {
    font-size: 1.5rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .destination-hero {
    min-height: 500px;
  }

  .destination-hero h1 {
    font-size: 2rem;
  }

  .destination-hero .subtitle {
    font-size: 1rem;
  }

  .destination-stats {
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-item .stat-number {
    font-size: 1.5rem;
  }

  .stat-item .stat-label {
    font-size: 0.75rem;
  }

  .image-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 250px;
  }
}
