/* ------------------- GLOBAL ------------------- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  background: #f9f9f9;
  color: #333;
}

/* ------------------- STICKY HEADER ------------------- */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 6px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.sticky-header img {
  max-width: 70px;
  height: auto;
}

.sticky-header h2 {
  font-size: 1.1rem;
  margin: 0;
}

.sticky-header p {
  font-size: 0.8rem;
  margin: 0;
  color: #666;
}

.sticky-header .d-flex span,
.sticky-header .fab,
.sticky-header .mt-2 a {
  font-size: 0.85rem;
}

/* ------------------- NAVBAR ------------------- */
.custom-navbar {
  background-color: #ff6f61;
  padding: 0.3rem 1rem;
}

.custom-navbar .navbar-brand {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.custom-navbar .navbar-brand:hover {
  color: #ffc107;
}

.custom-navbar .nav-link {
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  transition: color 0.3s;
}

.custom-navbar .nav-link:hover {
  color: #ffc107 !important;
}

.custom-navbar .navbar-toggler {
  border: none;
}

.custom-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' 
    xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' 
    stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ------------------- HERO BANNER ------------------- */
.hero-banner {
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
  margin: 15px;
  color: #fff;
}

.banner-title {
  font-size: 2rem;
  font-weight: bold;
}

.banner-subtext {
  font-size: 1.05rem;
  margin: 12px 0 18px;
  color: #f9f9f9;
}

.banner-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffe066;
  margin-bottom: 20px;
}

/* ------------------- ACTIVITY CARDS ------------------- */
.activity-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}

.activity-card:hover {
  transform: translateY(-6px);
}

.activity-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.activity-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6f61;
  margin-bottom: 10px;
}

.activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

/* ------------------- BUTTON ------------------- */
.btn-apply {
  background: #ff6f61;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.3s;
}

.btn-apply:hover {
  background: #e65c4d;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 992px) {
  .navbar-collapse {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    padding: 12px;
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .banner-title { font-size: 1.5rem; }
  .banner-subtext { font-size: 0.95rem; }
  .activity-title { font-size: 0.95rem; }
  
  .sticky-header img { max-width: 55px; }
  
  .navbar-nav { text-align: center; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .banner-title { font-size: 1.3rem; }
  .banner-subtext { font-size: 0.9rem; }
  .navbar-nav { font-size: 0.75rem; }
}
.footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #ff6f61; /* your brand accent */
}
.footer h6 {
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.footer p, .footer li {
  line-height: 1.6;
}
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #ff6f61; /* brand accent color */
  color: #fff;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  display: none; /* hidden until scrolling */
  transition: all 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #ffc107; /* playful hover */
  color: #111;
  transform: translateY(-3px);
}

/* ------------------- GALLERY ------------------- */
#gallery .gallery-row > .gallery-col {
  display: flex;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  width: 100%;
  height: 160px;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.05);
}

.gallery-item-clickable {
  cursor: pointer;
}

/* Gallery: tablet and up */
@media (min-width: 768px) {
  .gallery-item {
    height: 220px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

/* Gallery section: tighter on mobile */
.gallery-section.container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (min-width: 768px) {
  .gallery-section.container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.gallery-title {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-title {
    font-size: 2rem;
  }
}

/* Gallery modal close button - red for visibility */
#galleryModal .gallery-modal-close {
  background-color: #dc3545;
  opacity: 1;
  padding: 0.6rem;
  border-radius: 50%;
  background-size: 1.1em;
  min-width: 44px;
  min-height: 44px;
}
#galleryModal .gallery-modal-close:hover {
  background-color: #c82333;
  opacity: 1;
}
/* Larger tap target on mobile */
@media (max-width: 767px) {
  #galleryModal .gallery-modal-close {
    padding: 0.75rem;
    min-width: 48px;
    min-height: 48px;
    top: 0.5rem;
    right: 0.5rem;
    margin: 0;
  }
}

/* ------------------- BLOG ------------------- */

/* Blog listing page (blog.html) – clean, responsive layout */
.blog-page {
  min-height: 50vh;
}
.blog-section {
  padding: 1.5rem 0 3rem;
  background: #f8f9fa;
}
.blog-section .container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .blog-section .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
  .blog-section { padding: 2.5rem 0 4rem; }
  .blog-section .container { padding-left: 2rem; padding-right: 2rem; }
}

