@charset "utf-8";

/* =========================================
   Global Reset / Defaults
   ========================================= */

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

html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Fix anchor links with fixed header */
[id] {
  scroll-margin-top: 80px; /* Adjust based on your menu height */
}
body{
  width: 100%;
  height: 100%;
  font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans","DejaVu Sans",Verdana,sans-serif;
  background-color: #000;
  background-image: url(../images/lotuses-dark70.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  margin-top: 0;
  padding-top: 5px; /* Space for fixed menu on desktop */
}

.container{
  color: #d9c6e5;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  overflow-x: hidden;
}

/* =========================================
   Header
   ========================================= */

.header{
  margin-top: 50px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.header-card{
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  text-align: center;
}

.header-link{ display: block; }

.header-img{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 28px 70px rgba(0,0,0,.65),
    0 0 0 1px rgba(255,255,255,.04);
}

/* =========================================
   Legacy Content Blocks
   ========================================= */

.content{

  padding: 20px;
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

.content_narrow{
  padding: 0 20px 10px;
  max-width: 500px;
  margin: 0 auto;
  background-color: #000;
  opacity: 0.8;
  box-shadow: 8px 10px 8px #000;
}

.content-img-index{
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 0 10px 0;
}

.content-img-index a{ display: inline-block; }

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

/* =========================================
   Flexi Menu (Modernized) — THEME D
   ========================================= */

#CSSMenu1_container{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 10px 10px 14px;
}

#CSSMenu1{
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

#CSSMenu1 li{ margin: 0; padding: 0; list-style: none; }

#CSSMenu1 li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  text-decoration: none;
  white-space: nowrap;

  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;

  border-radius: 12px;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(0,216,213,.28);
  color: rgba(233,236,255,.92);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 24px rgba(0,0,0,.40);

  transition:
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
}

#CSSMenu1 li a:hover{
  background: rgba(0,216,213,.10);
  border-color: rgba(0,216,213,.65);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 16px 38px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,216,213,.18),
    0 0 20px rgba(0,216,213,.14);
}

/* ACTIVE / CURRENT PAGE */
#CSSMenu1 li a.FM2_CSSMenu1_link_current,
#CSSMenu1 li.FM2_CSSMenu1_item_current > a,
#CSSMenu1 li a.current,
#CSSMenu1 li.current > a,
#CSSMenu1 li a[aria-current="page"]{
  background: rgba(0,216,213,.12) !important;
  border-color: rgba(0,216,213,.70) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 14px 34px rgba(0,0,0,.50),
    0 0 0 1px rgba(0,216,213,.18) !important;
}

/* Dropdown */
#CSSMenu1 li ul{
  margin-top: 10px !important;
  padding: 10px !important;
  border-radius: 14px !important;
  background: rgba(0,0,0,.78) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.65);
  min-width: 240px;
}

#CSSMenu1 li ul li a{
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;

  background: transparent;
  border: 1px solid transparent;

  font-weight: 600;
  font-size: 14px;
  color: rgba(233,236,255,.92);

  transform: none;
  box-shadow: none;
}

#CSSMenu1 li ul li a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: rgba(233,236,255,.95);
  transform: none;
}

/* Responsive (Menu + Header) */
@media (max-width: 1100px){
  #CSSMenu1{
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #CSSMenu1::-webkit-scrollbar{ display: none; }
}

@media (max-width: 890px){
  /* Space for fixed mobile menu bar */
  body{ padding-top: 56px !important; }

  .header{ margin-top: 0px !important; }
  .header-img{ border-radius: 12px; }

  #CSSMenu1_container.FM2_mobile_open,
  #CSSMenu1_container[style*="height"]{
    height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-top: 56px !important;
  }

  #CSSMenu1_container.FM2_mobile_open #CSSMenu1,
  #CSSMenu1_container[style*="height"] #CSSMenu1{
    display: block !important;
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }

  #CSSMenu1_container.FM2_mobile_open #CSSMenu1 li,
  #CSSMenu1_container[style*="height"] #CSSMenu1 li{
    display: block !important;
    width: 100% !important;
    margin: 5px 0 !important;
  }

  #CSSMenu1_container.FM2_mobile_open #CSSMenu1 li a,
  #CSSMenu1_container[style*="height"] #CSSMenu1 li a{
    display: flex !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

