  h1, h2, h3, h4, h5, h6, p, span {
    color: #262541 !important;
  }

/* === HERO (unchanged) === */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(250,250,250, 1), rgba(250,250,250, 0.3), transparent);
  pointer-events: none; /* so clicks pass through */
  z-index: 1;
}

.navbar-expand-lg .navbar-collapse {
    margin-left: 120px;
}

.nav-link {
    color: #FFF !important;
}

.hero-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  text-align: left;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.btn-read {
  background-color: #e14e4e;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 20px rgba(225,78,78,0.4);
}
.btn-read:hover {
  background-color: #b83b3b;
}

.hero.carousel,
.hero.carousel .carousel-inner,
.hero.carousel .carousel-item,
.hero.carousel .carousel-item img {
  height: 80vh;        /* full viewport height */
}

.hero.carousel .carousel-item img {
  object-fit: cover;    /* maintains aspect ratio, fills container */
  width: 100%;
  height: 100%;
}


/* === FEATURED SECTION === */
.featured h2 {
  color: #fff;
  font-size: 1.75rem;
}

.featured-main img,
.sm-card img {
  transition: transform 0.6s ease;
}

.featured-main:hover img,
.sm-card:hover img {
  transform: scale(1.15);
}

/* Large featured card */
.featured-main .card-img-top {
  height: 326px;
  object-fit: cover;
  border-radius: 10px;
}
.featured-main .card-body {
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
  color: #fff;
  padding: 1.5rem;
  margin-bottom: 10px;
}
.featured-main .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-title {
    color: #FFF !important;
}

.card-title .date {
    color: #FFF !important;
}

.card-text {
    color: #FFF !important;
}

.featured-main .date {
  font-size: 0.9rem;
  color: #FFF !important;
}

.section-spacer {
  width: 100%;
  height: 30px; /* Adjust as needed */
  background: linear-gradient(to right, #ff5f6d, #ffc371);
  border: none;
}


.gradient-highlight span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}

.gradient-highlight span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background:#ffc371;
  z-index: -1;
}


.gradient-highlight-blue span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}

.gradient-highlight-blue span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #58caff;
  z-index: -1;
}


.gradient-highlight-red span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}

.gradient-highlight-red span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #ff5f6d;
  z-index: -1;
}

.title-alt {
    color: #262541 !important;
}

.text-alt {
    color: #262541 !important;
}

.text-date {
    color: #262541 !important;
        font-size: 12px !important;
    margin-bottom: 0px !important;
}


/* Small cards: overlay style */
.card .card-img {
  height: 150px;
  object-fit: cover;
}
.overlay-gradient {
  /* dark gradient at bottom fading up */
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.card-title {
  font-size: 1rem;
}
.date {
  font-size: 0.85rem;
  color: #ccc;
}

.mobile-nav {
	display: none !important;
}

.mobile-navlinks {
	display: none;
}

/* UTILITY */
body {
  background: #121212;
  color: #fff;
}

.info-by {
 text-shadow: 0 2px 6px rgba(0,0,0,0.6) !important;
}


/* ===== News page specific (add to your stylesheet) ===== */
.news-page .hero-news {
  background-color: #262541; /* uses your existing palette */
  min-height: 16vh;          /* smaller hero for news page */
  display: flex;
  position: relative;
  padding-top: 76px;
  padding-left: 25px;
}

.news-page .hero-news .hero-text h1,
.news-page .hero-news .hero-text p {
  color: #fff !important;
}

/* Featured lead card */
.news-page .featured-card.lead-story {
  border-radius: 10px;
  overflow: hidden;
}
.news-page .lead-img {
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Side featured (stacked) */
.news-page .featured-card.side-story {
  border-radius: 8px;
  overflow: hidden;
}
.news-page .side-thumb { flex: 0 0 110px; max-width: 110px; }
.news-page .side-img { height: 84px; object-fit: cover; display:block;}

/* Latest list thumbnails */
.news-page .list-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  flex: 0 0 120px;
}

/* Hover effect: image zoom instead of bump */
.news-page .featured-card img,
.news-page .news-list-item img {
  transition: transform 0.5s ease;
}

.news-page .featured-card:hover img,
.news-page .news-list-item a:hover img {
  transform: scale(1.08);
}


/* Featured cards - background and text color */
.featured-card {
  background-color: #ffc371 !important; /* card background */
  color: #000 !important;               /* text black */
  display: flex;
  flex-direction: column;
  justify-content: center;              /* vertically center content */
}

/* Ensure link text inside card is black */
.featured-card a {
  color: #000 !important;
  text-decoration: none;
}

/* Card content padding */
.featured-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center for content */
  height: 100%;
}

