:root {
  --primary-green: #2d4739;
  --accent-gold: #e1b866;
  --sand: #f5e9da;
  --terracotta: #b86b3a;
  --background: #f8f8f5;
  --text-dark: #222;
}
body { background: var(--background); color: var(--text-dark); }
.navbar { background: var(--primary-green) !important; }
.navbar-brand img { height: 40px; margin-right: 10px; }
.navbar-brand, .navbar-nav .nav-link { color: var(--accent-gold) !important; font-weight: 600; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover { color: var(--terracotta) !important; }

/* Dropdown menu styles */
.dropdown-menu {
  background: var(--primary-green);
  border: 1px solid var(--accent-gold);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.dropdown-item {
  color: var(--accent-gold) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: var(--accent-gold) !important;
  color: var(--primary-green) !important;
}
.dropdown-item.active {
  background: var(--terracotta) !important;
  color: #fff !important;
}
.dropdown-divider {
  border-color: var(--accent-gold);
  opacity: 0.3;
}

.footer { background: var(--primary-green); color: var(--accent-gold); padding: 2rem 0; text-align: center; border-top: 4px solid var(--accent-gold); }
h1, h2, h3, h4, h5, h6 { color: var(--primary-green); font-family: 'Segoe UI', 'Arial', sans-serif; }
.section-title { color: var(--terracotta); font-weight: 700; letter-spacing: 1px; }
.whatsapp-bubble { position: fixed; bottom: 25px; right: 25px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1040; }
.sticky-top { z-index: 1030; }

/* Homepage Styles */
.hero-video-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#bgvid {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}
.hero-video-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: -99;
}
.hero-content {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    z-index: 1;
}
#hero-text-rotator h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
#hero-text-rotator h1.active {
    opacity: 1;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1s forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-wild {
    background: var(--terracotta);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 8px rgba(45,71,57,0.08);
    transition: background 0.2s, color 0.2s;
}
.btn-wild:hover {
    background: var(--terracotta);
    color: #fff;
}
.why-section {
    background: var(--sand);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(45,71,57,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}
.adventure-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.adventure-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.btn-outline-wild {
    color: var(--primary-green);
    border-color: var(--accent-gold);
    font-weight: 600;
}
.btn-outline-wild:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
}
.discover-uganda-section {
    background-color: var(--sand);
}

/* Gallery Page Styles */
.gallery-img { 
    object-fit: cover; 
    width: 100%; 
    height: 250px; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: transform 0.2s; 
    box-shadow: 0 2px 8px rgba(45,71,57,0.08); 
}
.gallery-img:hover { 
    transform: scale(1.03); 
    box-shadow: 0 4px 16px rgba(45,71,57,0.15); 
}

/* Badge Colors */
.bg-wild {
  background-color: var(--primary-green) !important;
  color: var(--accent-gold) !important;
}

.bg-wild:hover {
  background-color: var(--terracotta) !important;
  color: white !important;
}

/* Horizontal Scroll Styles */
.adventure-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 1rem 0;
}

.adventure-scroll-row {
  display: flex;
  gap: 1rem;
}

.min-width-card {
  min-width: 300px;
  flex-shrink: 0;
}

/* Feature Cards Animation */
.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    border: 1px solid rgba(45,71,57,0.2);
    box-shadow: 0 4px 20px rgba(45,71,57,0.1);
    position: relative;
    z-index: 2;
}

.feature-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.feature-card.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(45,71,57,0.15);
}

.feature-card h5 {
    color: var(--terracotta);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-card:hover .feature-image {
    box-shadow: 0 8px 25px rgba(45,71,57,0.2);
}

/* Congo Park Specific Styles */
.park-hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green) 0%, #1a2e24 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.3s ease;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45,71,57,0.8) 0%, rgba(184,107,58,0.6) 100%);
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.min-vh-70 {
  min-height: 70vh;
}

