/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Montserrat:wght@600;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #000 !important;
  background-color: transparent;
}

main {
  padding-top: 30px;
}

/* ========== GLOBAL HEADER ========== */
.global-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 32px;
  background-color: #000 !important;
  border-bottom: 1px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo img,
.header-text img {
  height: 40px;
  width: auto;
}

.logo a,
.header-text a {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 40px;
  flex-grow: 1;
}

.nav-links a {
  text-decoration: none;
  color: #F4F6D7;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a.booking-tab {
  color: #89CFF0 !important;
}

.nav-links a.booking-tab.active {
  background-color: #89CFF0;
  color: #000 !important;
  padding: 4px 8px;
  border-radius: 4px;
}


.nav-links a:hover {
  color: #F4F6D7;
}

.nav-links .active {
  background-color: #F4F6D7;
  color: #000 !important;
  padding: 4px 8px;
  border-radius: 4px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn {
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
  transition: background-color 0.3s ease;
}

.youtube {
  background-color: #FF0000;
}
.youtube:hover {
  background-color: #2563EB;
}

.instagram {
  background-color: #E1306C;
}
.instagram:hover {
  background-color: #c0205c;
}

/* ========== HOME PAGE ========== */
.home-page {
  background: url('home-page-background.png') no-repeat center center/cover;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 40px auto;
}

/* ========== RESOURCES PAGE ========== */
.resources-page {
  background: url('resource-page-background.png') no-repeat center center/cover;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  color: #000 !important;
}

.resources-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.resource-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-item {
  flex: 1 1 30%;
  text-align: center;
}

.resource-item a {
  text-decoration: none;
  color: inherit;
}

.resource-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: transform 0.3s ease;
}

.resource-item a:hover .resource-image {
  transform: scale(1.05);
}

.resource-item p {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.resource-download {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  background-color: #F4F6D7;
  color: #000 !important;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}
.resource-download:hover {
  background-color: red;
  color: #fff;
}

.resource-text {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  color: #000 !important;
  line-height: 1.4;
}

.resource-subtext {
  display: block;
  font-size: 0.95rem;
  font-weight: 300;
  color: #000 !important;
}

/* ========== VIDEO PAGE ========== */
.video-page {
  background: url('video-page-background.png') no-repeat center center/cover;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  color: #000 !important;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem 20px;
}

.video-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.video-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.video-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  font-family: 'Lato', sans-serif;
}

/* ========== VIDEO SHORTS PAGE ========== */
body.video-shorts-page {
  background-color: #000 !important;
  color: #F4F6D7;
}
.video-shorts-page .video-card {
  background-color: #111;
  color: #F4F6D7;
}
.video-shorts-page .video-card h3,
.video-shorts-page .video-card p,
.video-shorts-page .nav-links a {
  text-decoration: none;
  color: #F4F6D7;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.video-shorts-page .nav-links a.active {
  background-color: #F4F6D7;
  color: #000 !important;
}
.video-shorts-page .nav-links a:hover {
  color: #F4F6D7;
}

/* ========== BOOKING PAGE ========== */
body.booking-page {
  background: url('images/booking-bg.jpg') no-repeat center center/cover;
  color: #f4f6d7;
}

.booking-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 3rem 5%;
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
}

.booking-left {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.booking-left h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.booking-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #fdfdfd;
}

