/* ==================== ADVENTURE TOURISM PAGE STYLES ==================== */

/* Hero Section */
.adventure-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: white;
  padding: 60px 20px 40px;
  text-align: center;
}

.adventure-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.adventure-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Main Content Container */
.adventure-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Introduction Section */
.intro-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.intro-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 10px;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 15px;
  text-align: justify;
}

/* Activities Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.activity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.activity-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.activity-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.activity-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: white;
}

.activity-content h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin: 0;
  font-weight: 700;
}

.activity-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  flex: 1;
}

.activity-highlights {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: auto;
}

.activity-highlights h4 {
  font-size: 0.9rem;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.activity-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.activity-highlights ul li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.activity-highlights ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Seasons Section */
.seasons-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.seasons-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

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

.season-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.season-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.season-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.season-card h3 {
  color: var(--accent-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.season-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Safety Section */
.safety-section {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.safety-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

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

.safety-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.safety-item h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety-item h3 i {
  color: var(--secondary-color);
  font-size: 1.4rem;
}

.safety-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.contact-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.contact-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-box h3 {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-box p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 768px) {
  .adventure-hero h1 {
    font-size: 2rem;
  }

  .adventure-hero p {
    font-size: 1rem;
  }

  .intro-section,
  .seasons-section,
  .safety-section,
  .contact-section {
    padding: 25px;
  }

  .intro-section h2,
  .seasons-section h2,
  .safety-section h2,
  .contact-section h2 {
    font-size: 1.6rem;
  }

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

  .activity-image {
    height: 200px;
  }
}
