
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 2px solid #eaeaea;
  position: relative;
  z-index: 10;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #000000 !important;
}

.navbar-nav .nav-link {
  color: #4a4a4a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #000000;
}

/* Hero Split Layout */
.hero-split {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  z-index: 1;
  padding: 0 5%;
}

.left-text, .right-text {
  flex: 1;
  max-width: 25%;
  color: white;
  padding: 2rem;
}

.left-text {
  text-align: right;
}

.right-text {
  text-align: left;
}

.center-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
}

.image-frame {
  width: 80%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-outline-light {
  border-width: 2px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .left-text, .right-text, .center-image {
    max-width: 100%;
    flex: none;
    text-align: center;
  }
  
  .left-text {
    order: 1;
  }
  
  .center-image {
    order: 2;
    margin: 2rem 0;
  }
  
  .right-text {
    order: 3;
  }
  
  .image-frame {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .image-frame {
    width: 80%;
  }
}
/* Carousel Control Fixes */
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.carousel-control-prev {
  left: 1rem;
}

.carousel-control-next {
  right: 1rem;
}
/* Links Section */
.links-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.link-card {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.link-card:hover .card-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.link-card:hover .card-overlay {
  background: rgba(0,0,0,0.6);
}

.link-btn {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.link-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .links-section {
    padding: 2rem 0;
  }
  
  .link-card {
    height: 250px;
    margin-bottom: 1.5rem;
  }
  
  .link-btn {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}
/* News Section */
.news {
  padding: 3rem 2rem;
  background-color: #fffcfc;
}

.news .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.news .card-img-top {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 220px;
  object-fit: cover;
}

.news .card-title {
  color: #2a4b2e;
  font-size: 1.4rem;
  font-weight: bold;
}

.news .btn-primary {
  background-color: #719d60;
  border: none;
}

.news .btn-primary:hover {
  background-color: #293f22;
}

/* Footer */
.footer {
  background-color: #2b533000;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* genaral style */
h1 {
  font-family: 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50; /* Deep slate blue */
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #0a0c0b; /* Vibrant green */
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
/* end of genaral style */

/* hero section */
.hero_index {
position: relative;
width: 100%;
height: 90vh;
overflow: hidden;
}

.hero_index .carousel-item {
height: 90vh;
}

.hero_index .hero-img, .contact-hero {
object-fit: cover;
height: 100%;
}

.carousel-caption {
background: rgba(151, 147, 147, 0.4);
padding: 20px;
border-radius: 10px;
}

.carousel-caption h1 {
font-size: 2.5rem;
font-weight: bold;
color: #fff;
}

.carousel-caption p {
font-size: 1.2rem;
color: #f1f1f1;
}

.carousel-caption .btn {
margin-top: 10px;
}

/* Hero section */
.hero_index {
background-color: #ffffff;
padding: 60px 0 30px 0;
}

.hero_index .hero-text {
margin-bottom: 40px;
}

.hero_index .hero-text h1 {
font-size: 2.8rem;
font-weight: 700;
color: #000000;
}

.hero_index .hero-text p {
font-size: 1.2rem;
color: #555;
}

/* Carousel images */
.hero_index .carousel-item {
height: 400px;
overflow: hidden;
}

.hero_index

/* Hero Section */
.hero_index {
background-color: #ffffff;
padding: 60px 20px 40px 20px;
text-align: center;
}

.hero_index .hero-text {
margin-bottom: 40px;
}

.hero_index .hero-text h1 {
font-size: 2.8rem;
font-weight: 700;
color: #000000; /* PURE BLACK */
margin-bottom: 10px;
}

.hero_index .hero-text p {
font-size: 1.2rem;
color: #000000; /* PURE BLACK */
margin: 0;
}

/* Start genaral style */
/* Universal Typography Enhancements */

body {
font-size: 1.3rem;        /* Default text size (~21px) */
line-height: 1.8;
font-family: 'Segoe UI', sans-serif;
}

/* Headings */
h1 {
font-size: 3.4rem;          /* ~48px */
font-weight: 700;
}

h2 {
font-size: 2.8rem;        /* ~40px */
font-weight: 700;
}

h3, h4, h5 {
font-size: 2.0rem;       /* ~28px */
font-weight: 600;
}

/* Paragraphs */
p {
font-size: 1.7rem;        /* ~21px */
margin-bottom: 1.2rem;
}

/* Card Content */
.card-title {
font-size: 1.4rem;        /* ~22px */
font-weight: 600;
}

.card-text {
font-size: 1.2rem;        /* ~19px */
}

/* Navbar */
.navbar .nav-link {
font-size: 1.2rem;
}


/* End genaral style */

/* Leadership card images */
.leadership .card-img-top {
height: 300px;           /* You can adjust the height */
object-fit: cover;
object-position: center;
}

/* Modern Pet Lovers Style */
:root {
  --primary: #17351a;  /* Pet Lovers pink/orange */
  --secondary: #2bab2f; /* Soft teal */
  --light: #f7fff7;     /* Off-white */
  --dark: #000000;     /* Dark blue-gray */
  --accent: #65d927;    /* Warm yellow */
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  padding: 2.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Navigation */
nav {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

nav i {
  margin-right: 0.5rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pet-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

.pet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pet-info {
  padding: 1.2rem;
}

.pet-info h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.pet-info p {
  margin: 0;
  color: var(--dark);
  opacity: 0.8;
}

.pet-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.pet-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--primary);
  color: white;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
  }
  
  h1 {
      font-size: 2.2rem;
  }
}
/* PURE IMAGE STYLING - NO GREY ELEMENTS */
.program-image {
  min-height: 350px;
  background-size: cover;
  background-position: center;
}

.program-content img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin: 20px 0;
}

.story-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .program-image { min-height: 300px; }
  .program-content img { height: 200px; }
  .story-image img { height: 240px; }
}

@media (max-width: 768px) {
  .program-image { min-height: 250px; }
  .program-content img { height: 180px; }
  .story-image img { height: 200px; }
}

@media (max-width: 576px) {
  .program-image { min-height: 200px; }
  .program-content img { height: 150px; }
  .story-image img { height: 180px; }
}
/* Modern Hero Section */
.hero-modern {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a3a2f; /* Fallback color */
}

.hero-video-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-text {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  backdrop-filter: blur(5px);
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-image-carousel {
  position: relative;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 1.5rem;
  font-size: 1.1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.hero-scroll-indicator span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.scroll-line {
  height: 50px;
  width: 1px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(10px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.5; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-image-carousel {
    height: 400px;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    min-height: 800px;
  }
  
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    margin-right: 0 !important;
  }
}
/* Programs Section Image Fixes */
.programs {
  padding: 5rem 0;
}

.program-card {
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.program-image-container {
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-image {
  transform: scale(1.03);
}

.program-content {
  padding: 2.5rem;
  background: white;
}

.program-content h3 {
  color: #1a3a2f;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.program-content p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .program-image-container {
    min-height: 250px;
  }
  
  .program-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .program-card .row {
    flex-direction: column;
  }
  
  .program-image-container {
    order: 1;
    min-height: 200px;
  }
  
  .program-content {
    order: 2;
  }
}
/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Contact Header */
.contact-header {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), url('../images/contact-bg.jpg'));
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.contact-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-form-wrapper, .contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2, .contact-info-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2a4b2e;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-wrapper h2:after, .contact-info-wrapper h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #719d60;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #719d60;
  box-shadow: 0 0 0 0.25rem rgba(113, 157, 96, 0.25);
}

.btn-primary {
  background-color: #719d60;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #5a7d4d;
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background-color: #f0f7ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: #719d60;
  font-size: 1.2rem;
}

.contact-info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #2a4b2e;
}

.contact-info-item p {
  margin-bottom: 0;
  color: #666;
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-wrapper {
  width: 100%;
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  padding: 30px 0;
  background-color: #2a4b2e;
  color: white;
  text-align: center;
}

.footer p {
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-form-wrapper, .contact-info-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .contact-header {
    padding: 60px 0;
  }
  
  .contact-header h1 {
    font-size: 2.5rem;
  }
  
  .contact-form-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .contact-header {
    padding: 50px 0;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-form-wrapper, .contact-info-wrapper {
    padding: 30px;
  }
  
  .contact-info-item {
    flex-direction: column;
  }
  
  .contact-info-item .icon {
    margin-bottom: 15px;
  }
}
/* Contact Hero Section */
.contact-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(42, 75, 46, 0.9) 0%, rgba(113, 157, 96, 0.9) 100%);
  color: rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('../images/hero-pattern.png') cover; */
  opacity: 0.1;
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-hero .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-image {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.btn-primary {
  background-color: #e67e22;
  border-color: #e67e22;
}

.btn-outline-light {
  border-width: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-hero {
    padding: 80px 0;
    text-align: center;
  }
  
  .contact-hero h1 {
    font-size: 2.3rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero .lead {
    font-size: 1.1rem;
  }
}
/* Base Styles */
body {
  font-family: 'Courier New', monospace;
  background-color: #405d3f;
  color: #ccd6f6;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.secret-banner {
  background-color: #51a44b;
  color: #3e732e;
  text-align: center;
  padding: 5px;
  font-size: 0.9rem;
  border-bottom: 1px dashed #64ffda;
}

.hidden-header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #16f52c 0%, #5cff77 100%);
  border-bottom: 1px solid #25671f;
}

.hidden-header h1 {
  color: #46e255;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.tagline {
  color: #8892b0;
  font-style: italic;
}

.reveal {
  color: #388548;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Destination Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.destination-card {
  background-color: #31673a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  color: #7ec87a;
  margin-top: 0;
}

.location {
  color: #50a55b;
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.secret-tip {
  background-color: #21671f;
  padding: 0.8rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 0.9rem;
  border-left: 3px solid #22ff0076;
}

.tip-icon {
  color: #5fb25f;
  margin-right: 0.5rem;
}

/* Access Instructions */
.access-instructions {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.access-instructions h2 {
  color: #3ac12b;
  border-bottom: 1px solid #04fc3e89;
  padding-bottom: 0.5rem;
}

.access-instructions ol {
  padding-left: 1.5rem;
}

.access-instructions li {
  margin-bottom: 0.8rem;
}

.disclaimer {
  background-color: #1f672a;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  border-left: 3px solid #7fcf6faf;
}

/* Footer */
.secret-footer {
  text-align: center;
  padding: 2rem;
  background-color: #0a192f;
  border-top: 1px solid #47a43a;
  font-size: 0.8rem;
  color: #95b088;
}

.copyright {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hidden-header h1 {
      font-size: 2rem;
  }
  
  .destination-grid {
      grid-template-columns: 1fr;
      padding: 1rem;
  }
}
/* Global Styles */
:root {
  --primary-color: #5e3a1f;
  --secondary-color: #a67c52;
  --accent-color: #d4a76a;
  --light-color: #f5e9dc;
  --dark-color: #2c1a0a;
  --text-color: #333;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('https://images.unsplash.com/photo-1589652045522-2c1d3e2f3f3f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero p {
  font-size: 1.5rem;
  color: var(--light-color);
}

/* Intro Section */
.intro {
  padding: 4rem 0;
  text-align: center;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Species Grid */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.species-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.species-card:hover {
  transform: translateY(-10px);
}

.species-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

#black-rhino {
  background-image: url('https://images.unsplash.com/photo-1550853024-fae8cd4be47f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

#white-rhino {
  background-image: url('https://images.unsplash.com/photo-1589652045522-2c1d3e2f3f3f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

#sumatran-rhino {
  background-image: url('https://images.unsplash.com/photo-1550853024-fae8cd4be47f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

#javan-rhino {
  background-image: url('https://images.unsplash.com/photo-1589652045522-2c1d3e2f3f3f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

#greater-one-horned {
  background-image: url('https://images.unsplash.com/photo-1550853024-fae8cd4be47f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.species-card h3 {
  padding: 1rem 1rem 0;
  font-size: 1.5rem;
}

.species-card p {
  padding: 0 1rem 1.5rem;
}

/* Threats Section */
.threats {
  padding: 4rem 0;
  background-color: var(--white);
  margin: 2rem 0;
  border-radius: 8px;
}

.threats h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.threats-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.threat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-color);
  border-radius: 8px;
}

.threat-item h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Conservation Section */
.conservation {
  padding: 4rem 0;
  text-align: center;
}

.conservation h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.conservation p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.conservation ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 3rem;
  list-style-position: inside;
}

.conservation li {
  margin-bottom: 0.5rem;
}

.cta {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.cta h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  background-color: var(--dark-color);
  color: var(--light-color);
  margin-top: 2rem;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2.5rem;
  }
  
  .hero p {
      font-size: 1.2rem;
  }
  
  .intro h2, .threats h2, .conservation h2 {
      font-size: 2rem;
  }
  
  .action-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .btn {
      width: 80%;
      text-align: center;
  }
}
:root {
  --dark-green: #1a3a1a;
  --forest-green: #2a4a2a;
  --medium-green: #3a6b3a;
  --leaf-green: #4c8c4c;
  --light-green: #5cad5c;
  --mint-green: #7ecf7e;
  --pale-green: #b0e0b0;
  --white: #f0fff0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--dark-green);
  line-height: 1.6;
}

.navbar {
  background-color: var(--forest-green) !important;
  box-shadow: 0 2px 10px rgba(0,30,0,0.2);
}

.navbar-brand, .nav-link {
  color: var(--pale-green) !important;
}

.navbar-brand:hover, .nav-link:hover {
  color: var(--mint-green) !important;
}

.nav-link.active {
  color: var(--light-green) !important;
  font-weight: bold;
}

.logo-placeholder {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--light-green);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.secret-banner {
  background-color: var(--dark-green);
  color: var(--mint-green);
  padding: 10px;
  text-align: center;
  font-family: monospace;
  border-bottom: 2px dashed var(--leaf-green);
}

.secret-code {
  letter-spacing: 2px;
}

.hidden-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, var(--forest-green), var(--medium-green));
  color: var(--pale-green);
  margin-bottom: 30px;
}

.hidden-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mint-green);
}

.reveal {
  color: var(--light-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.secret-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.destination-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,30,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--pale-green);
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,40,0,0.15);
}

.card-image-placeholder {
  height: 200px;
  background-color: var(--medium-green);
  position: relative;
}

.card-image-placeholder::after {
  content: "Destination Image";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--pale-green);
  font-size: 1rem;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--forest-green);
  margin-bottom: 10px;
}

.location {
  color: var(--medium-green);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.location i {
  margin-right: 5px;
}

.secret-tip {
  background-color: var(--pale-green);
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 15px;
  font-size: 0.9rem;
  border-left: 4px solid var(--leaf-green);
}

.tip-icon {
  color: var(--forest-green);
  margin-right: 8px;
}

.access-instructions {
  background-color: var(--pale-green);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  border: 1px solid var(--leaf-green);
}

.access-instructions h2 {
  color: var(--forest-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.access-instructions h2 i {
  margin-right: 10px;
}

.access-instructions ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.access-instructions li {
  margin-bottom: 10px;
}

.disclaimer {
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  color: var(--forest-green);
  display: flex;
  align-items: center;
}

.disclaimer i {
  color: var(--leaf-green);
  margin-right: 10px;
  font-size: 1.2rem;
}

.secret-footer {
  text-align: center;
  padding: 20px;
  background-color: var(--forest-green);
  color: var(--pale-green);
  font-size: 0.9rem;
}

.copyright {
  margin-top: 10px;
  color: var(--mint-green);
}

@media (max-width: 768px) {
  .hidden-header h1 {
    font-size: 2rem;
  }
  
  .destination-grid {
    grid-template-columns: 1fr;
  }
}
/* Color Variables */
:root {
  --dark-green: #0d300d;
  --forest-green: #1e4e1e;
  --medium-green: #2d6b2d;
  --leaf-green: #3d8b3d;
  --light-green: #4cae4c;
  --bright-green: #5ccb5c;
  --pale-green: #c8e6c8;
  --white: #f5fff5;
}

/* Base Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--dark-green);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--forest-green);
}

/* Header & Banner */
.conservation-banner {
  background-color: var(--dark-green);
  color: var(--bright-green);
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.rhino-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, var(--forest-green), var(--medium-green));
  color: var(--pale-green);
}

.rhino-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.subtitle {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bright-green);
}

.eco-icon {
  color: var(--light-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* Main Content */
.conservation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.rhino-intro {
  padding: 40px 0;
  text-align: center;
}

.rhino-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.rhino-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Species Grid */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.species-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,30,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--pale-green);
}

.species-card:hover {
  transform: translateY(-5px);
}

.species-icon {
  height: 150px;
  /* background-color: var(--medium-green); */
  position: relative;
}

.species-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,60,0,0.1), rgba(0,40,0,0.3));
}