.booking-button {
  background-color: #f4f6d7 !important;
  color: #000 !important;
  padding: 18px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.booking-button:hover {
  background-color: #e6e8c4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.booking-right {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.rotator-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 10px;
}
.rotator img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.rotator img.active {
  opacity: 1;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* ========== ARTICLES PAGE ========== */
.articles-page {
  background: url('images/articles-page-backgroud.jpg') no-repeat center center/cover;
  color: #000 !important;
  font-family: 'Lato', sans-serif;
  padding-top: 120px;
  min-height: 100vh;
}

.articles-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 20px 60px;
}

.article-row {
  display: flex;
  background-color: #ffffff;
  color: #000 !important;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.article-row:hover {
  transform: translateY(-4px);
}

.article-image {
  flex: 0 0 280px;
  background-color: #000 !important;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-text {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #000 !important;
}
.article-snippet {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}
.article-meta {
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
  margin-bottom: 1rem;
}
.read-more {
  align-self: flex-start;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #222;
  border-color: #222;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.page-button {
  background-color: #F4F6D7;
  color: #000 !important;
  border: none;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-button:hover {
  background-color: #e6e8c4;
}

.page-button.active {
  background-color: #000 !important;
  color: #F4F6D7;
  border: 2px solid #F4F6D7;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .booking-content {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .booking-left,
  .booking-right {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

  .booking-button {
    align-self: center;
  }

  .article-row {
    flex-direction: column;
  }

  .article-image {
    width: 100%;
    height: 200px;
  }
}



.staff-divider { border: none; border-top: 2px solid #F4F6D7; margin: 2rem 0; }

/* ========== STAFF PAGE ========== */
body.staff-page {
  background: url("images/staff-background.png") no-repeat center center/cover;
  color: #f4f6d7;
}

.staff-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 5%;
  background-color: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
}

.staff-block {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
}

.staff-left {
  flex: 0 0 66%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.staff-left h1 {
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.staff-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fdfdfd;
}

.staff-right {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.staff-divider {
  border: none;
  border-top: 2px solid #F4F6D7;
  margin: 2rem 0;
}

.staff-subheading {
  font-size: 1rem;
  color: #bbbbbb;
  margin-bottom: 1rem;
  font-style: italic;
}



/* ========== RESOURCE CARD UPDATE ========== */
.resource-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.resource-card p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  font-family: 'Lato', sans-serif;
}



/* ========== RESOURCE GRID 3-COLUMN LAYOUT ========== */
.resource-grid.resource-grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}



/* ========== RESOURCE LINK STYLE ========== */
.resource-link {
  text-decoration: none;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #000 !important;
}
.resource-link:hover {
  color: #333;
}



.resource-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}



.resource-card .resource-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0 0.3rem;
  color: #000 !important;
}
.resource-card .resource-link {
  text-decoration: none;
  color: #000 !important;
}
.resource-card .resource-link:hover {
  color: #333;
}


/* ========== STAFF MAP IMAGE ========== */

.staff-map-image {
  margin: 2rem auto;
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  display: block;
}




/* ========== STAFF PAGE FADE-IN ANIMATION ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.staff-map-image,
.booking-left,
.booking-right,
.rotator-wrapper {
  animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
/* ========== FEATURED SECTIONS FOR HOMEPAGE ========== */
.featured-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background-color: #f9f9f9;
}

.video-feature {
  flex: 1 1 45%;
  max-width: 560px;
  text-align: center;
}

.video-feature h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.featured-articles {
  background-color: #fff;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-articles h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.article-highlight {
  display: flex;
  gap: 1.5rem;
  background: #f4f6d7;
  border-radius: 10px;
  overflow: hidden;
  padding: 1.5rem;
  align-items: center;
}

.article-highlight img {
  width: 40%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.article-highlight .article-content {
  flex: 1;
}

.article-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.article-snippet {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.read-more {
  font-weight: bold;
  color: #000 !important;
  text-decoration: none;
  border-bottom: 2px solid #000;
}

.read-more:hover {
  color: #222;
  border-color: #222;
}

.article-compact {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.article-compact img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.article-compact h4 {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
}

.article-compact .read-more {
  display: inline-block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Responsive support */
@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-highlight {
    flex-direction: column;
    text-align: center;
  }

  .article-highlight img {
    width: 100%;
  }

  .featured-videos {
    flex-direction: column;
  }
}

/* ========== HOME HERO AND FEATURED ARTICLE ========== */


.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}





.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}



.hero-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-embed.small iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.featured-article-section {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}



.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}


.article-right {
  flex: 0 0 33%;
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 10px;
  min-height: 300px;
}

.article-full h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.article-full p {
  line-height: 1.8 !important;
}

.article-full img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* ========== INDEX PAGE HERO + ARTICLE SECTIONS ========== */


.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}




.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.hero-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.video-embed.small iframe {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.featured-article-section {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}


.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}

