/* Sticky Header */
#sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1050; /* Higher than Bootstrap navbars, lower than modals */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.9s ease;	 
}
#sticky-header.active {
  opacity: 1;
  transform: translateY(0);
}

/* Logo Handling */
.logo-mobile {
  display: none;
}
.logo-desktop {
  display: block;
}

@media (max-width: 991.98px) {
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }	
}

/* Hero Section (Blog Hero) */
.blog-hero .blog-hero-item {
  height: 52vh;
}

@media (max-width: 991.98px) {
  .blog-hero .blog-hero-item {
    height: 45vh;
  }
}

.blog-hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  max-width: none;
  padding-left: 5%;
  padding-right: 5%;
  width: 100%;
}

.blog-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-hero-content p {
  max-width: 700px;
  text-justify: inter-word;
  text-align-last: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  padding-left: 7%;
  padding-right: 7%;
  font-weight: 500;
}

.blog-hero-content strong {
  display: block;
  font-size: 3.0rem;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  section.blog-hero .blog-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: 0.5px;
  }
  .blog-hero-content p {
    font-size: 1.1rem;
  }
  .blog-hero-content strong {
    font-size: 1.5rem;
  }
  .pulse-none {
    font-size: 2.6rem;
  }	
}

/* Timeline Animations */
.timeline-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  background-color: #ffffff;
  border: 2px solid #000000;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.8s ease-out;
}

.timeline-item.aos-animate .timeline-marker {
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.4);
}

/* Miracle Items */
.miracle-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.miracle-item {
  background: #f9f9f6;
  padding: 2rem;
  border-left: 5px solid #aaa;
  border-radius: 12px;
  position: relative;
}

.miracle-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.miracle-description {
  font-size: 1rem;
  color: #555;
}

/* Services Section */
.services {
  .services-header {
    margin-bottom: 4rem;
    @media (max-width: 992px) {
      margin-bottom: 3rem;
    }
  }

  .services-intro {
    padding-right: 2rem;
    @media (max-width: 992px) {
      padding-right: 0;
      margin-bottom: 2.5rem;
    }
    .services-tag {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: 4px;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    h2 {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--heading-color);
      @media (max-width: 768px) {
        font-size: 2rem;
      }
    }
    p {
      color: color-mix(in srgb, var(--default-color), transparent 0%);
    }
  }

  .services-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    .stat-item {
      background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
      border-radius: 8px;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-left: 4px solid var(--accent-color);
      .stat-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--heading-color);
        line-height: 1.1;
        margin-bottom: 0.5rem;
      }
      .stat-label {
        display: block;
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-weight: 500;
      }
    }
  }

  .service-card {
    height: 100%;
    .service-card-inner {
      background-color: var(--surface-color);
      border-radius: 8px;
      padding: 2rem;
      height: 100%;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      &:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        .service-icon {
          background-color: var(--accent-color);
          color: var(--contrast-color);
        }
      }
      .service-icon {
        width: 60px;
        height: 60px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
      }
      h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--heading-color);
      }
      p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 0;
        font-size: 0.95rem;
        line-height: 1.6;
      }
    }
  }
}

.services-intro p {
  text-align: justify;
}

/* Hero 2 heading mobile fix */
#hero-2 h2 {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  #hero-2 h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

.category a {
  color: inherit; /* make the link take the color of its parent */
  text-decoration: none; /* optional: remove underline */
}

.category a:hover {
  text-decoration: underline; /* optional: on hover you can underline */
}

.timeline-thumb {
  width: 140px;
  float: right;
  margin: 10px 0 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.timeline-content::after {
  content: "";
  display: block;
  clear: both;
}

.course-item img {
  width: 100%;
  object-fit: cover;
}

/*Overlaying the whole website */
#startOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.95) 100%);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#startOverlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.overlay-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5vh; /* move image down slightly */
}

.overlay-inner img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0px; /* no big gap */
  margin-top: 0px;
  position: relative;
  z-index: 1;
}