.species-info {
  padding: 20px;
}

.species-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.population, .status {
  font-weight: bold;
  margin-bottom: 8px;
}

.population {
  color: var(--medium-green);
}

.status {
  color: var(--leaf-green);
}

/* Threats Section */
.threats-section {
  background-color: var(--pale-green);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.threats-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.threats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.threat-card {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,30,0,0.1);
}

.threat-card h3 {
  color: var(--forest-green);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.threat-card i {
  margin-right: 10px;
  color: var(--leaf-green);
}

/* Action Section */
.action-section {
  margin: 40px 0;
}

.action-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.action-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.action-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,30,0,0.1);
  text-align: center;
  border-top: 5px solid var(--leaf-green);
}

.action-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.action-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--leaf-green);
  color: white;
  border-radius: 4px;
  margin-top: 15px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.action-btn:hover {
  background-color: var(--medium-green);
}

/* Footer */
.conservation-footer {
  text-align: center;
  padding: 30px;
  background-color: var(--forest-green);
  color: var(--pale-green);
}

.copyright {
  margin-top: 15px;
  color: var(--bright-green);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .rhino-header h1 {
    font-size: 2rem;
  }
  
  .rhino-intro h2, .threats-section h2, .action-section h2 {
    font-size: 1.8rem;
  }
  
  .species-grid, .threats-grid, .action-options {
    grid-template-columns: 1fr;
  }
}
/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
}