.article-right {
  flex: 0 0 33%;
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 10px;
  min-height: 300px;
}
.article-full h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}
.article-full p {
  line-height: 1.8 !important;
}
.article-full img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

/* ========== INDEX PAGE HERO + ARTICLE SECTIONS ========== */


.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}




.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}




.hero-text {
  padding-bottom: 0.25in;
}


.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  margin: 0;
}
.hero-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.featured-article-section {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}


.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}

.article-right {
  flex: 0 0 33%;
  background-color: #f4f4f4;
  padding: 2rem;
  border-radius: 10px;
  min-height: 300px;
}
.article-full h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}
.article-full p {
  line-height: 1.8 !important;
}
.article-full img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}



.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}


.hero-text-block {
  margin-bottom: 2rem;
}
.hero-text-block h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-text-block p {
  font-size: 1.1rem;
  font-family: 'Lato', sans-serif;
  margin: 0;
}
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.video-block {
  flex: 1 1 48%;
}
.video-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #f4f6d7;
}
.video-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.video-card.dark {
  background-color: #111;
  color: #f4f6d7;
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.video-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.video-card p {
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
}



.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}





.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}





.hero-text {
  padding-bottom: 0.25in;
}



.hero-middle,
.hero-right {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.video-card {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
}

body.home-page 
.video-card.dark {
  background-color: #111;
  color: #f4f6d7;
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}
.video-card h3 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.video-section-heading {
  color: #f4f6d7;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}


.featured-article-section {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}


.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}

.article-right {
  flex: 0 0 33%;
}
.article-divider {
  width: 1px;
  background: #000;
}
.read-more-section {
  margin-top: 2rem;
}

.more-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.article-square {
  flex: 1 1 30%;
  background: #f4f4f4;
  padding: 12px;
  border-radius: 10px;
  text-align: left;
}
.article-square img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}



.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}





.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}





.hero-text {
  padding-bottom: 0.25in;
}



.hero-middle,
.hero-right {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.video-card {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
}

body.home-page 

.video-card.dark {
  background-color: #111;
  color: #f4f6d7;
}

.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

.video-card h3 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.video-section-heading {
  color: #f4f6d7;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}



.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}





.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}



.hero-text h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.hero-text p {
  margin-top: 0.5rem;
  font-family: 'Lato', sans-serif;
}

.hero-middle,
.hero-right {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.video-card {
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
}
body.home-page 
.video-card.dark {
  background: #111;
  color: #f4f6d7;
}
.video-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}
.video-card h3 {
  text-align: center;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.video-section-heading {
  text-align: center;
  color: #f4f6d7;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}


.featured-article-section {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}


.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}

.article-right {
  flex: 0 0 33%;
}
.article-divider {
  width: 1px;
  background: #000;
}



.hero-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: url('images/home-page-heading.png') no-repeat center center;
  background-size: cover;
  background-color: transparent;
  color: #f4f6d7;
  width: 100%;
  gap: 2rem;
  padding: 96px 5% 32px 5%;
}





.hero-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}



.hero-middle,
.hero-right {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.video-card {
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
}

.video-section-heading {
  text-align: center;
  color: #f4f6d7;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}


.more-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}


.article-square {
  flex: 1 1 30%;
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

.article-square:hover {
  transform: translateY(-4px);
}

.article-square a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-square img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.article-square h4 {
  font-size: 1rem;
  margin: 0.25rem 0;
  font-family: 'Montserrat', sans-serif;
}

.article-square p {
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  color: #555;
}


.more-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 2rem;
}


.article-square {
  background-color: #f4f4f4;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  transition: transform 0.2s ease-in-out;
}

.article-square:hover {
  transform: translateY(-4px);
}

.article-square a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-square img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.article-square h4 {
  font-size: 1rem;
  margin: 0.25rem 0;
  font-family: 'Montserrat', sans-serif;
}

.article-square p {
  font-size: 0.9rem;
  font-family: 'Lato', sans-serif;
  color: #555;
}
.video-section-heading.black {
  color: #000 !important;
}






.tiny-icon {
  display: block;
  width: 0.5in;
  height: 0.5in;
  border-radius: 50%;
  object-fit: contain;
  margin: 0.25in auto;
}







.video-section-heading.episode {
  color: #000 !important;
}
.hero-middle .video-section-heading.episode {
  color: #000 !important;
}

.video-section-heading.episode {
  color: #000 !important;
}

.article-row {
  margin-bottom: 24px;
  padding: 16px 0;
}



/* Music Sidebar */


.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}