/* Upgrade Sacred Buttons */
.btn-sacred, .btn-outline-sacred {
  margin: 6px;
  padding: 10px 20px; /* smaller padding */
  font-size: 1rem; /* smaller font */
  border-radius: 10px; /* slightly tighter corners */
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #d4af37, 0 2px 8px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
  background: radial-gradient(circle at top left, #fff7d4, #d4af37 70%);
}

.btn-sacred:hover, .btn-outline-sacred:hover {
  background: radial-gradient(circle at center, #ffe58a, #c9a02c 80%);
  box-shadow: inset 0 0 0 2px #c9a02c, 0 4px 20px rgba(212, 175, 55, 0.7);
  color: #000;
}

/* Specifics for Solid Button */
.btn-sacred {
  background: radial-gradient(circle at center, #ffe58a, #d4af37 80%);
  color: #222;
  border: none;
}

/* Specifics for Outlined Button */
.btn-outline-sacred {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  backdrop-filter: blur(2px);
}

.btn-outline-sacred:hover {
  background: rgba(255, 248, 220, 0.1);
}

.entry-actions {
  position: absolute;
  top: 80%; /* or 60% — adjust */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}


@media (max-width: 991.98px) and (orientation: landscape) {
  .entry-actions {
    bottom: 20vh; /* push the buttons up higher when in landscape mobile */
  }
}

@media (max-width: 767.98px) {
  .entry-actions {
    bottom: 18vh; /* optional: slightly higher for very small screens too */
  }
}

.imprinting-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 6px;
  z-index: 2;
}

.gallery-item {
  width: calc(33.333% - 20px);
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .gallery-item {
    width: 100%;
  }
}

.music-toggle-beacon {
  position: fixed;
  bottom: 80px;
  right: 7px;
  z-index: 1050;
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  color: #222;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(66, 0, 255, 0.2), inset 0 0 4px rgba(0, 0, 0, 0.08);
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.music-toggle-beacon:hover {
  background: #fff9e8;
  color: #000;
  border-color: #ccb987;
  box-shadow: 0 0 16px rgba(243, 204, 132, 0.4);
  transform: scale(1.05);
}

.icon-sacred {
  color: #8B5E3C; /* Warm earthy bronze tone */
}

.icon-sacred i {
  color: inherit;
  font-size: 24px;
  line-height: 1;
}

#musicToggle .icon-sacred {
  color: #ccb987 !important; /* Sacred muted gold */
  font-size: 24px;
  line-height: 1;
  transition: color 0.3s ease;
}

.footer-attribution {
  background: #111;
  color: #ccc;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-attribution a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-attribution a:hover {
  text-decoration: underline;
}


.faq {
  .faq-tabs {
    .nav-pills {
      display: inline-flex;
      padding: 8px;
      background-color: color-mix(in srgb, var(--default-color), transparent 95%);
      border-radius: 50px;
      
      .nav-item {
        margin: 0 5px;
        
        &:first-child {
          margin-left: 0;
        }
        
        &:last-child {
          margin-right: 0;
        }
      }
      
      .nav-link {
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 500;
        color: var(--default-color);
        transition: all 0.3s ease;
        
        &:hover {
          color: var(--accent-color);
        }
        
        &.active {
          background-color: var(--accent-color);
          color: var(--contrast-color);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        i {
          font-size: 1.1rem;
        }
      }
    }
    
    @media (max-width: 768px) {
      .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
        
        .nav-item {
          margin: 5px;
        }
      }
    }
  }
  
  .faq-list {
    .faq-item {
      margin-bottom: 20px;
      border-radius: 10px;
      background-color: var(--surface-color);
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
      
      &:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
      }
      
      h3 {
        display: flex;
        align-items: center;
        padding: 20px 25px;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        background-color: var(--surface-color);
        transition: all 0.3s ease;
        position: relative;
        
        &:hover {
          background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        }
        
        .num {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 28px;
          height: 28px;
          margin-right: 15px;
          background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
          color: var(--accent-color);
          border-radius: 50%;
          font-size: 0.9rem;
          font-weight: 700;
          flex-shrink: 0;
        }
        
        .question {
          flex: 1;
        }
        
        .faq-toggle {
          font-size: 1.2rem;
          transition: all 0.3s ease;
          color: color-mix(in srgb, var(--default-color), transparent 30%);
          margin-left: 15px;
        }
      }
      
      .faq-content {
        padding-top: 15px;
		padding-left: 15px;
	    padding-right: 15px;		  
        display: none;
        
        p {
          overflow: hidden;
          padding: 0;
          margin: 0;
          
          &:last-child {
            margin-bottom: 0;
            overflow: hidden;
          }
        } 
      }

      &.faq-active {
        h3 {
          background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
          
          .faq-toggle {
            transform: rotate(45deg);
            color: var(--accent-color);
          }
        }
        
        .faq-content {
          display: block;
        }
      }
    }
  }
  
  .faq-cta {
    padding: 30px;
    border-radius: 10px;
    
    p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }
    
    .btn-primary {
      background-color: var(--accent-color);
      border-color: var(--accent-color);
      padding: 10px 25px;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      
      &:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
        border-color: color-mix(in srgb, var(--accent-color), #000 15%);
        transform: translateY(-2px);
      }
    }
  }
  
  @media (max-width: 576px) {
    .faq-list .faq-item h3 {
      padding: 15px 20px;
      font-size: 1rem;
      
      .num {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 0.8rem;
      }
    }
    
    .faq-list .faq-item .faq-content {
      .content-inner {
        padding: 0 20px;
      }
      
      &.faq-active .content-inner {
        padding: 15px 20px;
      }
    }
  }
} 