/* =========================================
   Legacy Tables / Images / Typography
   ========================================= */

table{
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.table-item img{
  border: 1px solid #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 890px){
  table{ width: 100%; }
  table tbody tr td{
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .table-item img{ width: 100%; }
}

h1{
  font-size: 4em;
  text-align: center;
  font-family: Baskerville,"Palatino Linotype",Palatino,"Century Schoolbook L","Times New Roman",serif;
  font-weight: 400;
  color: aqua;
}

h2{
  text-align: center;
  padding-bottom: 10px;
  font-weight: 400;
  font-size: 3em;
  font-family: Baskerville,"Palatino Linotype",Palatino,"Century Schoolbook L","Times New Roman",serif;
  color: aqua;
}

h3{
  text-align: center;
  font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans","DejaVu Sans",Verdana,sans-serif;
  font-weight: 300;
  font-size: 1.6em;
  line-height: 1.4em;
  color: aqua;
}

h4{ text-align: center; padding-bottom: 5px; font-size: 1.2em; font-weight: 200; }
h5{ text-align: left;   padding-bottom: 5px; font-size: 1em;   font-weight: 200; }
h6{ text-align: center; padding-bottom: 5px; font-size: 1.25em; font-weight: 400; }

.caption{ text-align:center; font-size:.8em; }
p{ padding-bottom: 10px; }

a:link,
a:visited{
  color: #00ffff; /* aqua */
}

a:hover,
a:focus{
  color: #66ffff; /* slightly lighter aqua */
}

img{
  border: 1px solid #fff;
  max-width: 100%;
  height: auto;
  display: block;
}

.clearfix::after{ content:""; display: table; clear: both; }

/* =========================================
   Swipe Slider (replaces EasyRotator)
   ========================================= */

.swipe-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,.25);
  margin: 0 auto 20px;
  max-width: 100%;
}

.swipe-slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  height: 100%;
  gap: 0;
}

.swipe-slider-container::-webkit-scrollbar {
  display: none;
}

.swipe-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100%;
  min-width: 100%;
}

.swipe-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: none;
  display: block;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.swipe-slide img:hover {
  transform: scale(1.02);
}

.swipe-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 10px 14px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.swipe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .3s ease;
}

.swipe-dot.active {
  background: radial-gradient(circle at 30% 30%, rgba(0,216,213,.95), rgba(0,216,213,.35));
  box-shadow: 0 0 0 2px rgba(255,255,255,.03), 0 0 8px rgba(0,216,213,.16);
  transform: scale(1.3);
}

.swipe-dot:hover {
  background: rgba(0,216,213,.6);
}

/* Desktop: Show arrows on hover */
@media (min-width: 640px) {
  .swipe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.2);
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .3s ease;
    user-select: none;
  }
  
  .swipe-slider:hover .swipe-arrow {
    opacity: 1;
  }
  
  .swipe-arrow:hover {
    background: rgba(0,216,213,.5);
    border-color: rgba(0,216,213,.5);
  }
  
  .swipe-arrow.left { left: 10px; }
  .swipe-arrow.right { right: 10px; }
}

/* Mobile */
@media (max-width: 639px) {
  .swipe-slider {
    aspect-ratio: 4 / 3;
    margin: 10px 0;
    border-radius: 12px;
  }
  
  .swipe-slide {
    padding: 0 15px;
  }
  
  .swipe-arrow {
    display: none !important;
  }
}

/* =========================================
   Lightbox Popup - Scroll-Snap (Same as Main Slider)
   ========================================= */

.slider-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.95);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.slider-lightbox.active {
  display: flex;
}

.lightbox-scroll-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 70px 20px 20px;
  box-sizing: border-box;
}

.lightbox-scroll-container::-webkit-scrollbar {
  display: none;
}