.music-heading {
  display: none; /* Hide the old heading */
}

.music-subheading {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 14px;
  padding-left: 5%;
  color: #f4f6d7 !important;
}

.divider {
  border: none;
  border-top: 1px solid #f4f6d7;
  width: 90%;
  margin: 20px auto;
  display: block;
}

.spotify-embed {
  width: 90%;
  margin: 0 auto 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.music-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 20px;
}

.music-icons img {
  width: 48%;
  height: auto;
  object-fit: contain;
}





.article-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}



.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}


/* Ensure the music sidebar has no rounding and fills height */

.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}




/* === Corrected 66-33 Layout with Visible Sidebar === */

.article-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}



.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}



.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}





.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.music-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0 20px;
}

.music-icons img {
  width: 20%;
  height: auto;
}


.article-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}



.article-left {
  width: 66%;
  padding: 2rem;
  box-sizing: border-box;
}



.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}




.music-sidebar {
  width: 34%;
  background-color: #222 !important;
  color: #f4f6d7 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}


.music-sidebar h2.music-heading {
  display: none; /* Hide the old heading */
}

.spotify-embed {
  width: 90%;
  margin: 0 auto 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-embed:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.music-icons img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ========== GLOBAL PAGE FADE-IN ========== */
body:not(.home-page):not(.index-page) main {
  animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}

/* ========== CLEANER HOVER FOR RESOURCE/SITE BUTTONS ========== */
.resource-download:hover {
  background-color: #e0e2c4 !important; /* slightly darker cream */
  color: #000 !important;
}

/* ========== HOMEPAGE LATEST EPISODE CARD ONLY ========== */
body.home-page .video-card.white {
  background-color: #f4f6d7 !important;
}

body.home-page .video-card.white h2,
body.home-page .video-card.white h3 {
  color: #000 !important;
}

/* ========== RESTORE HEADING COLOR FOR STAFF & BOOKING ========== */
body.staff-page h2,
body.booking-page h2 {
  color: #f4f6d7 !important;
}

/* ========== RESTORE H1 COLOR FOR STAFF & BOOKING ========== */
body.staff-page h1,
body.booking-page h1 {
  color: #f4f6d7 !important;
}

/* ========== ACTIVE PAGINATION BUTTON FOR ARTICLES ========== */
.pagination .page-button.active {
  color: #f4f6d7 !important;
}


.articles-page .article-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.index-feature .article-title {
  margin-bottom: 0.2rem;
}

.index-feature .article-snippet {
  margin-bottom: 0.2rem;
}

.index-feature .article-meta {
  margin-bottom: 0.6rem;
}

.hero-right-33 {
  border: none;
  padding-right: 1rem;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: none;
}
/* === INSTAGRAM EMBED CENTERING FIX === */
.embed-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.instagram-media {
  display: block;
  margin: 2rem auto;
  max-width: 400px;
}

/* === PROFESSIONAL ARTICLE STYLING ENHANCEMENTS === */
#article-body {
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

#article-body p {
  margin-bottom: 1.75rem;
  line-height: 1.7;
  font-size: 1.15rem;
  font-family: 'Lato', sans-serif;
}

#article-body h1, 
#article-body h2, 
#article-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

#article-body h1 {
  font-size: 2.5rem;
}

#article-body h2 {
  font-size: 2rem;
}

#article-body h3 {
  font-size: 1.5rem;
}

#article-meta {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  margin-bottom: 1.5rem;
}

#article-body ul,
#article-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

#article-body li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

#article-body blockquote {
  border-left: 4px solid #ccc;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
}

@media (max-width: 768px) {
  #article-body {
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  #article-body h1 {
    font-size: 2rem;
  }

  #article-body h2 {
    font-size: 1.5rem;
  }

  #article-body h3 {
    font-size: 1.25rem;
  }
}

