/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #ffffff;
  color: #000000;
  scroll-behavior: smooth;
  overscroll-behavior: none; /* Prevent bounce effects on mobile */
}

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  text-align: center;
  margin-top: 40px;
}

.section {
  padding: 45px 20px;
  max-width: 1000px;
  margin: auto;
}

.section-inner > h2 {
  font-size: 1.85rem;
  font-family: 'Cinzel', serif;
  margin-bottom: 40px; /* Adds space between h2 and what follows */
  margin-top: 25px;
  text-align: center;
  color: #111;
}

.section-inner .preview {
  font-family: 'Lato', sans-serif;
  font-size: 1.14rem;
  font-weight: 595;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: left;
}

.expandable.long-text {
  font-family: 'Lato', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.7em !important;
  color: #2b2b2b !important;
  background-color: #fafafa;
  padding: 20px;
  border-left: 5px solid #4169e1;
  margin-top: 20px;
}

/* === Navigation === */
.navbar {
  position: sticky;
  top: 0;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #4169e1;
}

.nav-buttons button {
  background-color: #ffd700;
  color: black;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s ease;
  margin-left: 10px;
}

.nav-buttons button:hover {
  transform: scale(1.05);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: none;
}

/* Show only the active slide */
.slideshow img.show {
  display: block !important;
  opacity: 1;
}

.hero-text {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); /* stronger shadow */
  padding: 0 20px;
  width: 100%;
}

.hero-text h1 {
  font-size: 3.7rem;
  margin-bottom: 10px;
}

.hero-text .title-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 595;
  color: #f5f5f5;
  margin-top: 10px; 
  margin-bottom: 10px;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.hero-text .tagline {
  font-size: 2.4rem;
  font-weight: 800;
  white-space: nowrap;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  color: #ffffff;
  margin-top: 60px;
}

/* === Expandable Content === */
.expandable {
  background-color: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #4169e1;
  margin-top: 20px;
}

/* === Testimonials === */
.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
}