.lightbox-scroll-slide {
  flex: 0 0 100vw;
  width: 100vw;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
  border: none;
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.2s ease;
  user-select: none;
}

.lightbox-close:hover {
  background: rgba(0,216,213,.7);
  border-color: rgba(0,216,213,.9);
  transform: scale(1.1);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 100000;
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow:hover {
  background: rgba(0,216,213,.7);
  border-color: rgba(0,216,213,.9);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
  left: 20px;
}

.lightbox-arrow-right {
  right: 20px;
}

@media (max-width: 639px) {
  .lightbox-scroll-container {
    padding: 60px 10px 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 40px;
  }
  
  .lightbox-arrow {
    display: none;
  }
  
  .lightbox-image {
    max-width: 95%;
    max-height: 95%;
  }
}

/* =========================================
   Legacy Countdown
   ========================================= */
#countbox1{
  text-align: center;
  font-size: xx-large;
  margin-bottom: 40px;
  color: #FB2ABB;
}

/* =========================================
   Event / Landing System (Scoped)
   ========================================= */

.event-wrap{
  --text:#e9ecff;
  --muted:#a9afd7;
  --accent:#ff4fb8;
  --accent2:#4bd6ff;
  --line:rgba(255,255,255,.10);
  --radius: 18px;

  max-width: 930px;
  margin: 0 auto;
  padding: 12px 12px 90px; /* includes room for sticky bar */
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
}

.event-wrap > * + *{ margin-top: 16px; }

/* Event headings (only inside event-wrap) */
.event-wrap h1,
.event-wrap h2,
.event-wrap h3{
  font-family: Baskerville,"Palatino Linotype",Palatino,"Times New Roman",serif;
  font-weight: 400;
  color: aqua;
  line-height: 1.15;
  margin: 0 0 12px;
}

.event-wrap h1{ font-size: clamp(28px, 4.2vw, 44px); }
.event-wrap h2{ font-size: clamp(22px, 3.2vw, 34px); }
.event-wrap h3{
  font-size: clamp(18px, 2.4vw, 26px);
  text-align: left; /* override global h3 */
}

/* Cards */
.event-section{ margin: 16px 0; }

.event-card{
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 16px;
}

/* Card text */
.event-card p{
  font-size: 17px;
  line-height: 1.7;
  opacity: .96;
}
.event-card p a:visited {
  color: aqua;
}
.event-card p a:hover {
  color: white;
}
/* BUT: buttons inside event cards must NEVER look like links */
.event-card a.event-btn{ text-decoration: none; }

/* Hero */
.event-hero{
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 18px 16px;
  overflow: hidden;
}

.event-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size: 12px;
}

.event-title{
  margin: 14px 0 6px;
  font-size: 30px;
  line-height: 1.08;
  font-family: Baskerville,"Palatino Linotype",Palatino,"Times New Roman",serif;
  font-weight: 400;
  color: aqua;
  text-align: left;
}

.event-sub{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  opacity: .96;
}

.event-fine{
  font-size: 13px;
  color: rgba(169,175,215,.95);
  text-align: center;
  padding-bottom: 10px;
}

/* Event titles that are links: not underlined unless hover */
.event-section h2 a{
  font-weight: 500;
  text-decoration: none;
}
.event-section h2 a:visited {
  color: aqua;
}

.event-section h2 a:hover {
  color: white;
  text-decoration: underline;
}

.event-flyer{ padding: 10px 0; }

/* CTA row + buttons */
.event-ctaRow{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 6px;
}

/* ---------- EVENT BUTTONS — THEME D (single source of truth) ---------- */
.event-btn{
  display:flex;
  justify-content:center;
  align-items:center;

  padding: 14px 16px;
  border-radius: 14px;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(0,216,213,.38);

  color: rgba(0,216,213,.95);
  font-weight: 500;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 34px rgba(0,0,0,.45);

  transition:
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;

  -webkit-tap-highlight-color: transparent;
}