header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #36502c;
  color: white;
  border-radius: 8px;
}

h1 {
  margin: 0;
  font-size: 2.2em;
}

/* Community Cards */
.community-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}

.community-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #34db6675;
  color: white;
}

.community-header h2 {
  margin: 0;
  font-size: 1.5em;
}

.tag {
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9em;
}

.tag.economy {
  background-color: #27ae60;
}

.tag.tradition {
  background-color: #59b665;
}

.tag.innovation {
  background-color: #25e622;
}

.tag.tourism {
  background-color: #509861;
}

.community-content {
  display: flex;
  padding: 20px;
}

.community-content img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 20px;
}

.details {
  flex: 1;
}

.details p {
  margin: 10px 0;
}

.details strong {
  color: #2c3e50;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  background-color: #2c5033;
  color: white;
  border-radius: 8px;
}

footer a {
  color: #44ba5496;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .community-content {
      flex-direction: column;
  }

  .community-content img {
      width: 100%;
      margin-bottom: 15px;
  }
}
/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.6;
}

.hidden-page-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  position: relative;
}

/* Access Panel Styles */
.access-panel {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.5s ease;
}

.access-panel h1 {
  color: #55913f;
  margin-bottom: 20px;
}

.access-panel p {
  margin-bottom: 30px;
  color: #000000;
}