.testimonial-slider div {
  min-width: 300px;
  padding: 20px;
  background-color: #fffaf0;
  border-left: 4px solid #ffd700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* === Signup Form === */
.signup {
  text-align: left;
  margin-top: 30px;
}

.signup input[type="email"] {
  padding: 10px;
  width: 60%;
  max-width: 300px;
  margin: 10px 0;
}

.signup button {
  background-color: #4169e1;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.signup button:hover {
  background-color: #00008b;
}

/* === Contact Form === */
form input, form textarea, form select {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
}

form button {
  background-color: #ffd700;
  color: black;
  font-weight: bold;
  border: none;
  padding: 12px 24px;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

form button:hover {
  transform: scale(1.05);
}

/* === Footer === */
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
/* === Social Icons === */
.social-icons {
  text-align: center;
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  color: #4169e1;
  text-decoration: none;
  font-weight: bold;
}

.social-icons a:hover {
  text-decoration: underline;
}

/* === Mobile Responsive === */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-buttons {
    display: none;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}
/* ========== FINAL FAQ STYLING ========== */
.accordion {
  margin-top: 30px;
}

.faq-item {
  border-left: 4px solid #d4af37;
  background-color: #fff;
  padding: 12px 18px;
  margin-bottom: 16px;
}

.accordion-toggle {
  font-family: 'Cinzel', serif;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #000;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-icon {
  color: #d4af37;
  font-size: 1.3rem;
}

.accordion-content {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
  display: none;
}

/* ========== TESTIMONIALS ========== */
.testimonial-stars {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 6px;
  text-shadow: 0 0 6px #f0e68c;
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.testimonial-card {
  scroll-snap-align: start;
  background: #fffaf0;
  border-left: 4px solid #d4af37;
  padding: 20px;
  min-width: 320px;
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.testimonial-card p {
  margin: 0 0 10px;
}

.testimonial-card .author {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 10px;
  color: #333;
}

.see-more-btn {
  background: transparent;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid #d4af37;
  border-radius: 4px;
  padding: 6px 16px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.see-more-btn:hover {
  background-color: #fff8e1;
  color: #000;
  border-color: #f0c75e;
}

.section-divider {
  height: 2px;
  max-width: 600px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 40px auto; /* Equal space above and below */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When in view, reveal the divider */
.section-divider.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Adjust top padding ONLY for first section */
#about.section {
  padding-top: 60px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  margin: 0 10px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.social-icons img:hover {
  transform: scale(1.15);
}

.btc-logo-top {
  display: block;
  margin: 0 auto 0px auto;
  max-height: 250px; /* Increase this value as needed */
  object-fit: contain;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;                 /* More breathing space */
  padding: 20px 0;
}

.logo-strip img {
  height: 80px;               /* Increased further */
  max-width: 220px;           /* Allows wider logos */
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-strip img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media screen and (max-width: 600px) {
  .logo-strip img {
    height: 40px;
    max-width: 120px;
  }
}

.btc-logo-flip {
  transition: transform 0.6s ease;
}

.btc-logo-flip:hover {
  transform: scaleX(-1); /* horizontal mirror flip */
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #222;
  text-align: center;
  margin: 40px auto;
  padding: 10px 20px;
  max-width: 700px;
  border: none;
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  background-color: transparent;
}

.book-preview-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.book-text {
  flex: 1 1 60%;
}

.book-cover-wrapper {
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-cover {
  display: block;
  width: 230px; /* Optional: adjust to make book slightly smaller */
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.book-cover:hover {
  transform: scale(1.02);
}

.zoom-icon-image {
  margin-left: 10px;
  vertical-align: bottom;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.zoom-icon-image:hover {
  transform: scale(1.2);
}

.zoom-caption {
  margin-top: 8px;
  cursor: pointer;
  display: inline-block;
}

.zoom-icon-image {
  display: block;
  margin: 10px auto 0;
  width: 22px;
  height: 22px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.2s;
}

.zoom-icon-image:hover {
  opacity: 1;
}

.logline {
  font-family: 'Raleway', sans-serif;
  font-size: 1.00rem;
  margin: 20px 0;
  line-height: 1.6;
}

.authors-backstory {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 20px 0;
}

@keyframes fadeInProphecy {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap');

.prophecy-box {
  font-family: 'Charm', cursive;
  font-size: 1.1rem;
  font-style: italic;
  background-color: #fffaf0;
  border-left: 3px solid #d4af37;
  padding: 16px 24px;
  margin: 30px auto;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  max-width: 850px;
}

.prophecy-columns {
  display: flex;
  justify-content: center;
  gap: 24px; /* brings columns closer */
  flex-wrap: wrap;
}

.prophecy-columns .column {
  flex: 1;
  max-width: 42%; /* narrower than before */
  min-width: 200px;
}

.prophecy-columns p {
  margin: 6px 0;
  text-align: left;
  line-height: 1.6;
}

.prophecy-columns p {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal Base */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  position: relative;
  text-align: center;
}

.modal-content img {
  max-width: 90%;
  max-height: 80vh;
  transition: transform 0.3s ease;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.book-meta {
  font-size: 1.0rem;
  font-family: 'Lato', sans-serif;
  color: #444;
  line-height: 1.5;
  margin-top: 10px;
}

.signup label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  display: inline-block;
  letter-spacing: 0.3px;
}

.imdb-box {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: #f5c518;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 240px;
}

.imdb-box:hover {
  transform: scale(1.03);
}

.imdb-box a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}

.imdb-logo {
  height: 22px;
  margin-right: 8px;
}

.imdb-text {
  font-size: 0.9rem;
}

@keyframes shimmerEffect {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.imdb-box:hover {
  background-image: linear-gradient(
    90deg,
    #f5c518 0%,
    #fff1a8 50%,
    #f5c518 100%
  );
  background-size: 200% auto;
  animation: shimmerEffect 1.8s linear 1;
}

.gradient-wrapper {
  background: linear-gradient(to top, #faf4dc 0%, #fbf3e2 40%, #fefaf3 85%, #ffffff 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #f7e6b5;
}

.float-left {
  float: left;
  width: 44%;
  margin: 0 20px 20px 0;
  border-radius: 6px;
}

.float-right {
  float: right;
  width: 44%;
  margin: 0 0 20px 20px;
  border-radius: 6px;
}

@media screen and (max-width: 600px) {
  .float-left,
  .float-right,
  .float-medium,
  .float-portrait {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 0 20px 0 !important;
  }
}

.float-medium {
  max-width: 42%;
  height: auto;
  border-radius: 6px;
  margin: 0 20px 20px 0;
}

.float-right.float-medium {
  margin: 0 0 20px 20px;
}

.float-portrait {
  max-height: 325px;
  width: auto;
}

.section-gallery {
  display: flex;
  overflow-x: auto;
  gap: 18px;
  padding: 20px 0;
}

.section-gallery img {
  height: 200px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.yorku-thumb-small {
  max-width: 260px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  margin-left: 20px;
  vertical-align: middle;
}

.media-split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.media-split img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.media-split .float-left,
.media-split .float-right {
  flex-shrink: 0;
}

.media-split div {
  flex: 1;
  min-width: 220px;
}

@media screen and (max-width: 768px) {
  .media-split {
    flex-direction: column;
    align-items: center;
  }

  .media-split img {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

/* ========== MEDIA & PRESS – YorkU Interview & Thumbnails ========== */

/* Aligns image and preview text side-by-side */
.book-preview-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Contains the thumbnail + caption below it */
.video-thumbnail-box-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-thumbnail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-thumbnail-box:hover {
  transform: translateX(4px); /* slight slide on hover */
}

/* Thumbnail image for YorkU video */
.yorku-thumb-large {
  width: 100%;
  max-width: 300px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  cursor: pointer;
}

/* Label beside the play icon */
.play-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-size:1.1rem;
  font-weight: 530;
  color: #121212;
  margin-top: 8px;
  transition: transform 0.2s ease, text-decoration 0.2s ease;
}

.play-label:hover {
  transform: translateY(-2px);
  text-decoration: underline;
  cursor: pointer;
}

.video-thumbnail-box:hover .play-label {
  color: #b8901f;
  text-decoration: underline;
}

.play-icon {
  font-size: 1.5rem;  /* Slightly smaller icon */
  color: #d4af37;
  line-height: 1;
  transition: transform 0.3s ease;
}

.video-thumbnail-box:hover .play-icon {
  transform: scale(1.2);
}

/* Specific sizing for the embedded left-aligned image */
.media-split img[alt="Roqe Media"] {
  max-width: 340px;
  width: 100%;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.roqe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 520;
  color: #b2932c;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.roqe-link:hover {
  color: #b8901f;
  transform: translateX(4px); /* subtle slide-in effect */
}

.roqe-link .roqe-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.roqe-link:hover .roqe-icon {
  transform: scale(1.2);
}

.selfdefence-reel-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fefbea;
  border: 1px solid #e2d8b0;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #a28327;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.selfdefence-reel-box:hover {
  background-color: #fdf6d0;
  transform: translateX(5px);
  color: #8b6f00;
}

.selfdefence-reel-box .reel-icon {
  font-size: 1.1rem;
  color: #c59d15;
  transition: transform 0.3s ease;
}

.selfdefence-reel-box:hover .reel-icon {
  transform: scale(1.2);
}

.reel-text {
  font-weight: 550;
}

.media-video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 40px;
}

.video-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 320px;
}

.video-embed {
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-text {
  flex: 1 1 300px;
  min-width: 260px;
}

.media-image {
  flex: 0 0 auto;
}

.media-image img {
  max-width: 240px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-share-icons {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 50;
}

.hero-share-icons a {
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-share-icons a:hover {
  background-color: #ffd700;
  color: #000;
}

.hero-share-icons i {
  font-size: 1rem;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  font-size: 2.0rem;         /* Short but elegant */
  font-weight: bold;
  color: #b2932c;            /* Royal gold */
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  z-index: 999;
}

.back-to-top:hover {
  color: #a8861e;            /* Slightly deeper gold on hover */
  transform: translateY(-3px);
}

/* Only shows when scrolled down */
body.scrolled .back-to-top {
  opacity: 0.75;
  pointer-events: auto;
}

img[alt="Group Training"] {
  max-width: 280px;
  height: auto;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

img[alt="Self-Defence Demo"] {
  max-width: 300px;
  height: auto;
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.prezi-embed {
  max-width: 440px;
  flex-shrink: 0;
  margin-left: 30px;
}

.book-preview-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.prezi-thumbnail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  max-width: 300px;
  margin-left: 30px;
}

.prezi-thumb-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.prezi-thumb-image:hover {
  transform: scale(1.03);
}

.prezi-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1.0rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.prezi-label:hover {
  color: #b2932c;
}

.prezi-play-icon {
  font-size: 1.3rem;
  color: #d4af37;
  transition: transform 0.3s ease;
}

.prezi-label:hover .prezi-play-icon {
  transform: scale(1.2);
}

/* ========== Scrollable Gallery ========== */
.scrollable-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin: 20px 0 40px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.scrollable-gallery img {
  height: 160px;
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.scrollable-gallery img:hover {
  transform: scale(1.04);
}

/* Mobile-only gallery scroll bar and arrows */
@media (max-width: 768px) {
  .scroll-gallery {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 16px;
    padding-bottom: 10px;
  }

  .scroll-gallery img {
    scroll-snap-align: start;
  }

  .gallery-arrows-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .gallery-arrow {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 5px 12px;
    font-size: 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .gallery-arrow:hover {
    background-color: #fff8e1;
    transform: scale(1.05);
  }

  .scroll-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .scroll-gallery::-webkit-scrollbar-thumb {
    background-color: #d4af37;
    border-radius: 10px;
  }

  .scroll-gallery::-webkit-scrollbar-track {
    background: transparent;
  }
}

/* Hide mobile arrows on desktop */
@media (min-width: 769px) {
  .gallery-arrows-mobile {
    display: none;
  }
}

/* ===== Section Headings ===== */
#credentials-full h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  margin-top: 30px;
  color: #333;
  position: relative;
  padding-left: 28px;
  text-align: center;
}

/* Set section icons dynamically */
#credentials-full h3[data-icon]::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3rem;
  color: #b2932c;
}

/* ===== Main List Container ===== */
#credentials-full ul {
  list-style: none;
  padding-left: 0;
  margin: 12px auto 24px;
  max-width: 600px;
  text-align: left;
}

/* ===== Primary Bullet List Items (gold •) ===== */
#credentials-full ul > li {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 5px;
  position: relative;
  padding-left: 22px;
  text-align: justify;
  hyphens: auto;
}

#credentials-full ul > li::before {
  content: '•';
  color: #b2932c;
  position: absolute;
  left: 0;
  top: -0.1em;
  font-size: 1.3rem; /* slightly increased */
  line-height: 1.4;
}

/* Remove gold bullet from specific primary list items */
#credentials-full ul > li.no-bullet::before {
  content: none;
}

/* ===== Nested Lists (gold ◦) ===== */
#credentials-full ul ul {
  padding-left: 16px;
  margin-top: 6px;
  margin-bottom: 12px;
}

#credentials-full ul ul li {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

#credentials-full ul ul li::before {
  content: '◦';
  color: #b2932c;
  font-size: 1rem; /* slightly increased */
  position: absolute;
  left: 0;
  top: -0.1em;
}

/* ✅ Gold checkmark for political recognition nested list only */
#credentials-full .political-recognition li::before {
  content: '✔';
  color: #b2932c;
  font-size: 0.95rem; /* slightly increased */
  position: absolute;
  left: 0;
  top: 0.05em;
}

.section-gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.section-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.text-wrap-flex {
  display: flex;
  gap: 25px;
  margin: 35px 0;
  align-items: center;
  flex-wrap: wrap;
}

.text-wrap-flex img {
  max-width: 260px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.text-wrap-flex.right-align {
  flex-direction: row;
}

.text-wrap-flex.left-align {
  flex-direction: row-reverse;
}

.text-wrap-flex .smaller-image {
  max-width: 220px;
}

.seminar-image {
  max-width: 365px;
  height: auto;
  margin: 10px;
  float: none;
  vertical-align: middle;
}

.float-right {
  float: right;
  margin-left: 20px;
}

.float-left {
  float: left;
  margin-right: 20px;
}

.seminar-image.small {
  max-width: 250px;
}

/* === Mobile Optimization for iPhone and Small Screens === */
@media screen and (max-width: 600px) {
  body, html {
    width: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .section {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .section-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  @media screen and (max-width: 600px) {
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center 25%;
    display: none;
    z-index: 0;
    opacity: 1; /* Remove fade effect */
    transition: none; /* Disable opacity transition */
  }

  .slideshow img.show {
    display: block;
    z-index: 2;
  }

  .slideshow img.next {
    display: block;
    z-index: 1;
  }

  .slideshow img[data-mobile] {
    display: none;
  }

  .slideshow img[data-mobile].show {
    display: block;
    z-index: 2;
  }

  .slideshow img[data-mobile].next {
    display: block;
    z-index: 1;
  }

  .slideshow img:not([data-mobile]) {
    display: none !important;
  }
}

  .hero-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    padding: 0 12px;
    width: 100%;
    z-index: 10; /* Ensure text is above images */
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 2.4rem;
    letter-spacing: -0.5px;
  }

  .hero-text .title-line {
    font-size: 1.1rem;
    line-height: 1.5rem;
    white-space: normal;
  }

  .hero-text .tagline {
    font-size: 1.3rem;
    line-height: 1.6rem;
    white-space: normal;
    margin-top: 30px;
  }

  /* Ensure hero share icons are on top of the hero image */
  .hero-share-icons {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 10px;
    z-index: 100; /* Increased z-index to ensure visibility */
  }

  .hero-share-icons a {
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .hero-share-icons a:hover {
    background-color: #ffd700;
    color: #000;
  }

/* Mobile: only show [data-mobile] images */
@media screen and (max-width: 600px) {
  .slideshow img:not([data-mobile]) {
    display: none !important;
  }
  .slideshow img[data-mobile] {
    display: none !important;
  }
  .slideshow img[data-mobile].show {
    display: block !important;
  }
}

  .book-preview-flex,
  .media-split,
  .video-paragraph-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .float-left,
  .float-right {
    float: none !important;
    width: 100% !important;
    margin: 20px 0 !important;
    display: block;
  }

  img,
  iframe {
    max-width: 100%;
    height: auto;
  }
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

@media screen and (max-width: 600px) {
  .testimonial-card {
    min-width: 280px !important;
    max-width: 90% !important;
    font-size: 0.88rem;
    padding: 16px;
  }

  .testimonial-slider {
    padding-left: 10px;
    padding-right: 10px;
  }
}

  .testimonial-stars {
    font-size: 2rem;
  }


@media screen and (max-width: 600px) {
  .pull-quote {
    font-size: 1.0rem;
    padding: 8px 12px;
    align-items: center;
  }

  .prophecy-columns {
    flex-direction: column;
  }

  .prophecy-columns .column {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .float-left,
  .float-right,
  .float-medium,
  .float-portrait {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 20px auto !important;
    display: block;
  }

  /* Optional: tweak overly small images like about-1 and about-3 */
  .float-medium {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-gallery-wrapper {
    position: relative;
  }

  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 1.8rem;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
  }

  .gallery-arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .gallery-arrow.left {
    left: 5px;
  }

  .gallery-arrow.right {
    right: 5px;
  }
}

.preview.centered {
  text-align: center;
}

@media screen and (max-width: 600px) {
  .prophecy-box {
    max-width: 100% !important;
    padding: 20px 22px !important;
  }

  .prophecy-columns {
    flex-direction: column;
    align-items: center;
  }

  .prophecy-columns .column {
    max-width: 100% !important;
    text-align: center !important;
  }

  .prophecy-columns p {
    font-size: 0.8rem !important;
    line-height: 1.65em !important;
    margin-bottom: 8px;
  }
}

/* Reset slideshow images */
.slideshow img {
  display: none;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out; /* Smooth fade */
  will-change: opacity; /* Optimize rendering */
}

/* Hide unused slides from JS loop */
.slideshow img.hidden-slide {
  display: none !important;
}

/* Mobile-only horizontal scroll for testimonials */
@media (max-width: 768px) {
  .testimonial-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
  }

  .testimonial-card {
    scroll-snap-align: start;
  }

/* Mobile-only testimonial scroll arrows */
  .testimonial-arrows-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .testimonial-arrows-mobile button {
    background-color: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 6px 14px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .testimonial-arrows-mobile button:hover {
    background-color: #fff8e1;
    transform: scale(1.05);
  }
}