.event-btn:hover,
.event-btn:focus-visible{
  background: rgba(0,216,213,.10);
  border-color: rgba(0,216,213,.75);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 18px 46px rgba(0,0,0,.60),
    0 0 0 1px rgba(0,216,213,.22),
    0 0 24px rgba(0,216,213,.18);
}

.event-btn:active{ transform: translateY(-1px); }
.event-btn:focus{ outline:none; }

/* Small section titles inside cards */
.event-h2{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  margin: 0 0 10px;
  color: rgba(233,236,255,.92);
}

/* Pills row */
.event-pillRow{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.event-pill{
  font-size: 12px;
  color: rgba(233,236,255,.88);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}

/* Schedule */
.event-schedule{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.event-schedule li{
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0,0,0,.15);
}

.event-time{ font-weight: 700; color: rgba(233,236,255,.92); }
.event-what{
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(169,175,215,.95);
}

/* Divider + footer CTA inside cards */
.event-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 14px 0;
}

.event-footerCta{
  margin-top: 14px;
  text-align: center;
  color: rgba(169,175,215,.95);
  font-size: 15.5px;
  line-height: 1.65;
}

/* Sticky CTA bar */
.event-sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px 14px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0),
    rgba(0,0,0,.72) 35%,
    rgba(0,0,0,.88)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9998;
}

.event-sticky .event-btn{
  max-width: 920px;
  margin: 0 auto;
}

/* Bullets */
.event-bullets{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.event-bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15.5px;
}

.event-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;

  background: radial-gradient(circle at 30% 30%,
    rgba(0,216,213,.95),
    rgba(0,216,213,.35)
  );

  box-shadow:
    0 0 0 2px rgba(255,255,255,.03),
    0 0 8px rgba(0,216,213,.16);

  margin-top: 8px;
}

/* Layout helpers */
.event-grid2{ display: grid; gap: 12px; }

/* =========================================
   Newsletter Archive (Event pages)
   ========================================= */

/* Newsletter button wrapper (replaces inline styles on the page) */
.event-sub .newsletter-btn{
  max-width: 520px;
  margin: 30px auto 0;
}

/* Force archive text to match theme (prevents white in Chrome) */
.event-sub #newsletter-archive,
.event-sub #newsletter-archive *{
  color: rgba(169,175,215,.95);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.event-sub #newsletter-archive .newsletter-item{
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,216,213,.18);
}
.event-sub #newsletter-archive .newsletter-item:last-child{ border-bottom: 0; }

.event-sub #newsletter-archive .newsletter-date{
  color: rgba(150,160,205,.80);
  font-size: 13px;
  margin: 0 0 6px;
}

.event-sub #newsletter-archive .newsletter-title{
  color: rgba(190,200,230,.95);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.event-sub #newsletter-archive .newsletter-title a{
  color: inherit;
  text-decoration: none;
}

.event-sub #newsletter-archive .newsletter-title a:hover{
  color: rgba(0,216,213,.95);
  text-decoration: underline;
}

.event-sub #loading{
  text-align: center;
  padding: 20px 0;
  color: rgba(150,160,205,.80);
}

/* =========================================
   Testimonials (Theme D)
   ========================================= */

.event-testimonials{ margin-top: 18px; }

.event-testimonials .t-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.event-testimonials .t-quote{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  border-radius: 16px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(6px);
  color: rgba(205, 210, 235, .92);
}

.event-testimonials .t-quote p{
  margin: 0;
  line-height: 1.45;
  font-style: italic;
  font-family: inherit;
  color: rgba(205, 210, 235, .92);
}

.event-testimonials .t-name{
  margin-top: 10px;
  font-weight: 700;
  opacity: .95;
  font-style: normal;
  color: rgba(205, 210, 235, .92);
}

@media (max-width: 760px){
  .event-testimonials .t-grid{ grid-template-columns: 1fr; }
}

/* Responsive (Event) */
@media (min-width: 640px){
  .event-title{ font-size: 40px; }
  .event-grid2{ grid-template-columns: 1fr 1fr; }
  .event-ctaRow{ flex-direction: row; }
  .event-btn{ flex: 1; }
}