#access-btn {
  background-color: #257626;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#access-btn:hover {
  background-color: #3fb929;
}

/* Climate Content Styles */
.climate-content {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: all 0.5s ease;
  font-size: 1.5rem;
}

.climate-content header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
}

.climate-content h1 {
  color: #000000;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.climate-content header p {
  color: #000000;
  font-style: italic;
  font-size: 1.5rem;
}

/* Sections */
.facts, .evidence, .solutions {
  margin-bottom: 40px;
}

.facts h2, .evidence h2, .solutions h2 {
  color: #27ae60;
  border-bottom: 2px solid #27ae60;
  padding-bottom: 10px;
  display: inline-block;
}

.facts ul {
  list-style-type: none;
  padding-left: 0;
}

.facts li {
  background-color: #f9f9f9;
  margin: 10px 0;
  padding: 15px;
  border-left: 4px solid #34db47;
}

/* Evidence Grid */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.evidence-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.evidence-card:hover {
  transform: translateY(-5px);
}

.evidence-card h3 {
  color: #2c502f;
  margin-top: 0;
}

/* Solutions */
.solutions ol {
  padding-left: 20px;
}

.solutions li {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #e8f4fc;
  border-left: 4px solid #2c611e;
}
/* Climate Banner Text with Gradient */
.climate-content header h1 {
  background: linear-gradient(135deg, #000000 0%, #6d6d6d 50%, #2fd05f42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 10px;
}

.climate-content header p {
  background: linear-gradient(135deg, #000000 0%, #8d908f 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 0 5px;
}

/* Optional: Add animation to the gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.climate-content header h1, 
.climate-content header p {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