.highlight-text {
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.hero-stats {
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

.stat-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
  color: white;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(45,71,57,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.content-section:hover {
  box-shadow: 0 8px 30px rgba(45,71,57,0.15);
  transform: translateY(-2px);
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.section-header:hover .title-underline {
  width: 80px;
}

.wildlife-highlight {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--terracotta);
  transition: all 0.3s ease;
}

.wildlife-highlight:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(45,71,57,0.1);
}

.wildlife-highlight h3 {
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.info-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(45,71,57,0.15);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.info-card:hover .card-icon {
  transform: scale(1.1);
  color: var(--accent-gold);
}

.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wildlife-item {
  background: var(--sand);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.wildlife-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(45,71,57,0.15);
}

.wildlife-item h4 {
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 700;
}

.wildlife-item ul {
  list-style: none;
  padding: 0;
}

.wildlife-item li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45,71,57,0.1);
  transition: all 0.3s ease;
}

.wildlife-item li:hover {
  padding-left: 10px;
  color: var(--terracotta);
  font-weight: 500;
}

.wildlife-item li:last-child {
  border-bottom: none;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.activity-card {
  background: white;
  border: 2px solid var(--sand);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  opacity: 0.1;
  transition: all 0.3s ease;
  z-index: -1;
}

.activity-card:hover::before {
  left: 0;
}

.activity-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(45,71,57,0.15);
}

.activity-icon {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
  transform: scale(1.1);
  color: var(--accent-gold);
}

.activity-card h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.activity-details {
  margin-top: 1rem;
}

.activity-details .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.activity-details .badge:hover {
  transform: scale(1.05);
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(45,71,57,0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sidebar-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 25px rgba(45,71,57,0.15);
}

.sidebar-title {
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.fact-list {
  list-style: none;
  padding: 0;
}

.fact-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45,71,57,0.1);
  transition: all 0.3s ease;
}

.fact-list li:hover {
  padding-left: 10px;
  color: var(--terracotta);
}

.fact-list li:last-child {
  border-bottom: none;
}

.related-parks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.related-park-link {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: var(--sand);
  border-radius: 8px;
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-park-link:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
  transform: translateX(5px);
  text-decoration: none;
  border-color: var(--terracotta);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1a2e24 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-buttons .btn {
  transition: all 0.3s ease;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.75rem 2rem;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-stats .row {
    flex-direction: column;
  }
  
  .hero-stats .col-md-3 {
    margin-bottom: 1rem;
  }
  
  .info-grid,
  .wildlife-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .stat-card {
    margin-bottom: 1rem;
  }
  
  .park-hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
} 

/* Additional Congo Park Enhancements */
.park-hero .hero-content {
  position: relative;
  z-index: 3;
}

.park-hero .hero-content h1 {
  text-shadow: 0 4px 8px rgba(0,0,0,0.5);
  animation: heroTitleFade 1.5s ease-out 0.5s both;
}

.park-hero .hero-content p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  animation: heroSubtitleFade 1.5s ease-out 1s both;
}

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

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

/* Enhanced stat cards */
.stat-card {
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.stat-card:hover {
  backdrop-filter: blur(20px);
  border-color: var(--accent-gold);
}

/* Enhanced content sections */
.content-section {
  border: 1px solid rgba(45,71,57,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
}

/* Enhanced activity cards */
.activity-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  backdrop-filter: blur(10px);
}

.activity-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,0.95));
}

/* Enhanced sidebar */
.sidebar-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  backdrop-filter: blur(10px);
}

/* Enhanced CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1a2e24 50%, var(--terracotta) 100%);
  position: relative;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.2;
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Enhanced buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--accent-gold));
  border: none;
  box-shadow: 0 4px 15px rgba(184,107,58,0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,107,58,0.4);
}

.btn-outline-primary {
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184,107,58,0.3);
}

/* Enhanced badges */
.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Enhanced icons */
.bi {
  transition: all 0.3s ease;
}

.card-icon .bi,
.activity-icon .bi {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Enhanced typography */
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.section-title {
  background: linear-gradient(135deg, var(--terracotta), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced wildlife highlight */
.wildlife-highlight {
  background: linear-gradient(135deg, var(--sand) 0%, rgba(245,233,218,0.8) 100%);
  border-left: 4px solid var(--terracotta);
  position: relative;
  overflow: hidden;
}

.wildlife-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(184,107,58,0.05) 100%);
  pointer-events: none;
}

/* Enhanced info cards */
.info-card {
  background: linear-gradient(135deg, var(--sand) 0%, rgba(245,233,218,0.8) 100%);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  opacity: 0.1;
  transition: all 0.3s ease;
  z-index: -1;
}

.info-card:hover::before {
  left: 0;
}

/* Enhanced wildlife items */
.wildlife-item {
  background: linear-gradient(135deg, var(--sand) 0%, rgba(245,233,218,0.8) 100%);
  position: relative;
  overflow: hidden;
}

.wildlife-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  opacity: 0.1;
  transition: all 0.3s ease;
  z-index: -1;
}

.wildlife-item:hover::before {
  left: 0;
}

/* Enhanced sidebar cards */
.sidebar-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  opacity: 0.05;
  transition: all 0.3s ease;
  z-index: -1;
}

.sidebar-card:hover::before {
  left: 0;
}

/* Enhanced related park links */
.related-park-link {
  background: linear-gradient(135deg, var(--sand) 0%, rgba(245,233,218,0.8) 100%);
  position: relative;
  overflow: hidden;
}

.related-park-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), var(--terracotta));
  opacity: 0.1;
  transition: all 0.3s ease;
  z-index: -1;
}

.related-park-link:hover::before {
  left: 0;
}

/* Enhanced fact list */
.fact-list li {
  position: relative;
  transition: all 0.3s ease;
}

.fact-list li::before {
  content: '▶';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terracotta);
  opacity: 0;
  transition: all 0.3s ease;
}

.fact-list li:hover::before {
  opacity: 1;
  left: -10px;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
  .park-hero {
    min-height: 50vh;
  }
  
  .hero-title {
    font-size: 1.8rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .stat-card {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .info-grid,
  .wildlife-grid,
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .park-hero {
    min-height: 40vh;
  }
  
  .hero-title {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
  }
  
  .stat-card {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .content-section {
    padding: 1rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
} 