.text-justify {
  text-align: justify;
}

/* Match Primary Buttons */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  border-color: var(--accent-color);
}

/* Match Outline Buttons */
.btn-outline-primary {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses .course-content .description {
  font-size: 1rem; /* or try 1.125rem (18px) */
  line-height: 1.6;
}

/* Fix Glightbox's default white block under image */
.gslide-description.description-bottom {
  background: rgba(0, 0, 0, 0.65) !important; /* soft dark overlay */
  padding: 1.5rem 2rem !important;
  max-width: none !important;
  width: 100%;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* optional line */
}

/* Keep sacred styling in the inner block */
.gdesc-inner {
  color: #f0f0f0;
  font-family: 'Open Sans', serif;
  font-weight: 500;
}

.gdesc-inner h4.gslide-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.gdesc-inner .gslide-desc {
  font-size: 1rem;
  color: #eee7e7;
  font-weight: 500;	
}
.gslide-description.description-bottom::-webkit-scrollbar {
  width: 6px;
}
.gslide-description.description-bottom::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

@media (max-width: 991.98px) {
  #sticky-header {
    height: 64px; /* increased from default ~56px */
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* light divider for clarity */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); /* slightly more depth */
  }

  #sticky-header .logo img {
    max-height: 34px !important; /* scale logo a bit larger if needed */
  }
}

.purchase .book-format-card .format-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.7;
}

.blog-hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

#faqTab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* Optional: spacing between pills */
}

#faqTab .nav-link {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
}
@keyframes softPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.pulse-soft {
  display: inline-block;
  animation: softPulse 15s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 223, 120, 0.4), 0 0 20px rgba(255, 215, 80, 0.3);
}

.shimmer-glow {
  display: inline-block;
  background: linear-gradient(90deg, #fffbe8, #ffe8a0, #fffbe8);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow:
    0 0 8px rgba(255, 235, 160, 0.4),
    0 0 12px rgba(255, 225, 120, 0.3),
    0 0 20px rgba(255, 215, 100, 0.2);
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: 0% center;
  }
}