/* === HEADING CONSISTENCY FIX FOR INDEX PAGE === */
#article-body h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#article-body h2 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#article-body h3 {
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

#article-body h4 {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
}



/* === CLEAN IMAGE DISPLAY FOR ARTICLES === */
#article-body img {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 2rem auto;
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: transparent !important;
}


.music-header-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border-bottom: 1px solid #f4f6d7;
}


.booking-email-button {
  background-color: #3B82F6;
  color: #fff !important;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  text-align: center;
  display: block;
  margin: 1rem auto 0;
  text-transform: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.booking-email-button:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}


.booking-button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.booking-button-group a {
  width: 220px;
  background-color: #3B82F6;
  color: #fff !important;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Lato', sans-serif;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  text-transform: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-button-group a:hover {
  background-color: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.booking-button-group a:last-child {
  background-color: #E1306C;
}
.booking-button-group a:last-child:hover {
  background-color: #c0205c;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 80px 16px 32px;
  }

  .hero-left, .hero-middle, .hero-right {
    width: 100%;
    padding: 0;
  }

  .hero-left .hero-text,
  .hero-middle .video-card,
  .hero-right .video-card {
    margin-bottom: 1.5rem;
  }

  .global-header .nav-links,
  .global-header .cta-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    padding: 12px;
  }

  
.mobile-nav {
  display: none;
  position: absolute;
  top: 60px; /* adjust as needed based on header height */
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1em;
  }

  .mobile-nav a {
    color: #f4f6d7;
    text-decoration: none;
    margin: 0.5em 0;
  }
}


  body.mobile-nav-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    color: #f4f6d7;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #444;
    font-family: 'Montserrat', sans-serif;
  }
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #f4f6d7;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #f4f6d7;
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* ========== MOBILE-ONLY HEADER & LAYOUT ========== */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 80px 16px 32px;
  }

  .hero-left, .hero-middle, .hero-right {
    width: 100%;
    padding: 0;
  }

  .hero-left .hero-text,
  .hero-middle .video-card,
  .hero-right .video-card {
    margin-bottom: 1.5rem;
  }

  .global-header .nav-links,
  .global-header .cta-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
    padding: 12px;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  body.mobile-nav-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    color: #f4f6d7;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #444;
    font-family: 'Montserrat', sans-serif;
  }
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #f4f6d7;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #f4f6d7;
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}


/* ========== MOBILE-ONLY OVERRIDES (≤768px) ========== */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 60px 16px 32px;
  }

  .hero-left, .hero-middle, .hero-right {
    width: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .global-header .nav-links,
  .global-header .cta-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
    padding: 12px;
  }

  .mobile-menu-toggle .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-menu-toggle .hamburger span {
    height: 3px;
    width: 25px;
    background: #f4f6d7;
    display: block;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    background: #000;
    padding: 1rem;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  body.mobile-nav-open .mobile-nav {
    display: flex;
  }

  .mobile-nav a {
    color: #f4f6d7;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #444;
    font-family: 'Montserrat', sans-serif;
  }
}


@media (max-width: 768px) {
  .main-content-container {
    flex-direction: column;
  }

  .main-content-container > div {
    width: 100% !important;
    margin-bottom: 24px;
  }

  .music-section iframe,
  .music-section .apple-music-buttons {
    width: 100% !important;
  }

  .divider {
    margin: 32px auto;
  }
}


@media (max-width: 768px) {
  .article-container {
    display: flex;
    flex-direction: column !important;
  }

  .article-left,
  .music-sidebar {
    width: 100% !important;
    max-width: 100% !important;
  }

  .music-sidebar iframe,
  .music-sidebar .apple-music-buttons {
    width: 100% !important;
  }

  .article-divider {
    margin: 24px auto;
  }
}



/* --- MOBILE LAYOUT FOR STAFF PAGE --- */
@media (max-width: 768px) {
  .staff-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .staff-left,
  .staff-right {
    width: 100% !important;
    padding: 0 !important;
    text-align: center;
  }

  .staff-left h1,
  .staff-left .staff-subheading {
    text-align: center;
  }

  .rotator-wrapper,
  .booking-button,
  .staff-right p,
  .staff-left p {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .staff-map-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
  }

  .rotator img {
    max-width: 100%;
    height: auto;
  }
}