@media (max-width: 639px){
  .content{ padding: 12px; }
  .event-wrap{ padding: 12px 12px 90px; }
  .event-hero{ padding: 14px 12px; border-radius: 16px; }

  .event-title{ font-size: 26px; line-height: 1.15; }
  .event-sub, .event-fine, .event-card p{ font-size: 18px; line-height: 1.75; }
  .event-bullets li{ font-size: 16.5px; line-height: 1.65; }

  .event-card{ padding: 14px; border-radius: 16px; }
  .event-grid2{ grid-template-columns: 1fr; }

  .event-btn{ width: 100%; padding: 16px 14px; font-size: 16px; }

  .event-dot{
    width: 5px;
    height: 5px;
    margin-top: 9px;
  }
  #immersion .event-h2 { font-size: 12px; }
  #immersion h2 { font-size: 20px; }	
}

/* =========================================
   Contact / Subscribe Forms
   ========================================= */

.contact-form{
  max-width: 760px;
  margin: 0 auto;
}

.contact-intro{
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin: 20px 0 30px;
  color: rgba(233,236,255,.92);
}

.contact-intro a{
  color: #00D8D5;
  text-decoration: none;
  font-weight: 600;
}

.contact-intro a:hover{
  color: #fff;
  text-decoration: underline;
}

.contact-label{
  display: block;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(233,236,255,.92);
  text-align: left;
}

.contact-label input,
.contact-label textarea{
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  font-size: 16px;
  font-family: inherit;
  color: #fff;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;

  transition: all .2s ease;
}

.contact-label input::placeholder,
.contact-label textarea::placeholder{
  color: rgba(255,255,255,.4);
}

.contact-label input:focus,
.contact-label textarea:focus{
  outline: none;
  background: rgba(255,255,255,.12);
  border-color: rgba(120,220,220,.5);
  box-shadow: 0 0 0 3px rgba(120,220,220,.15);
}

.contact-label textarea{
  resize: vertical;
  min-height: 120px;
}

/* Centered Checkbox Row */
.contact-checkbox{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 18px auto 24px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(233,236,255,.85);
  text-align: left;
  flex-wrap: nowrap;
}

.contact-checkbox input[type="checkbox"]{
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex: 0 0 20px;
  min-width: 20px;
  max-width: 20px;
  accent-color: #00D8D5;
}

.contact-checkbox span{
  display: inline-block;
  width: auto;
  flex: 0 1 auto;
}

.contact-checkbox:hover{ color: rgba(233,236,255,.95); }

/* Submit buttons inside forms use event-btn */
.contact-form .event-btn{
  width: 100%;
  margin-top: 10px;
  font-size: 17px;
}

@media (max-width: 639px){
  .contact-label{ font-size: 14px; }
  .contact-label input, .contact-label textarea{ font-size: 16px; }
  .contact-checkbox{ font-size: 13px; }
}

/* =========================================
   Global Radio Buttons — CENTERED
   ========================================= */

.radio-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 10px 0 18px;
}

.radio-group label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(233,236,255,.85);
}

.radio-group input[type="radio"]{
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #00D8D5;
}

.radio-label-centered{
  text-align: center;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(233,236,255,.92);
}

/* =========================================
   FAQ Accordion — THEME D (jQuery UI #Accordion1)
   ========================================= */

#Accordion1{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

#Accordion1 .ui-accordion-header,
#Accordion1 .ui-accordion-content{
  border: 0 !important;
  background: transparent !important;
}

#Accordion1 .ui-accordion-header{
  position: relative;
  margin: 0 !important;
  padding: 14px 16px 14px 48px !important;
  cursor: pointer;

  font-family: Baskerville,"Palatino Linotype",Palatino,"Times New Roman",serif;
  font-size: 17.5px;
  font-weight: 400;
  letter-spacing: .01em;

  color: rgba(210,220,235,.85) !important;

  border-top: 1px solid rgba(255,255,255,.10) !important;

  transition:
    background .18s ease,
    box-shadow .18s ease,
    color .18s ease,
    border-color .18s ease;
}