.blog-header {
  margin-bottom: 2rem;
  padding: 1.5rem 0.5rem;
}
@media (min-width: 768px) {
  .blog-header { margin-bottom: 2.5rem; padding: 2rem 1rem; }
}
.blog-header-title {
  color: #1a5f7a;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .blog-header-title { font-size: 0.85rem; }
}
@media (min-width: 768px) {
  .blog-header-title { font-size: 0.9rem; }
}
.blog-header-subtitle {
  color: #555;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .blog-header-subtitle { font-size: 0.9rem; }
}

.blog-grid {
  margin: 0 -0.5rem;
}
@media (min-width: 576px) {
  .blog-grid { margin: 0 -0.75rem; }
}
.blog-grid .col-12,
.blog-grid .col-md-6,
.blog-grid .col-xl-4 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .blog-grid .col-12,
  .blog-grid .col-md-6,
  .blog-grid .col-xl-4 { padding-left: 0.75rem; padding-right: 0.75rem; }
}

.blog-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.blog-item:hover {
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.blog-item .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
}
@media (min-width: 768px) {
  .blog-item .card-body { padding: 1.5rem; }
}

.blog-item-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a5f7a;
  margin: 0 0 0.4rem 0;
  line-height: 1.35;
}
@media (min-width: 576px) {
  .blog-item-title { font-size: 0.82rem; }
}
@media (min-width: 768px) {
  .blog-item-title { font-size: 0.85rem; }
}

.blog-item-excerpt {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin: 0 0 0.75rem 0;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .blog-item-excerpt { font-size: 0.875rem; }
}

.blog-item-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #007bff;
  display: inline-flex;
  align-items: center;
}
.blog-item:hover .blog-item-link {
  color: #0056b3;
}

/* Legacy blog-hero / blog-card (article pages and any old markup) */
#blog .blog-hero,
.blog-article-wrap .blog-hero {
  background: linear-gradient(135deg, #a3d8f4 0%, #7ec8e3 100%);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
  #blog .blog-hero,
  .blog-article-wrap .blog-hero {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
  }
}

#blog .blog-hero h2,
.blog-article-wrap .blog-hero h2 {
  color: #1a5f7a;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
}
@media (min-width: 768px) {
  #blog .blog-hero h2,
  .blog-article-wrap .blog-hero h2 { font-size: 1.5rem; }
}

.blog-subtitle {
  color: #333;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .blog-subtitle { font-size: 1rem; }
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid #eee;
}
.blog-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.blog-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a5f7a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.blog-card .btn {
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
}

/* Blog article page */
.blog-article-wrap {
  padding-bottom: 2rem;
}
.blog-article-wrap .container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.blog-additional-topics-page .container {
  max-width: 1140px;
}

.blog-article {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
@media (min-width: 768px) {
  .blog-article {
    padding: 2rem 2.5rem;
  }
}

.blog-article h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a5f7a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .blog-article h1 { font-size: 1.4rem; }
}

.blog-article .blog-meta {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.blog-article .content p {
  margin-bottom: 0.85rem;
  line-height: 1.6;
  color: #333;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .blog-article .content p { font-size: 0.925rem; }
}
.blog-article .content p:last-of-type { margin-bottom: 0; }

.blog-article .content h2,
.blog-article .content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a5f7a;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .blog-article .content h2 { font-size: 1.1rem; }
  .blog-article .content h3 { font-size: 1.05rem; }
}

.blog-article .content ul,
.blog-article .content ol {
  margin-bottom: 0.85rem;
  padding-left: 1.35rem;
  line-height: 1.55;
  color: #333;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .blog-article .content ul,
  .blog-article .content ol { font-size: 0.925rem; }
}
.blog-article .content li { margin-bottom: 0.3rem; }

.blog-article .content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin: 1rem 0;
  display: block;
}
@media (max-width: 767px) {
  .blog-article .content img {
    margin: 0.75rem 0;
  }
}

