/* Prevent iOS zoom on input focus */
@media screen and (max-width: 768px) {
  input, select, textarea {
    font-size: 16px;
  }
}

/* CUNT Site Shared Styles */

/* Church-like font for titles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #4a1c6b;
  --primary-dark: #351450;
  --primary-light: #6b2d8f;
  --secondary: #d4af37;
  --secondary-dark: #b8972f;
  --text-dark: #1a1020;
  --text-light: #5a4a6a;
  --bg-light: #f8f5ff;
  --bg-warm: #fff9e6;
  --bg-dark: #1a1020;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(74, 28, 107, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-title span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-cta {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--secondary-dark) !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.8) 0%, rgba(35, 10, 50, 0.6) 100%);
}

/* Hero Video Background */
.hero-video-section {
  background: transparent;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.8) 0%, rgba(35, 10, 50, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.church-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTION UTILITIES ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--bg-warm);
  padding: 60px 24px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-light);
  font-size: 14px;
}

.stat-item small {
  font-size: 10px;
  color: var(--text-light);
  opacity: 0.7;
}

/* ===== GOSPEL SECTION ===== */
.gospel {
  padding: 100px 24px;
  background: white;
}

.gospel-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gospel-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 28, 107, 0.2);
}

.gospel-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gospel-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.gospel-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.gospel-quote {
  font-style: italic;
  color: var(--secondary-dark) !important;
  font-size: 1.125rem !important;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
  margin-top: 24px;
}

/* ===== HOLE OF GLORY SECTION ===== */
.hole-of-glory {
  padding: 100px 24px;
  background: var(--primary);
}

.hole-of-glory .section-header h2 {
  color: white;
}

.hole-of-glory .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.teachings-container {
  max-width: 900px;
  margin: 0 auto;
}

.teachings-search {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}

.teachings-search input {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  outline: none;
}

.teachings-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.teachings-search input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

.teachings-grid {
  display: grid;
  gap: 20px;
}

.teaching-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.teaching-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.teaching-verse {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.teaching-text {
  color: white;
  font-size: 1.125rem;
  line-height: 1.7;
  font-style: italic;
}

.teaching-commentary {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-more-teachings {
  text-align: center;
  margin-top: 32px;
}

.view-more-teachings a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

.view-more-teachings a:hover {
  text-decoration: underline;
}

/* ===== CUNILINGO DICTIONARY ===== */
.cunilingo {
  padding: 100px 24px;
  background: var(--bg-light);
}

.dictionary-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dictionary-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(74, 28, 107, 0.08);
  border-left: 4px solid var(--secondary);
}

.dictionary-term {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.dictionary-pronunciation {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 12px;
}

.dictionary-definition {
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===== LEVELS SECTION ===== */
.levels {
  padding: 100px 24px;
  background: white;
}

.levels-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.level-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.level-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(74, 28, 107, 0.15);
}

.level-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.level-card.featured .level-name,
.level-card.featured .level-price,
.level-card.featured .level-description {
  color: white;
}

.level-card.featured .level-price span {
  color: rgba(255, 255, 255, 0.7);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
}

.level-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.level-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.level-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.level-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.level-description {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.level-features {
  margin-top: 20px;
  text-align: left;
}

.level-features li {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.level-card.featured .level-features li {
  color: rgba(255, 255, 255, 0.8);
}

.level-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* ===== CUNTSTELLATION SECTION ===== */
.cuntstellation {
  padding: 100px 24px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.cuntstellation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://cdn.vagibond.com/sites/cunt/cuntstellation.jpg') center center / cover;
  opacity: 0.15;
}

.cuntstellation .section-header {
  position: relative;
  z-index: 1;
}

.cuntstellation .section-header h2 {
  color: white;
}

.cuntstellation .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.cuntstellation-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cuntstellation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.cuntstellation-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cuntstellation-feature .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.cuntstellation-feature h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.cuntstellation-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.cuntstellation-cta {
  text-align: center;
}

/* ===== VESTMENTS SECTION ===== */
.vestments {
  padding: 100px 24px;
  background: var(--bg-warm);
}

.vestments-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vestment-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(74, 28, 107, 0.08);
}

.vestment-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.vestment-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.vestment-description {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== MINISTRIES CAROUSEL ===== */
.ministries {
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.ministries .section-header {
  padding: 0 24px;
}

.ministries-carousel-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Fade edges for smooth visual transition */
.ministries-carousel-wrapper::before,
.ministries-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 5;
  pointer-events: none;
}

.ministries-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.ministries-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.ministries-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
}

.ministries-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  display: none;
}


.ministry-card {
  flex: 0 0 340px;
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ministry-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(74, 28, 107, 0.15);
}

.ministry-image {
  height: 200px;
  overflow: hidden;
}


.ministry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ministry-card:hover .ministry-image img {
  transform: scale(1.05);
}

.ministry-content {
  padding: 24px;
}

.ministry-badge {
  display: inline-block;
  background: rgba(74, 28, 107, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.ministry-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.ministry-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 14px;
}

.ministry-link {
  color: var(--secondary-dark);
  font-weight: 600;
  text-decoration: none;
}

.ministry-link:hover {
  text-decoration: underline;
}

/* Responsive carousel */
@media (max-width: 768px) {
  .ministries-carousel-wrapper {
    padding: 0 16px;
  }

  .ministries-carousel-wrapper::before,
  .ministries-carousel-wrapper::after {
    width: 40px;
  }

  .ministry-card {
    flex: 0 0 280px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 24px;
  background: var(--bg-light);
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(74, 28, 107, 0.08);
  border-top: 4px solid var(--secondary);
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-dark);
}

.author-info p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 100px 24px;
  background: white;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--bg-light);
  transition: border-color 0.3s;
}

.timeline-content:hover {
  border-color: var(--secondary);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 24px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CTA Video Background */
.cta-video-section {
  background: transparent;
}

.cta-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.75) 0%, rgba(184, 151, 47, 0.8) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--primary-dark);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn {
  background: var(--primary);
  color: white;
}