#Accordion1 .ui-accordion-header:first-child{ border-top: 0 !important; }

#Accordion1 .ui-accordion-header:hover{
  color: rgba(233,236,255,.95) !important;
}

#Accordion1 .ui-accordion-header.ui-state-active{
  background: rgba(0,216,213,.10) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 0 0 1px rgba(0,216,213,.18);
}

#Accordion1 .ui-accordion-header:focus,
#Accordion1 .ui-accordion-header:focus-visible{
  outline: none !important;
  box-shadow:
    0 0 0 2px rgba(0,216,213,.35),
    0 0 22px rgba(0,216,213,.16);
}

#Accordion1 .ui-accordion-content{
  padding: 16px 18px 18px !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;

  color: rgba(169,175,215,.95);
  font-size: 16.5px;
  line-height: 1.7;

  background: rgba(0,0,0,.18) !important;
}

#Accordion1 .ui-accordion-content a{
  color: rgba(0,216,213,.95) !important;
  text-decoration: underline;
  font-weight: 500 !important;
}
#Accordion1 .ui-accordion-content a:hover{ color: #ffffff !important; }

#Accordion1 .ui-accordion-header .ui-icon{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  margin: 0 !important;
  background: none !important;
}

#Accordion1 .ui-accordion-header .ui-icon::before{
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(0,216,213,.95);
  border-bottom: 2px solid rgba(0,216,213,.95);
  transform: rotate(-45deg);
  transition: transform .18s ease, border-color .18s ease;
}

#Accordion1 .ui-accordion-header.ui-state-active .ui-icon::before{
  transform: rotate(45deg);
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

@media (max-width: 639px){
  #Accordion1 .ui-accordion-header{
    font-size: 16.5px;
    padding: 13px 14px 13px 44px !important;
  }
  #Accordion1 .ui-accordion-content{
    font-size: 16px;
    padding: 14px 14px 16px !important;
  }
}
/* ================================
   Newsletter Popup
   ================================ */

.nlp-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 18px;
}

.nlp-modal{
  width: min(520px, 100%);
  background: rgba(10, 10, 18, .92);
  border: 1px solid rgba(120, 130, 190, .35);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  padding: 22px 20px 18px;
  position: relative;
  color: rgba(233,236,255,.92);
  backdrop-filter: blur(10px);
}

.nlp-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(233,236,255,.75);
  font-size: 30px;
  cursor: pointer;
  line-height: 40px;
}

.nlp-title{
  font-family: "poiret-one", "Poiret One", Arial, sans-serif;
  font-size: 34px;
  color: aqua;
  text-align: center;
  margin: 6px 10px 10px;
}

.nlp-text{
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(233,236,255,.85);
  margin: 0 10px 16px;
}

.nlp-actions{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.nlp-btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(120, 130, 190, .35);
}

.nlp-primary{
  background: rgba(90, 235, 255, .14);
  color: #7fe9ff;
}

.nlp-primary:hover{
  background: rgba(90, 235, 255, .22);
}

.nlp-secondary{
  background: rgba(255,255,255,.06);
  color: rgba(233,236,255,.86);
}

.nlp-secondary:hover{
  background: rgba(255,255,255,.10);
}

html.nlp-lock, body.nlp-lock{
  overflow: hidden !important;
}

/* Event-card links — single source of truth */
.event-card a{
  color: #00ffff;
  font-weight: 500;
  text-decoration: underline;
}

.event-card a:visited{
  color: rgba(0,255,255,.65);
}