.pulse-none {
  display: inline-block;
  animation: softPulse 0.1s ease-in-out;
  text-shadow: 0 0 10px rgba(255, 223, 120, 0.4), 0 0 20px rgba(255, 215, 80, 0.3);
}

.faq .faq-content p {
  margin-bottom: 1.3rem !important;
}

@media (max-width: 767.98px) {
  .text-justify {
    text-align: left !important;
    text-justify: auto !important;
    text-align-last: left !important;
  }
}

.white-services {

  .service-header {
    margin-bottom: 60px;

    .service-intro {
      .service-heading {
        font-size: 2.3em;
        margin-bottom: 0;
        font-weight: 700;
        line-height: 1.1;
        color: var(--heading-color);

        div {
          display: block;
          position: relative;
        }

        span {
          display: block;
          color: var(--accent-color);
        }

        @media (max-width: 992px) {
          font-size: 36px;
        }

        @media (max-width: 768px) {
          font-size: 30px;
          margin-bottom: 20px;
        }
      }
    }

    .service-summary {
      p {
        margin-bottom: 25px;
        color: var(--default-color);
      }

      .service-btn {
        display: inline-flex;
        align-items: center;
        padding: 12px 30px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;

        i {
          margin-left: 10px;
          transition: transform 0.3s ease;
        }

        &:hover {
          background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
          color: var(--contrast-color);

          i {
            transform: translateX(5px);
          }
        }
      }

      @media (max-width: 992px) {
        margin-top: 30px;
      }
    }
  }

  .service-card {
    padding: 80px 40px 40px 40px;
    margin-bottom: 30px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;

    h3 {
      font-size: 28px;
      margin-bottom: 15px;
      font-weight: 700;

      a {
        color: var(--heading-color);
        transition: color 0.3s ease;

        span {
          display: block;
        }

        &:hover {
          color: var(--accent-color);
        }
      }
    }

    p {
      color: var(--default-color);
      transition: color 0.3s ease;
      margin-bottom: 0;
    }

    .card-action {
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--accent-color);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;

      i {
        font-size: 24px;
        color: var(--contrast-color);
        transition: transform 0.3s ease;
      }

      &:hover {
        i {
          transform: rotate(45deg);
        }
      }
    }

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--surface-color);
      clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
      z-index: -1;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    &:hover {
      border-color: transparent;

      &::before {
        opacity: 1;
        visibility: visible;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
      }

      h3 a {
        color: var(--accent-color);

        &:hover {
          color: var(--accent-color);
        }
      }

      p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
      }

      .card-action {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      padding: 150px 25px 25px;

      h3 {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 70px 0 50px;
  }
}

.events {
  
  .card {
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
  }
  
  .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
    img {
      max-width: 100%;
      transition: all 0.3s ease-in-out;
    }
  }

  .card-body {
    z-index: 10;
    background: var(--background-color);
    border-top: 4px solid var(--background-color);
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.10);
    margin-top: -60px;
    transition: 0.3s;
  }

  .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    a {
      color: var(--default-color);
      transition: 0.3s;
    }
  }

  .card-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
  }


  .card:hover  {

    img {
      transform: scale(1.1);
    }

    .card-body {
      border-color: var(--accent-color);
      .card-title a {
        color: var(--accent-color);
      }
    }
  }

}

#events .section-title p {
  font-size: 1.17rem;
  line-height: 1.2;
  font-weight: 500;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in;
}
.fade-in.loaded {
  opacity: 1;
}
.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#artwork-rotator-1 img,
#artwork-rotator-2 img {
  transition: opacity 1s ease-in-out;
}

#what-just-happened .services-intro h3 {
  margin-bottom: 1.15rem;
}
.book-page-design {
  background: #fdfbf7; /* or try #fcfaf5 or #fdfcf9 for subtle parchment */
  border: 1px solid #eee;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-top: 0.25rem;
  font-weight: 400;
	text-align: center;
}