.cta-section .btn:hover {
  background: var(--primary-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 24px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.nonprofit-footer-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-top: 12px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.legal-text {
  font-size: 10px;
  margin-top: 12px;
  opacity: 0.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cuntstellation-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .vestments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
  }

  .nav-title {
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gospel-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dictionary-grid {
    grid-template-columns: 1fr;
  }

  .levels-grid,
  .vestments-grid {
    grid-template-columns: 1fr;
  }

  .cuntstellation-features {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== BROCHURE SLIDES ===== */
.slide {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
}

.slide-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* Slide backgrounds */
.slide-bg-gradient-purple {
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.95) 0%, rgba(35, 10, 50, 0.9) 100%);
}

.slide-bg-gradient-gold {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 151, 47, 0.85) 100%);
}

.slide-bg-gradient-dark {
  background: linear-gradient(135deg, #1a1020 0%, #2d1a3d 100%);
}

.slide-bg-gradient-warm {
  background: linear-gradient(135deg, #fff9e6 0%, #f8f5ff 100%);
}

/* Slide typography */
.slide h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.slide p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.slide-dark h2,
.slide-dark p {
  color: white;
}

.slide-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.slide-light h2 {
  color: var(--primary);
}

.slide-light p {
  color: var(--text-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* Fade in from different directions */
.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-left.in-view,
.animate-fade-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Scale animation */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* ===== GOSPEL SLIDES ===== */
.gospel-slide {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gospel-slide .slide-content {
  max-width: 800px;
}

.gospel-slide h2 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gospel-slide .quote-large {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-style: italic;
  color: var(--secondary);
  margin: 32px 0;
  line-height: 1.5;
}

/* Gospel Video Background */
.gospel-video-slide {
  position: relative;
  overflow: hidden;
}

.gospel-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.gospel-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.75) 0%, rgba(160, 120, 30, 0.8) 100%);
  z-index: 1;
}

.gospel-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

/* Surrender Video Background */
.surrender-video-slide {
  position: relative;
  overflow: hidden;
}

.surrender-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.surrender-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.55) 0%, rgba(160, 120, 30, 0.5) 100%);
  z-index: 1;
}