.blog-article .content strong { color: #222; }

.blog-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}
.blog-breadcrumb a { color: #007bff; text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }

.blog-article .btn-back {
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

/* Blog sidebar (e.g. additional-topics page) */
.blog-sidebar {
  border-radius: 10px;
  position: sticky;
  top: 5rem;
}
.blog-sidebar .card-body {
  padding: 1.25rem;
}
.blog-sidebar a:hover {
  color: #007bff;
  text-decoration: underline !important;
}
/* Additional topics sidebar: proper list, short labels, smaller font */
.additional-topics-sidebar-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a5f7a;
  margin: 0 0 0.25rem 0;
}
.additional-topics-hint {
  font-size: 0.72rem;
  color: #6c757d;
  margin: 0 0 0.5rem 0;
}
.additional-topics-group-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1a5f7a;
  margin: 1rem 0 0.4rem 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e0e8ec;
}
.additional-topics-group-title:first-of-type {
  margin-top: 0;
}
.additional-topics-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.5rem 0;
}
.additional-topics-list li {
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}
.additional-topics-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #7ec8e3;
  font-size: 0.65rem;
  top: 0.35em;
}
.additional-topics-list .topic-link {
  display: block;
  padding: 0.3rem 0.4rem 0.3rem 0;
  border-radius: 4px;
  color: #444;
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.additional-topics-list .topic-link:hover {
  background: #f0f7fa;
  color: #1a5f7a;
  text-decoration: none;
}
.additional-topics-list .topic-link.active {
  background: #1a5f7a;
  color: #fff;
  font-weight: 600;
  padding-left: 0.4rem;
  margin-left: -0.4rem;
}
.additional-topics-list .topic-link.active::before {
  display: none;
}
.additional-topics-list .topic-link.active:hover {
  color: #fff;
  background: #154a5f;
}
.additional-topics-list li:has(.active)::before {
  display: none;
}
@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-bottom: 1rem;
  }
}

.blog-topic-list {
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.blog-topic-list li {
  margin-bottom: 0.35rem;
}

/* ------------------- VIDEOS / ACTIVITIES & CELEBRATIONS ------------------- */
.videos-page {
  padding-bottom: 2rem;
}

.videos-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.videos-title {
  font-size: 1.75rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .videos-title { font-size: 2.25rem; }
}

.videos-subtitle {
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .videos-subtitle { font-size: 1.05rem; }
}

.videos-section .section-heading {
  color: #1a5f7a;
  font-size: 1.35rem;
}
@media (min-width: 768px) {
  .videos-section .section-heading { font-size: 1.5rem; }
}

.videos-section .section-intro {
  color: #555;
  font-size: 0.95rem;
}

/* Social link cards */
.social-card {
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.social-card:hover {
  transform: translateY(-4px);
}
.social-card:hover .social-card-inner {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}

.social-card-inner {
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.25s ease;
}

.social-card-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  border-radius: 0.3rem 0.3rem 0 0;
}
@media (max-width: 767px) {
  .social-card-icon { font-size: 2rem; padding: 1rem !important; }
}

.social-card-icon-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-card-body h3 { color: #333; }
.social-card-footer .btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
}
.social-card-footer .btn-youtube {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
}

/* Quick links strip */
.quick-links-strip {
  background: #f8f9fa;
  border: 1px solid #eee;
}
.quick-link-btn {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 48px;
  transition: opacity 0.2s, transform 0.2s;
}
.quick-link-btn:hover {
  color: #fff;
  opacity: 0.9;
  transform: scale(1.02);
}
.quick-link-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}
.quick-link-yt {
  background: #ff0000;
}

/* Activity list: 2 per row, visible icons & links */
.activity-grid {
  display: grid;
}
.activity-card {
  border-radius: 0.75rem;
  overflow: visible;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.activity-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
  transform: translateY(-2px);
}
.activity-card .card-body {
  padding: 1.25rem 1.5rem;
}
.activity-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a5f7a;
  margin-bottom: 0.35rem;
  line-height: 1.35;
  word-wrap: break-word;
}
.activity-card-desc {
  line-height: 1.4;
  min-height: 0;
}
.activity-card-links {
  margin-top: 0.5rem;
}
.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  min-height: 44px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}
.activity-link i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.activity-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.activity-link:hover {
  color: #fff;
  opacity: 0.92;
  transform: scale(1.02);
}
.activity-link-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}
.activity-link-yt {
  background: #ff0000;
}
@media (max-width: 575.98px) {
  .activity-card .card-body { padding: 1rem 1.25rem; }
  .activity-card-title { font-size: 1rem; }
  .activity-link { white-space: normal; padding: 0.5rem 0.75rem; font-size: 0.85rem; min-height: 42px; }
}

.channel-cta {
  border: 1px solid #eee;
}

 #staff-central {
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
  }

  .staff-title {
    color: #ff6f61;
    font-weight: 700;
    font-size: 1.6rem;
  }

  .staff-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
  }

  .staff-card {
    background: #fff;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-size: 0.9rem;
  }

  .staff-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }

  .staff-text {
    font-size: 0.85rem;
    color: #6c757d;
  }

  .staff-link {
    display: block;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: #212529;
    background: #f1f1f1;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .staff-link:hover {
    background: #ff6f61;
    color: #fff;
  }