/* Nature Tourism Theme - Consistent Styling for All Pages */

/* Enhanced Forest Green Theme */
:root {
  /* Nature-inspired gradients */
  --forest-gradient: linear-gradient(135deg, #0D4F3C, #228B22);
  --nature-gradient: linear-gradient(135deg, #228B22, #32CD32);
  --earth-gradient: linear-gradient(135deg, #8B4513, #DAA520);
  --sky-gradient: linear-gradient(135deg, #4682B4, #87CEEB);
  
  /* Background overlays */
  --forest-overlay: rgba(13, 79, 60, 0.1);
  --nature-overlay: rgba(34, 139, 34, 0.1);
  --earth-overlay: rgba(139, 69, 19, 0.1);
  --honeydew-overlay: rgba(240, 248, 240, 0.8);
}

/* Page Headers - Consistent across all pages */
.page-header {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Removed forest green gradient - using subtle dark overlay instead */
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Removed forest green overlay - using subtle dark gradient for text readability */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.page-header-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  /* Enhanced text shadow for better readability over images */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.page-header p {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.98;
  line-height: 1.6;
  /* Enhanced text shadow for better readability */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.4);
  color: var(--white);
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1rem;
  opacity: 0.95;
  /* Enhanced text shadow for better readability */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Section Styling - Consistent across pages */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-alt {
  background: var(--honeydew-overlay);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--nature-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards - Consistent styling */
.nature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 79, 60, 0.1);
  transition: all var(--transition-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 79, 60, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

/* Buttons - Enhanced nature theme */
.btn-nature {
  background: var(--forest-gradient);
  color: var(--white);
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(13, 79, 60, 0.3);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-nature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-nature:hover::before {
  left: 100%;
}

.btn-nature:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(13, 79, 60, 0.4);
}

.btn-nature-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 25px;
  font-weight: 600;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-nature-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-nature-outline:hover::before {
  left: 0;
}

.btn-nature-outline:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 79, 60, 0.3);
}

/* Icons - Nature themed */
.nature-icon {
  width: 60px;
  height: 60px;
  background: var(--forest-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(13, 79, 60, 0.2);
  transition: all var(--transition-medium);
}

.nature-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(13, 79, 60, 0.3);
}

/* Tags and Badges */
.nature-tag {
  background: var(--honeydew-overlay);
  backdrop-filter: blur(10px);
  color: var(--primary-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(13, 79, 60, 0.2);
  transition: all var(--transition-fast);
  display: inline-block;
}

.nature-tag:hover {
  background: rgba(13, 79, 60, 0.1);
  transform: translateY(-2px);
}

.nature-badge {
  background: rgba(34, 139, 34, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Animations - Nature themed */
@keyframes nature-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes forest-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 139, 34, 0.3); }
  50% { box-shadow: 0 0 30px rgba(34, 139, 34, 0.6); }
}

.nature-float {
  animation: nature-float 3s ease-in-out infinite;
}

.forest-glow {
  animation: forest-glow 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    height: 50vh;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn-nature,
  .btn-nature-outline {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
  }
}