.surrender-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

/* Jesus Video Background */
.jesus-video-slide {
  position: relative;
  overflow: hidden;
}

.jesus-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.jesus-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 16, 32, 0.88) 0%, rgba(74, 28, 107, 0.85) 100%);
  z-index: 1;
}

.jesus-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

/* ===== HOLE OF GLORY SLIDE ===== */
.hole-of-glory-slide {
  background: var(--primary);
  position: relative;
}

/* Glory Hole Background Image */
.glory-bg-slide {
  background-image:
    linear-gradient(135deg, rgba(74, 28, 107, 0.88) 0%, rgba(35, 10, 50, 0.85) 100%),
    url('/sites/cunt/glory-hole.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.floating-quotes-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1000px;
}

.floating-quote {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 24px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  max-width: 240px;
  opacity: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: auto;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.floating-quote:hover {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
}

/* Size variations for depth */
.floating-quote.quote-large {
  max-width: 280px;
  padding: 20px 28px;
  z-index: 3;
}

.floating-quote.quote-large .verse-text {
  font-size: 15px;
}

.floating-quote.quote-small {
  max-width: 200px;
  padding: 12px 18px;
  z-index: 1;
}

.floating-quote.quote-small .verse-ref {
  font-size: 10px;
}

.floating-quote.quote-small .verse-text {
  font-size: 12px;
}

/* Animation states - initial positions */
.quote-fly-left {
  transform: translateX(-200px) rotateY(-45deg) scale(0.5);
}

.quote-fly-right {
  transform: translateX(200px) rotateY(45deg) scale(0.5);
}

.quote-fly-up {
  transform: translateY(150px) rotateX(30deg) scale(0.5);
}

.quote-fly-down {
  transform: translateY(-150px) rotateX(-30deg) scale(0.5);
}

/* Animated in state */
.floating-quote.in-view {
  opacity: 1;
  transform: translateX(0) translateY(0) rotateX(0) rotateY(0) scale(1);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Continuous floating after entry */
.floating-quote.in-view.quote-fly-left { animation: floatDrift1 8s ease-in-out infinite 1s; }
.floating-quote.in-view.quote-fly-right { animation: floatDrift2 9s ease-in-out infinite 1s; }
.floating-quote.in-view.quote-fly-up { animation: floatDrift3 7s ease-in-out infinite 1s; }
.floating-quote.in-view.quote-fly-down { animation: floatDrift4 10s ease-in-out infinite 1s; }

.floating-quote .verse-ref {
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.floating-quote .verse-text {
  color: white;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
}

/* Gentle floating drift animations */
@keyframes floatDrift1 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-12px) translateX(5px) rotate(0.5deg); }
  50% { transform: translateY(-8px) translateX(-3px) rotate(-0.5deg); }
  75% { transform: translateY(-15px) translateX(8px) rotate(1deg); }
}

@keyframes floatDrift2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-10px) translateX(-8px) rotate(-0.5deg); }
  50% { transform: translateY(-18px) translateX(4px) rotate(0.5deg); }
  75% { transform: translateY(-6px) translateX(-6px) rotate(-1deg); }
}

@keyframes floatDrift3 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(-14px) translateX(6px) rotate(1deg); }
  66% { transform: translateY(-8px) translateX(-4px) rotate(-0.5deg); }
}

@keyframes floatDrift4 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  20% { transform: translateY(-10px) translateX(-5px) rotate(-0.5deg); }
  40% { transform: translateY(-16px) translateX(3px) rotate(0.5deg); }
  60% { transform: translateY(-12px) translateX(-2px) rotate(-1deg); }
  80% { transform: translateY(-20px) translateX(6px) rotate(0.5deg); }
}

/* Glow pulse on large quotes */
.floating-quote.quote-large.in-view {
  animation: floatDrift2 9s ease-in-out infinite 1s, glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 10px 60px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.15); }
}