@media (max-width: 768px) {
  .staff-left h1 {
    font-size: 1.5rem;
  }

  .staff-subheading {
    font-size: 1.1rem;
  }

  .staff-left p,
  .staff-right p {
    font-size: 0.95rem;
  }

  /* Reorder elements: move .rotator above the paragraph and .staff-map-image below */
  .staff-block {
    display: flex;
    flex-direction: column;
  }

  .staff-left .rotator-wrapper {
    order: 2;
  }

  .staff-left p {
    order: 3;
  }

  .staff-left .staff-map-image {
    order: 4;
  }

  .staff-right .rotator-wrapper {
    order: 2;
  }

  .staff-right p {
    order: 3;
  }

  .staff-right .staff-map-image {
    order: 4;
  }
}


@media (max-width: 768px) {
  .staff-left h1,
  .staff-right h1 {
    font-size: 1.5rem;
  }

  .staff-subheading {
    font-size: 1.1rem;
  }

  .staff-left p,
  .staff-right p {
    font-size: 0.95rem;
  }

  .staff-left,
  .staff-right {
    display: flex;
    flex-direction: column;
  }

  .staff-left .rotator-wrapper,
  .staff-right .rotator-wrapper {
    order: 2;
    margin-top: 0.5rem;
  }

  .staff-left p,
  .staff-right p {
    order: 3;
  }

  .staff-left .staff-map-image,
  .staff-right .staff-map-image {
    order: 4;
    margin-top: 1rem;
  }
}


/* --- MOBILE STAFF PAGE FIXES --- */
@media (max-width: 768px) {
  .staff-block {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
  }

  .staff-left,
  .staff-right {
    width: 100%;
    padding: 0 !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .staff-left h1,
  .staff-right h1,
  .staff-left .staff-subheading,
  .staff-right .staff-subheading {
    text-align: left !important;
    font-size: 1.5rem;
  }

  .staff-left p,
  .staff-right p {
    font-size: 0.95rem;
    text-align: left;
  }

  .image-rotator {
    order: 2;
  }

  .staff-map-image.static-image {
    order: 4;
    margin-top: 1rem;
    width: 100%;
    height: auto;
  }
}


/* Strengthen fixed behavior for mobile menu under the global header */
@media (max-width: 768px) {
  header.global-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
  }

  body {
    padding-top: 60px !important; /* Prevent content being hidden under fixed header */
  }

  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    background-color: #111 !important;
    z-index: 9999 !important;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #111 !important;
    z-index: 9999 !important;
    display: none;
    overflow-y: auto;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .hero-left .hero-text {
    display: none !important;
  }

  .hero-left {
    display: none !important;
  }

  .hero-section {
    padding-top: 80px !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - 60px);
    background-color: #111 !important;
    z-index: 9999 !important;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .hero-left .hero-text {
    display: none !important;
  }

  .hero-left {
    display: none !important;
  }

  .hero-section {
    padding: 80px 12px 16px !important;
    gap: 0 !important;
  }

  .hero-middle .video-card,
  .hero-right .video-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 12px !important;
    padding: 8px 12px !important;
  }

  .hero-middle,
  .hero-right {
    margin: 0 !important;
    padding: 0 !important;
  }

  .video-card iframe {
    height: 180px !important;
  }

  /* Fix mobile menu so it overlays page when open and remains visible */
  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background-color: #111 !important;
    z-index: 9999 !important;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  header.global-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
  }

  body {
    padding-top: 60px !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    width: 100vw !important;
    height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    background-color: #111 !important;
    z-index: 10001 !important;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  header.global-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000 !important;
  }

  body {
    padding-top: 60px !important;
  }

  .hero-section {
    padding-top: 40px !important;
    padding-bottom: 16px !important;
    gap: 0 !important;
  }

  .hero-left,
  .hero-left .hero-text {
    display: none !important;
  }

  .hero-middle .video-card,
  .hero-right .video-card {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 12px !important;
    padding: 8px 12px !important;
  }

  .hero-middle,
  .hero-right {
    margin: 0 !important;
    padding: 0 !important;
  }

  .video-card iframe {
    height: 180px !important;
  }

  .mobile-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    width: 100vw !important;
    height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    background-color: #111 !important;
    z-index: 10001 !important;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-menu.show {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .more-articles-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    padding: 1rem 1rem 2rem !important;
  }

  .article-square {
    width: 100% !important;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  main.article-content {
    padding-top: 10px !important;
  }

  #article-title {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
  }

  .article-snippet {
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
  }

  #article-body {
    padding: 0 1rem !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  #article-body img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 1rem auto !important;
    border-radius: 10px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 768px) {
  main.article-content,
  .articles-container {
    padding-top: 70px !important; /* 60px for header + 10px breathing room */
  }
}