.chat-bubble {
  padding: 1rem 1.2rem;
}

.chat-wrapper.user {
  position: relative;
  max-width: 85%;
  margin-left: auto;
  text-align: right;
}

.chat-wrapper.user .chat-bubble {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #222;
  font-family: system-ui, sans-serif;
  text-align: left;
}

.chat-wrapper.user .chat-tail {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #f5f5f5;
}

/* Adjust width on wider screens */
@media (min-width: 992px) {
  .chat-wrapper.user {
    max-width: 65%;
  }
}

.leave-comment {
  max-width: 900px;
  margin: 30px auto 0 auto;
	padding-top: 0px;

  form {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    h4 {
      font-weight: bold;
      font-size: 22px;
    }

    p {
      font-size: 14px;
    }

    input {
      background-color: var(--surface-color);
      color: var(--default-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
      font-size: 14px;
      border-radius: 4px;
      padding: 10px 10px;

      &:focus {
        color: var(--default-color);
        background-color: var(--surface-color);
        box-shadow: none;
        border-color: var(--accent-color);
      }

      &::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 50%);
      }
    }

    textarea {
      background-color: var(--surface-color);
      color: var(--default-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
      border-radius: 4px;
      padding: 10px 10px;
      font-size: 14px;
      height: 120px;

      &:focus {
        color: var(--default-color);
        box-shadow: none;
        border-color: var(--accent-color);
        background-color: var(--surface-color);
      }
      &::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 50%);
      }
    }

    .form-group {
      margin-bottom: 25px;
    }

    .btn-primary {
      border-radius: 4px;
      padding: 10px 20px;
      border: 0;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      &:hover {
        color: var(--contrast-color);
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
      }
    }
  }
}

.evidence {

@media (min-width: 1200px) {
  .custom-col-3p5 {
    flex: 0 0 auto;
    width: 29.1667%; /* 3.5 / 12 = 29.1667% */
  }
}	

  .icon-box ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }

  .icon-box ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    padding-left: 3px;
  }

  .icon-box ul li i {
    font-size: 0.9rem;            // ✅ This keeps list icons small
    margin-right: 0.5rem;
    color: #6c757d;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .icon-box ul li a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 450 !important;
	  
  }

  .icon-box ul li a:hover {
    text-decoration: underline;
  }

  .content {
    h3 {
      font-weight: 700;
      font-size: 34px;
      margin-bottom: 30px;
    }

    p {
      margin-bottom: 30px;
    }

    .about-btn {
      padding: 8px 30px 9px 30px;
      color: var(--accent-color);
      border-radius: 50px;
      transition: 0.3s;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      border: 2px solid var(--accent-color);

      i {
        font-size: 16px;
        padding-left: 5px;
      }

      &:hover {
        background: var(--accent-color);
        color: var(--contrast-color);
      }
    }
  }

  .icon-box {

    h4 i {
      font-size: 1em;          // ✅ This now only applies to the heading icon
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    h4 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 10px 0;

      a {
        color: var(--heading-color);
        transition: 0.3s;
      }
    }

    p {
      font-size: 15px;
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      margin-bottom: 0;
    }

    &:hover {
      h4 a {
        color: var(--accent-color);
      }
    }

  }

}

.feedback-toggle-beacon {
  position: fixed;
  bottom: 145px;
  right: 14px;
  z-index: 1050;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  color: #222;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(0,0,0,0.06), inset 0 0 4px rgba(0,0,0,0.04);
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feedback-toggle-beacon:hover {
  background: #fff9e8;
  color: #000;
  border-color: #ccb987;
  box-shadow: 0 0 16px rgba(243, 204, 132, 0.35);
  transform: translateY(-2px);
}

.animated-feedback {
  animation: bounceGlow 4s ease-in-out infinite;
}

@keyframes bounceGlow {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.25), inset 0 0 2px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5), inset 0 0 4px rgba(212, 175, 55, 0.4);
  }
}