.event-card a:hover,
.event-card a:focus{
  color: #ffffff;
}
/* ===== Weather widget (NWS) ===== */
.wx-wrap{
  margin: 0 auto 18px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  max-width: 750px;
  width: 100%;	
  box-sizing: border-box;	
}
.wx-head{ margin-bottom:8px;
text-align: center;
}
.wx-title{ font-size:13px; font-weight:500; opacity:.7; letter-spacing:.03em; text-transform:uppercase; }
.wx-toggle{
  border: 0;
  background: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.wx-toggle-icon{
  width: 12px;
  height: 12px;
  opacity: .8;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23a8f4ff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: transform .15s ease;
}
.wx-wrap[data-collapsed="true"] .wx-cards,
.wx-wrap[data-collapsed="true"] .wx-foot{
  display: none;
}
.wx-wrap[data-collapsed="false"] .wx-toggle-icon{
  transform: rotate(180deg);
}
.wx-cards{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:4px;
}
.wx-day{
  text-align:center;
  padding:8px 4px;
  border-radius:10px;
  background: transparent;
  border: none;
}
.wx-dow{ font-size:12px; opacity:.7; margin-bottom:4px; font-weight:600; }
.wx-icon{ width:28px; height:28px; margin:2px auto 4px; display:flex; align-items:center; justify-content:center; font-size:24px; }
.wx-hi{ font-size:15px; font-weight:700; line-height:1; }
.wx-lo{ font-size:12px; opacity:.55; margin-top:3px; }
.wx-foot{ margin-top:8px; font-size:11px; opacity:.45; text-align: center;}
.wx-skeleton{
  height:80px;
  border-radius:10px;
  background:linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.06), rgba(255,255,255,.03));
  background-size:200% 100%;
  animation:wxShimmer 1.2s infinite linear;
}
.wx-rain{ font-size:11px; opacity:.75; margin-top:2px; color: #7ee8ff; white-space:nowrap; }
@keyframes wxShimmer{ 0%{background-position:200% 0} 100%{background-position:-200% 0} }
@media (max-width: 639px){
  .wx-cards{ grid-template-columns:repeat(7, minmax(40px, 1fr)); gap:2px; }
  .wx-icon{ width:22px; height:22px; font-size:20px; }
  .wx-hi{ font-size:13px; }
  .wx-dow{ font-size:11px; }
}
/* =========================================
   Footer — Theme D + tooltip (aligned typography)
   ========================================= */

.footer{
  width: 100%;
  margin-top: 24px;
  padding: 16px 0 24px;
  background-color: #000;
  text-align: center;

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: rgba(169,175,215,.95);
}

.footer .footer-text{
  font-size: 15px;
  font-weight: 500;
  opacity: .85;
  margin: 10px 0 8px;
}

.footer .footer-mantra{
  font-size: 14px;
  letter-spacing: .04em;
  opacity: .75;
  margin: 10px 0 8px;
}

.footer .footer-copy{
  font-size: 12px;
  opacity: .55;
  margin-top: 26px;
}

.footer .footer-credit{
  font-size: 12px;
  opacity: .60;
  margin-top: 8px;
}

.footer a{
  color: rgba(0,216,213,.90);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer-icons{
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 22px 0 34px;
}

.footer-icons a{
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(0,216,213,.38);

  color: rgba(0,216,213,.95);
  text-decoration: none;
  line-height: 0;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 14px 34px rgba(0,0,0,.45);

  transition:
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    color .18s ease;
}

.footer-icons svg{
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
}

.footer-icons a:hover,
.footer-icons a:focus-visible{
  background: rgba(0,216,213,.10);
  border-color: rgba(0,216,213,.75);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 18px 46px rgba(0,0,0,.60),
    0 0 0 1px rgba(0,216,213,.22),
    0 0 24px rgba(0,216,213,.18);
}

.footer-icons a:focus{ outline: none; }

.footer-icons a::after{
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);

  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;

  background: rgba(0,0,0,.75);
  border: 1px solid rgba(0,216,213,.22);
  border-radius: 999px;
  padding: 4px 8px;

  color: rgba(233,236,255,.92);
  opacity: 0;
  pointer-events: none;

  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}

.footer-icons a:hover::after,
.footer-icons a:focus-visible::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 639px){
  .footer-icons{ gap: 16px; }
  .footer-icons a{ width: 48px; height: 48px; }
  .footer-icons svg{ width: 20px; height: 20px; }
}