@media (max-width: 768px) {
  .mobile-nav {
    position: fixed !important;
    top: 60px !important;
    left: 0;
    right: 0;
    width: 100vw !important;
    height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
    background-color: #111 !important;
    z-index: 10001 !important;
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 12px 20px !important;
  }

  .mobile-nav.show, body.mobile-nav-open .mobile-nav {
    display: flex !important;
  }

  body.mobile-nav-open {
    overflow: hidden !important;
  }
}

/* ========== FADE-IN ANIMATIONS ========== */
@keyframes fadeInUpMobile {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-middle, .hero-right,
  .video-card, .article-row,
  .booking-left, .booking-right,
  .resource-card, .article-square,
  .staff-block, .rotator-wrapper {
    animation: fadeInUpMobile 0.9s ease both;
  }

  .mobile-nav a {
    animation: fadeInUpMobile 0.5s ease both;
  }

  .hero-section, .articles-container, .resources-page, .video-page {
    animation: fadeInUpMobile 1s ease both;
  }

  .article-image img,
  .resource-image {
    animation: fadeInUpMobile 1s ease both;
  }
}

.desktop-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop-hidden {
    display: flex;
  }
}


/* Article Page Adjustments */
#article-title {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

#article-subheading {
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #444;
}

main.article-content {
  padding-top: 28px !important;
}

/* Mobile Navigation Fixes */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #000;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 1rem;
  z-index: 1000;
}

.mobile-nav-open .mobile-nav {
  display: flex;
}

.mobile-nav a {
  color: #f4f6d7;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid #444;
  font-family: 'Montserrat', sans-serif;
}

body.mobile-nav-open main {
  position: relative;
  z-index: 1;
  display: block;
}


.pagination-button {
  background-color: #000;
  color: #f4f6d7;
  border: 1px solid #f4f6d7;
  padding: 8px 12px;
  margin: 4px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  min-height: 36px;
  min-width: 36px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-button:hover {
  background-color: #333;
}

.pagination-button.active {
  background-color: #f4f6d7;
  color: #000;
}

.pagination-button {
  background-color: #000;
  color: #f4f6d7;
  border: 1px solid #f4f6d7;
  padding: 12px 10px;
  margin: 6px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  min-width: 40px;
  min-height: 48px;
  text-align: center;
  vertical-align: middle;
  transition: background-color 0.3s, color 0.3s;
}

.pagination-button:hover {
  background-color: #333;
}

.pagination-button.active {
  background-color: #f4f6d7;
  color: #000;
}

/* Pagination Buttons for video.html and videoshorts.html */
#pagination button {
  background-color: black;
  color: #f4f6d7;
  border: 2px solid #f4f6d7;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  margin: 6px;
  cursor: pointer;
  border-radius: 8px;
  min-width: 40px;
  min-height: 50px;
  transition: background-color 0.3s, color 0.3s;
}

#pagination button:hover {
  background-color: #f4f6d7;
  color: black;
}

#pagination button.active {
  background-color: #f4f6d7;
  color: black;
  font-weight: bold;
}
.feature-article-image-container {
  max-width: 100%;
  overflow: hidden;
}

.feature-article-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
}


#index-feature img,
#article-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}