/* Images remain on top, but text inside card-body is centered vertically */
.featured-card .card-img-top {
  margin-bottom: 1rem;
}

/* Optional hover effect */
.featured-card:hover {
  filter: brightness(1.05);
}


.news-title {
    color: #000 !important;
}


.park-img {
    max-height: 150px;
    max-width: 150px;
    margin: auto;
    margin-top: 10px;
}


/* Responsiveness adjustments */
@media (max-width: 991.98px) {
  .news-page .lead-img { height: 200px; }
  .news-page .side-img { height: 70px; }
  .news-page .list-thumb { width: 96px; height: 64px; }
  
  
      @media (max-width: 991.98px) {
      /* Fullscreen menu */
      #mainNav.fullscreen {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 1.5rem;
        background-color: rgba(0,0,0,0.96);
        z-index: 2100 !important;
        overflow-y: auto !important;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }

      #mainNav.fullscreen.show {
        opacity: 1;
        transform: scale(1);
      }

      /* Disable Bootstrap collapse height animation */
      #mainNav.fullscreen.collapse {
        display: flex !important;
        height: 100vh !important;
        overflow: hidden;
      }

      #mainNav.fullscreen ul.navbar-nav {
        width: 100%;
        justify-content: center;
      }

      #mainNav.fullscreen .nav-item {
        display: block;
        text-align: center;
        width: 100%;
      }

      #mainNav.fullscreen .nav-link {
        font-size: 1.6rem;
        padding: 1rem 0;
        color: #fff !important;
        text-align: center;
      }

      /* Toggler fixed top-right */
      .navbar-toggler {
        position: fixed !important;
        top: 1rem;
        right: 1rem;
        z-index: 2201 !important;
        display: block !important;
        background: none;
        border: none;
        padding: 0;
      }

      /* Hamburger to X animation */
      .navbar-toggler .custom-toggler {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        position: relative;
      }
      .navbar-toggler .line {
        display: block;
        height: 3px;
        background: #000;
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      .navbar-toggler:not(.collapsed) .line1 {
        transform: rotate(45deg);
        background: #fff;
      }
      .navbar-toggler:not(.collapsed) .line2 {
        opacity: 0;
      }
      .navbar-toggler:not(.collapsed) .line3 {
        transform: rotate(-45deg);
        background: #fff;
      }

      body.nav-open {
        overflow: hidden;
        touch-action: none;
      }
      
      #mainNav.fullscreen {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Support iPhone safe areas */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);

  /* Ensure background covers the whole area */
  background: rgba(0, 0, 0, 0.95);
}

    }
  
}
@media (max-width: 575.98px) {
  .news-page .lead-img { height: 160px; }
  .news-page .side-thumb { display: none; } /* make side stories stack nicely */
}



@media (max-width: 991.98px) {
  /* Stack featured and grid vertically */
  .featured .row.gx-4 {
    flex-direction: column;
  }
  .featured .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  /* Adjust featured main image height smaller on mobile */
  .featured-main img.card-img-top {
    height: 200px;
  }
  /* Smaller card image height */
  .card-img {
    height: 150px;
  }
  /* More padding for hero content */
  .hero-content {
    bottom: 10%;
    padding: 0 10px;
  }
  /* Increase carousel caption font size for readability */
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn-read.btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
  }
}


/* Always show captions */
.carousel-caption {
  display: block !important;
  bottom: 20%;
  padding: 0 15px;
  color: white;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}




@media (max-width: 768px) {
    
    .hero {
        height: 60vh;
    }


.hero.carousel,
.hero.carousel .carousel-inner,
.hero.carousel .carousel-item,
.hero.carousel .carousel-item img {
  height: 60vh;        /* full viewport height */
}

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .carousel-caption {
    bottom: 10%;
    font-size: 1rem;
    padding: 0 10px;
  }
  .carousel-caption h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .btn-read.btn-lg {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }

  .post-content {
    padding: 0 1rem;
  }
}



/* Footer */

.site-footer {
    background-color: #262541;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}