/* Exit animations - fly back out the way they came */
.floating-quote.exiting {
  transition: opacity 0.5s cubic-bezier(0.55, 0, 1, 0.45),
              transform 0.6s cubic-bezier(0.55, 0, 1, 0.45);
  animation: none !important;
}

.floating-quote.exiting.quote-fly-left {
  opacity: 0;
  transform: translateX(-200px) rotateY(-45deg) scale(0.5);
}

.floating-quote.exiting.quote-fly-right {
  opacity: 0;
  transform: translateX(200px) rotateY(45deg) scale(0.5);
}

.floating-quote.exiting.quote-fly-up {
  opacity: 0;
  transform: translateY(150px) rotateX(30deg) scale(0.5);
}

.floating-quote.exiting.quote-fly-down {
  opacity: 0;
  transform: translateY(-150px) rotateX(-30deg) scale(0.5);
}

/* Central CTA area */
.hole-of-glory-slide .slide-content {
  z-index: 10;
}

/* Glory Video Background */
.glory-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.glory-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.85) 0%, rgba(35, 10, 50, 0.8) 100%);
  z-index: 1;
}

.glory-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

.glory-video-slide .floating-quotes-container {
  z-index: 3;
}

.glory-search-container {
  margin: 40px auto;
  max-width: 500px;
}

.glory-search-container input {
  width: 100%;
  padding: 20px 28px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 18px;
  outline: none;
  transition: all 0.3s ease;
}

.glory-search-container input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.glory-search-container input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.glory-cta {
  margin-top: 32px;
}

.btn-glory {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-glory:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

/* Glory Hole Penetration Animation */
.glory-penetration {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
}

.glory-hole {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: transparent;
}

.glory-arrow {
  position: absolute;
  left: 0;
  width: 18px;
  height: 3px;
  background: var(--primary);
  animation: penetrate 1.2s ease-in-out infinite;
}

.glory-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--primary);
}

@keyframes penetrate {
  0%, 100% {
    left: -2px;
  }
  50% {
    left: 20px;
  }
}

.btn-glory:hover .glory-hole {
  border-color: var(--primary);
}

.btn-glory:hover .glory-arrow,
.btn-glory:hover .glory-arrow::after {
  background: var(--primary);
  border-left-color: var(--primary);
}

/* ===== SCROLL PENETRATION (Vertical) ===== */
.scroll-penetration {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
  height: 48px;
  margin: 24px auto 0;
}

.scroll-hole {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
}

.scroll-arrow {
  position: absolute;
  top: 0;
  width: 3px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  animation: penetrate-down 1.2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.6);
}

@keyframes penetrate-down {
  0%, 100% {
    top: -2px;
  }
  50% {
    top: 22px;
  }
}

/* ===== SHIP SLIDE ===== */
.ship-slide {
  background: linear-gradient(135deg, rgba(26, 16, 32, 0.95) 0%, rgba(45, 26, 61, 0.9) 100%);
  position: relative;
}

/* Ship Video Background */
.ship-video-slide {
  position: relative;
  overflow: hidden;
}

.ship-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.ship-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 16, 32, 0.85) 0%, rgba(45, 26, 61, 0.8) 100%);
  z-index: 1;
}

.ship-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

.ship-slide h2 {
  color: white;
}

.ship-slide p {
  color: rgba(255, 255, 255, 0.85);
}

.ship-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.ship-feature {
  text-align: center;
}

.ship-feature .icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.ship-feature h4 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.ship-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ===== VESTMENTS SLIDE ===== */
.vestments-slide {
  background: linear-gradient(135deg, #fff9e6 0%, #f8f5ff 100%);
}

/* Vestments Video Background */
.vestments-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.vestments-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 28, 107, 0.85) 0%, rgba(35, 10, 50, 0.8) 100%);
  z-index: 1;
}

.vestments-video-slide .slide-content {
  position: relative;
  z-index: 2;
}

.vestments-video-slide h2 {
  color: white;
}

.vestments-video-slide > .slide-content > p {
  color: rgba(255, 255, 255, 0.85);
}

/* Vestments Header - centered at top */
.vestments-header {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

/* Floating Vestment Callouts */
.floating-vestments-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.vestment-callout {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.callout-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.callout-content .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 8px;
}

.callout-content h4 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.callout-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

/* Hand-drawn SVG Arrows */
.callout-arrow {
  flex-shrink: 0;
  opacity: 0.9;
}

.callout-arrow.arrow-down-right,
.callout-arrow.arrow-down-left {
  width: 80px;
  height: 64px;
  margin-top: 20px;
}

.callout-arrow.arrow-right,
.callout-arrow.arrow-left {
  width: 100px;
  height: 40px;
  align-self: center;
}

/* Animation states */
.callout-fly-left {
  transform: translateX(-100px);
}

.callout-fly-right {
  transform: translateX(100px);
}

.vestment-callout.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Arrow drawing animation */
.vestment-callout.in-view .callout-arrow path {
  animation: drawArrow 1s ease forwards;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

@keyframes drawArrow {
  to {
    stroke-dashoffset: 0;
  }
}

/* Vestments Mobile Responsive */
@media (max-width: 768px) {
  .vestments-video-slide {
    min-height: 100vh;
  }

  .vestments-header {
    top: 40px;
    padding: 0 20px;
  }

  .vestments-header h2 {
    font-size: 1.75rem;
  }

  .vestments-header p {
    font-size: 0.9rem;
  }

  .vestment-callout {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .callout-content {
    max-width: 160px;
    padding: 12px 14px;
  }

  .callout-content .icon {
    font-size: 28px;
  }

  .callout-content h4 {
    font-size: 0.85rem;
  }

  .callout-content p {
    font-size: 11px;
  }

  .callout-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .callout-content {
    max-width: 140px;
    padding: 10px 12px;
  }

  .callout-content .icon {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .callout-content h4 {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .callout-content p {
    font-size: 10px;
    line-height: 1.3;
  }
}

/* ===== LEVELS MODAL ===== */
.levels-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
}

.levels-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.levels-modal-content {
  background: white;
  border-radius: 24px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 48px;

  /* Themed scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) var(--bg-light);
}

/* Webkit scrollbar for levels modal */
.levels-modal-content::-webkit-scrollbar {
  width: 10px;
}

.levels-modal-content::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 5px;
}

.levels-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 5px;
  border: 2px solid var(--bg-light);
}

.levels-modal-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
}

.levels-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-light);
  transition: all 0.2s ease;
}

.levels-modal-close:hover {
  background: var(--primary);
  color: white;
}

.levels-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.levels-modal-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.levels-modal-header p {
  color: var(--text-light);
}

/* Modal responsive */
@media (max-width: 768px) {
  .levels-modal-content {
    padding: 32px 20px;
  }

  .levels-modal .levels-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SLIDE RESPONSIVE ===== */
@media (max-width: 768px) {
  .slide {
    padding: 80px 20px;
    min-height: auto;
  }

  .floating-quote {
    max-width: 180px;
    padding: 12px 16px;
    font-size: 12px;
  }

  .floating-quote .verse-text {
    font-size: 11px;
  }

  .floating-quote .verse-ref {
    font-size: 9px;
  }

  /* Only show a few quotes on mobile */
  .floating-quote:nth-child(n+5) {
    display: none;
  }

  .ship-features {
    gap: 24px;
  }

  .vestments-showcase {
    gap: 32px;
  }

  .vestment-item .icon {
    font-size: 56px;
  }
}

/* ===== SLIDE NAVIGATION ===== */
.slide-nav {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 12px;
  z-index: 100;
}

.slide-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.slide-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  transform: scale(1.1);
}

.slide-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slide-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

/* Hide on mobile - can be enabled with media query if desired */
@media (max-width: 768px) {
  .slide-nav {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }

  .slide-nav-btn {
    width: 40px;
    height: 40px;
  }

  .slide-nav-btn svg {
    width: 20px;
    height: 20px;
  }
}
