/* ==========================================================================
   style.clean.safe.css — Minimal cleanup from original (non-breaking)
   - Converted // comments to /* ... */
   - Removed duplicate html { scroll-behavior: smooth; } if present
   - Deduped #invoice-fields extra blocks
   - Added scoped footer contact overflow guard
   IMPORTANT: Title sizes/margins and form layouts are preserved.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  /*font-family: 'Segoe UI', sans-serif;*/
  background: linear-gradient(65deg, #000046, #002699);
 /*background: linear-gradient(65deg, #000026, #255cff);*/
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;  
}

a {
  color: white;
}



/* LOADER ANIMATION*/
/* Loader styling */
#loader-container {
  position: fixed;
  inset: 0;
  background: linear-gradient(65deg, #00022a, #001c77);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

.loader {
  height: 30px;
  aspect-ratio: 6;
  --c: #0000 64%, #fff 66% 98%, #06002700 101%;
  background:
	radial-gradient(35% 146% at 50% 159%, var(--c)) 0 0,
	radial-gradient(35% 146% at 50% -59%, var(--c)) 25% 100%;
  background-size: calc(100% / 3) 50%;
  background-repeat: repeat-x;
  clip-path: inset(0 60% 0 0);
  animation: l6 .8s infinite linear alternate;
  background-color: transparent;
}

@keyframes l6 {
  to { clip-path: inset(0 0 0 60%) }
}

#loader-container-ess {
  position: fixed;
  inset: 0;
  background: linear-gradient(65deg, #00022a, #001c77);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

/* New dot-sweep loader in white */
.loader-ess {
  width: 120px;
  height: 20px;
  background: 
	radial-gradient(circle 10px, #fff 95%, transparent) right / calc(200% + 20px) 100%,
	linear-gradient(#fff 0 0) center / 100% 6px;
  background-repeat: no-repeat;
  -webkit-mask: radial-gradient(circle 4px, transparent 93%, #fff) right / calc(200% + 20px) 100%;
  animation: l6-ess 1s infinite linear;
}

@keyframes l6-ess {
  100% {
	background-position: left;
	-webkit-mask-position: left;
  }
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 0em 0.2em 0em;
  position: fixed; /* ← so it floats above everything */
  top: 0;
  left: 0;   /* NEW */
  right: 0;  /* NEW */
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
  /*min-height: 8vh; */
  height: clamp(56px, 7vh, 88px);
}



.navbar.scrolled {
  background-color: #00137e;
  border-bottom: none;
}

.navbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo {
  position: absolute;
  left: 3em; /* tweak to 0.5em or 0 for more extreme edge */
  top: 50%;
  transform: translateY(-50%);
  max-height: 45px;
}

.nav-links {
  display: flex;
  gap: 4em;
  list-style: none;
  justify-content: center;
  margin: 0;         
  padding: 0;         
}

@media (max-width: 1120px) {
  .nav-links {
	gap: 2em;
  } 
  .navbar-inner {
	justify-content: flex-end;
	padding-right: 2em;    
  }
}

.nav-links li {
  position: relative;
  padding-bottom: 1.5em; /* gives room for wave */
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25em 0.5em;
  transition: color 0.3s ease;
  display: inline-block;
  overflow: visible; /* allow ::after to breathe */
}

/* 🔊 Real animated waveform underline */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 120 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 10 Q 10 0, 20 10 T 40 10 T 60 10 T 80 10 T 100 10 T 120 10" stroke="%23ffffff" fill="transparent" stroke-width="2" /></svg>') repeat-x;
  background-size: 120px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: wave-scroll 3s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes wave-scroll {
  0% {
	background-position-x: 0;
  }
  100% {
	background-position-x: 120px;
  }
}






/* === HAMBURGER ICON === */
.hamburger {
  display: none; /* shown via media query */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
}

/* Toggle animation (X) */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ---------- MOBILE NAVBAR ---------- */
@media (max-width: 768px) {
  .hamburger {
	display: flex;                      /* show the icon */
  }

  .nav-links {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;                        /* safer than 100vw */
	background-color: #01228C;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 4rem; 
	align-items: center;
	gap: 0;                             /* remove huge gap */
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
	z-index: 999;
  }

  .nav-links.active { transform: translateX(0); }

  /* Each row is now a flex box so its anchor centres vertically */
  .nav-links li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 1.4em 0;                  /* equal top & bottom */
	border-top: 1px solid #ffffff22;   /* thin horizontal rule */
	text-align: center;
  }

  .nav-links li:first-child { border-top: none; }

  /* No extra border on the last item */
  .nav-links li:last-child { border-bottom: none; }

  /* Trim anchor padding so true centring is preserved */
  .nav-links a { padding: 0; }

  /* Optional: hide animated waveform underline on mobile */
  .nav-links a::after { display: none; }
}





/* === STICKY BUTTON === */

.sticky-register-btn {
  position: fixed;
  bottom: 2em;
  right: 2em;
  padding: 0.8em 1.4em;
  background: transparent;
  background-color: #007bffa2;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 1px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
}

.sticky-register-btn:hover {
  background: #c6e6ff; /* your flashy blue */
  color: #031167;
}

/* Show button after scrolling */
body.scrolled .sticky-register-btn {
  opacity: 1;
  pointer-events: auto;
}







/* === SECTIONS === */
.section {
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.btn-aura {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.75em 2em;
  border: none;
  background-color: transparent;
  color: #23b2ff;
  cursor: pointer;
  overflow: visible;
  border-radius: 0;
  z-index: 1;
  text-decoration: none;
  line-height: 1;
  transition: color 0.3s ease;
  vertical-align: middle;
}


.btn-aura span {
  display: inline-block;
  transform: translateY(1px); /* OR -1px if too low */
}
.btn-aura::before,
.btn-aura::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}




/* Aura borders */
.btn-aura::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 1px solid #23b2ff;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.btn-aura::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff; /* aura color */
  border-radius: 4px;
  opacity: 0;
  transform: scale(1.1, 1.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 0;
}

.btn-aura:hover::before {
  opacity: 0;
}

.btn-aura:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}

.btn-aura:hover {
  color: #ffffff;
}

/* Fix spacing in the intro section */
#intro {
  position: relative;
  overflow: visible;
}

#intro p {
  margin-bottom: 2em;
}

#intro .btn-aura {
  margin: 2em 1em 0 1em;
}




/* === INTRO SECTION STYLES === */
.intro-highlight {
  padding: 12em 0em 8em 0em;
  text-align: center;
  color: #23b2ff;
}

.intro-title {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 1px;
	background: linear-gradient(90deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.intro-tagline {
  font-size: 1.3rem;
  color: #23b2ff;
  margin-bottom: 1.5em;
  font-style: italic;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 2.5em auto;
  padding: 0 1em 0 1em;
  color: #cfdfff;
}

.intro-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-top: 2.5em;
}







/* === WHY ATTEND === */
.why-attend-section {
  color: #ffffff;
  padding: 4em 0em 4em 0em;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(-65deg, #003fddbf, #09008bd6);
}

.section-title {
  font-size: 2.8em;
  text-transform: uppercase;
  margin-bottom: 1em;
  background: linear-gradient(90deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}

.section-subtitle,
.closing-line {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 2em;
  color: #ffffff;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 900px;
  margin: 0 auto 4em;
  padding: 0 1em 0 1em;
}

.benefit-item {
  position: relative;
  font-size: 1.3em;
  padding: 1.2em 1.8em 1.2em 5.5em;
  border: 1px solid #82deff55;
  border-left: 5px solid #23b2ff;
  border-radius: 0.4em;
  transform: translateX(-60px);
  opacity: 0;
  transition: all 0.4s ease-out, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: left;
  color: #fff;
  overflow: hidden;
}

.benefit-item.visible {
  transform: translateX(0);
  opacity: 1;
}

.benefit-item:hover {
  background: rgba(0, 106, 255, 0.364);
  transform: translateX(0) scale(1.02);
  border: 1px solid #82deff00;

}

.benefit-detail {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  font-size: 0.9em;
  margin-top: 0.5em;
  color: #ddd;
  line-height: 1.4;
}

.benefit-item.active .benefit-detail {
  max-height: 500px; /* large enough to fit text */
  opacity: 1;
}

.benefit-index {
  position: absolute;
  left: 1em; /* ← a bit more left */
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8em;
  font-weight: 900;
  color: #23b2ff;
}





/* === COUNTDOWN SECTION === */
.countdown-section {
  text-align: center;
  background: transparent;
  color: #23b2ff;
  margin-bottom: 8em;
}

.countdown-section h2 {
  font-size: 2.8em;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 2em;
}


.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.countdown-box {
  border: 1px solid #82deff55;
  border-radius: 0.3em;
  min-width: 140px;
  text-align: center;
  padding: 1.5em;
}

.countdown-box strong {
  display: block;
  font-size: clamp(4em, 10vw, 8em);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  transition: transform 0.2s ease;
}

.countdown-box strong.update {
  animation: pop 0.4s ease;
}

@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}


.countdown-box span {
  display: block;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #23b2ff;
}




/* === HOSTS SECTION === */
.host-sectionT {
  padding: 6em 2em;
  text-align: center;
}

/* Top title */
.host-questionT {
  font-size: 2.8em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5em;
  background: linear-gradient(90deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


/* === HOSTS SECTION HTML === */
/* === WRAPPER === */
.hosts-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4em;
  flex-wrap: wrap;
  padding: 10em 2em;
}

/* === VERTICAL TITLE === */
.hosts-title-vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  flex-shrink: 0;
  order: 0;
}

.vertical-title {
  background: linear-gradient(180deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 4em;
  font-weight: 900;
  margin: 0;
  white-space: nowrap; /* ✅ no wrap on full screen */
  line-height: 1;
  text-align: center;
}



/* === HOST CONTENT === */
.hosts-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4em;
  max-width: 1000px;
}

/* === HOST BLOCK === */
.host-block {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  flex-wrap: wrap;
}

.host-block.reverse {
  flex-direction: row-reverse;
}

.host-img img {
  max-width: 350px;
  width: 100%;
  border-radius: 0.5em;
}

.host-text {
  flex: 1;
}

.host-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.host-divider {
  border: none;
  height: 1px;
  background: #ffffff22;
  width: 100%;
  margin: 2em 0;
}

.linkedin-icon {
  display: inline-block;
  margin-top: 1em;
  font-size: 1.5em;
  color: #23b2ff;
  transition: color 0.3s ease;
}

.linkedin-icon:hover {
  color: white;
}

/* === RESPONSIVE === */

@media (max-width: 700px) {
  .hosts-title-vertical {
	writing-mode: horizontal-tb;
	transform: none;
	order: -1;
	width: 100%;
	margin-bottom: 1em;
  }

  .vertical-title {
	font-size: 2.4em;
	background: linear-gradient(90deg, #23b2ff, #002fff);
	white-space: normal; /* ✅ allow wrap only now */
	line-height: 1.2;
  }
}




@media (max-width: 850px) {
  .hosts-wrapper {
	flex-direction: column;
	align-items: center;
	padding: 4em 1em;
	gap: 3em;
  }

  .hosts-title-vertical {
	writing-mode: horizontal-tb;
	transform: none;
	order: -1;
	margin-bottom: 2em;
  }

  .vertical-title {
	font-size: 2.4em;
	background: linear-gradient(90deg, #23b2ff, #002fff);
  }

  .host-block,
  .host-block.reverse {
	flex-direction: column;
	align-items: center;
	text-align: center;
  }

  .host-img img {
	max-width: 90%;
  }

  .host-text h2 {
	font-size: 1.5em;
  }

  .linkedin-icon {
	font-size: 1.2em;
  }
}

@media (max-width: 500px) {
  .vertical-title {
	font-size: 2em;
  }

  .host-text h2 {
	font-size: 1.3em;
  }

  .linkedin-icon {
	font-size: 1em;
  }

  .host-block {
	gap: 1.2em;
  }
}


/* === PASS PAGE === */

.pass-section {
  position: relative; /* needed for the ::before positioning */
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #ffffff55;
  background-color: rgba(255, 255, 255, 0.03);
  max-width: 500px;
  margin-top: 10em;
  margin: 1rem auto;
  box-sizing: border-box;
  overflow: hidden; /* clip the pseudo element to rounded corners */
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pass-section {
  margin: 0rem auto 4rem;
}

@media (max-width: 768px) {
  .pass-section {
	margin-top: 3rem; /* smaller gap on smaller screens */
  }
}

/* Hover scale effect */
.pass-section:hover {
  transform: scale(1.06);
}

/* Hover background layer */
.pass-section::before {
  content: "";
  position: absolute;
  inset: 0; /* fill the section */
  background-color: rgba(255, 255, 255, 0); /* start transparent */
  transition: background-color 0.3s ease;
  z-index: 0; /* behind content */
}

/* On hover, fade to 20% white */
.pass-section:hover::before {
  background-color: #0140d047;
}

/* Make sure the content is above the ::before */
.pass-section > * {
  position: relative;
  z-index: 1;
}

/* Sale label above price */
.pass-sale-label {
  font-size: 1.8em;
  font-weight: 900;
  color: #23b2ff;
  text-transform: uppercase;
  margin-bottom: 0.3em;
  text-align: center;
}

/* Optional sale date line */
.pass-sale-date {
  font-size: 1.2em;
  color: #23b2ff;
  margin-bottom: 0.5em;
  text-align: center;
}

/* Price + old price container */
.pass-price-wrapper {
  display: inline-flex;           /* keep prices together */
  align-items: baseline;          /* align number baselines */
  justify-content: center;        /* center the block */
  gap: 0.8em;
  flex-wrap: wrap;
}

/* Main sale price */
.pass-price {
  font-size: 3.5em;
  font-weight: 900;
  background: linear-gradient(90deg, #23b2ff, #002fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  margin: 0;
  text-align: center
}

/* Old crossed-out price */
.pass-old-price {
  font-size: 1.5em;
  color: #ffffff99;
  text-decoration: line-through;
}

/* Checklist */
.pass-checklist {
  list-style: none;
  padding: 0;
  margin: 2em auto;
  max-width: 600px;
  font-size: 1.05em;
  color: #ffffffcc;
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: left;
}

.pass-checklist li {
  position: relative;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #23b2ff33;
  border-radius: 0.3em;
  padding: 0.8em 1em 0.8em 3em;
  
}

.pass-checklist li::before {
  content: '';
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8em;
  height: 1.4em;
  border-right: 2px solid #23b2ff;
  border-bottom: 2px solid #23b2ff;
}

/* View toggles */
.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
  animation: fadeIn 280ms ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pass-section.compact {
  padding-bottom: 2rem;                 /* after click */
  margin-bottom: 2em;
}

/* 2) Simple enter/exit animations for the swap */
.fade-out { animation: sp-fade-out .18s ease-out both; }
.fade-in  { animation: sp-fade-in  .24s ease-out both; }

@keyframes sp-fade-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}
@keyframes sp-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Inline version of the homepage wave loader */
.pay-inline-loader{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  margin: .75rem 0 1rem;
}
.pay-inline-loader .loader{
  height: 24px;           /* slightly smaller than the full-screen version */
  aspect-ratio: 6;        /* keeps the wave proportion */
}
.pay-inline-loader .loader-msg{
  font-size: .95rem;
  color: #bfefff;
  opacity: .95;
}




/* === FORM === */
/* === REGISTER PAGE === */

.register-page {
  background-color: #000428;
  color: white;
  padding: 0;
  margin: 0;
}

.register-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-height: 100vh; */
  padding: 2em 1em 6em;
}

.form-wrapper {
  max-width: 600px;
  width: 100%;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: transparent;
  border: 1px solid #ffffff55;
  padding: 2em;
  border-radius: 0.5em;
}

.register-form input,
.register-form textarea {
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
}

.register-form input:focus,
.register-form textarea:focus {
  border-color: #00ffff;
}

.register-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Optional: Custom title styling */
.register-form h2,
.register-section h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: 2px;
  margin-bottom: 1em;
}

/* Make selects match inputs */
.register-form select {
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none; /* optional: cleaner native look */
}

/* Hover/focus to match inputs */
.register-form select:hover { border-color: #bfefff; }
.register-form select:focus,
.register-form select:focus-visible {
  border-color: #00ffff;
  box-shadow: 0 0 0 3px rgba(0,255,255,0.2);
}

/* Ensure dropdown list text is readable on some browsers */
.register-form select option { color: #000; }

/* Make the invoice block use the same vertical rhythm as the form */
#invoice-fields {
  display: flex;            /* match .register-form's column layout */
  flex-direction: column;
  gap: 1.5em;               /* same gap as .register-form */
  border-top: 1px solid #ffffff33; /* subtle visual grouping (optional) */
  padding-top: 1em;                     /* optional */
}

/* Ensure labels render consistently above inputs everywhere */
.register-form label {
  display: block;
  margin-bottom: 0.35em;
}

/* Align the “invoice same as attendee” checkbox neatly on one line */
.register-form .checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

/* Improve default checkbox look without changing your theme */
.register-form input[type="checkbox"] {
  accent-color: #00ffff;   /* matches your focus color */
}

/* 1) Consistent label spacing and readable placeholders */
.register-form label { display: block; margin-bottom: 0.35em; }
.register-form ::placeholder { color: #d0d8ff; opacity: 0.7; }

/* 2) Hover and focus styles that feel crisp on dark backgrounds */
.register-form input:hover,
.register-form textarea:hover {
  border-color: #bfefff;
}

.register-form input:focus-visible,
.register-form textarea:focus-visible {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 0 3px rgba(0,255,255,0.2);
}

/* -----------------------------------------------------------
   1. Two-column grid with tighter gap
----------------------------------------------------------- */
.register-form .form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* equal columns                */
  gap: 0.75em;                      /* was ~1.5em → feels tighter   */
}

/* single-column rows keep full width */
.register-form .form-row {
  display: block;
}

/* -----------------------------------------------------------
   2. Make every control fill its column
----------------------------------------------------------- */
.register-form input,
.register-form textarea,
.register-form select {
  width: 100%;          /* stretch to column edge          */
  box-sizing: border-box;
}

/* same for invoice inputs that aren’t inside .two-col */
#invoice-fields input,
#invoice-fields textarea,
#invoice-fields select {
  width: 100%;
}

/* -----------------------------------------------------------
   3. Submit button = same width as the two columns
----------------------------------------------------------- */
.register-form button[type="submit"] {
  width: 100%;          /* aligns with grid columns        */
  margin-top: 0.5em;    /* small breathing room            */
  align-self: stretch;  /* if you ever use flex wrappers   */
}

/* (Optional) keep the button text centred even at full width */
.register-form button span {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* --- restore normal size / alignment for the single checkbox line --- */
.register-form input[type="checkbox"] {
  width: auto;            /* don’t stretch                            */
  margin: 0;              /* remove any grid-induced margin           */
}

/* keep its label beside it, not above it */
.register-form .checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.6em;             /* same as before                           */
}


.pay-success {
  text-align: center;
  padding: 2rem 1rem;
}
.pay-success h3   { color:#6effc7; margin:0 0 .6rem; }
.pay-success p    { font-size:1.05rem; line-height:1.45; }

/* 3) Two-column rows on larger screens (keep single column on mobile) */
.form-row { display: grid; gap: 1.5em; }
@media (min-width: 760px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

/* 4) Invoice block matches main rhythm and looks intentional */.register-form .checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.register-form input[type="checkbox"] { accent-color: #00ffff; }

/* 5) Error and success messaging that fits your theme */
.input-error { border-color: #ff6b6b !important; }
.error-text { color: #ff9b9b; font-size: 0.85rem; margin-top: 0.5em; }
.success-text { color: #6effc7; font-size: 0.95rem; margin: 0.5em 0; }

/* 6) Disabled submit state so users know something is happening */
.btn-aura[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Give the last paragraph in .soldout some bottom space */
.soldout > p:last-of-type {
  margin-bottom: 0.75rem;
}


/* === carousel-indicators === */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
  margin-bottom: 5em;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(0, 128, 255, 0.61);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
}

.indicator-dot.active {
  background-color: white;
  transform: scale(1.4);
}







/* === LANDING PAGE AND EFFECT GRADIENT === */

/* Landing */
.section-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at center, #00a6ff 0%, #01228C 80%);
  /*transition: background 0.2s ease;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2em;
}

.hero-logo {
  max-width: 740px;
  width: 60vw;
  height: auto;
  margin-bottom: 1.5em;
}

/* Title + subtitle */
.section-hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.section-hero p {
  font-size: 1.2em;
  margin-bottom: 2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}




/* Initial state */
.animate-logo,
.animate-subtitle,
.animate-button {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}

/* Animations */
@keyframes fadeSlideIn {
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* Staggered animations */
.animate-logo {
  animation: fadeSlideIn 0.8s ease-out 0.2s forwards;
}

.animate-subtitle {
  animation: fadeSlideIn 0.8s ease-out 0.8s forwards;
}

.animate-button {
  animation: fadeSlideIn 0.8s ease-out 1.4s forwards;
}




/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2em;
  left: 50%;
  z-index: 2;
}

.arrow {
  font-size: 2em;
  color: white;
  animation: bounce 2s infinite;
  display: inline-block;
  transform: translateX(-50%); /* Moved here instead */
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* === LOCATION SECTION CLEANED === */

#location {
  color: white;
   background: linear-gradient(65deg, #003fddbf, #09008bd6);

}

.location-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 5em 2em 4em 1em;
  color: white;
  max-width: 1100px;     /* control total width of label + content */
  margin: 0 auto;         /* center the whole thing */
}


.location-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-label h2 {
  font-size: clamp(3rem, 9vw, 8.5rem);
  font-weight: 900;
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #00aaff, #0048ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
}

.location-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-text {
  text-align: left;
  margin-bottom: 2em;
}

.location-text h3 {
  font-size: 2em;
  margin-bottom: 0.5em;
  margin-top: 0.7em;
}

.location-text p {
  font-size: 1em;
  max-width: 800px;
  margin: 0.5em 0;
  line-height: 1.6;
}

.location-text a.btn-aura {
  margin-top: 1em;
}

.location-text .quick-view-title {
  margin-top: 2.8em;
  font-size: 1.3em;
  letter-spacing: 0.1em;
  margin-bottom: 0em;
}

/* Hotel Grid – stays under everything */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 33.333vh;
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  margin-right: calc(-1 * ((100vw - 100%) / 2));
}

.hotel-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hotel-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hotel-img-wrapper:hover img {
  transform: scale(1.1);
}

.hotel-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
  font-size: 0.9em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5em;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hotel-img-wrapper:hover .hotel-img-overlay {
  opacity: 1;
}

/* Responsive Tweak */
@media (max-width: 900px) {
  .location-wrapper {
	flex-direction: column;
	align-items: center;
	padding: 4em 1em;
  }

  .location-label {
	writing-mode: horizontal-tb;
	transform: none;
	margin-bottom: 1em;
  }

  .location-label h2 {
	font-size: 2.8rem;
	text-align: center;
  }

  .location-text {
	text-align: center;
  }

  .hotel-grid {
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
  }
}





/* === HOTEL IMAGE MODAL === */
.hotel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(65deg, #000229e1, #001762ad);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hotel-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.hotel-modal.hidden {
  display: none;
}

.hotel-modal-close {
  position: absolute;
  top: 1em;
  right: 1.5em;
  font-size: 2em;
  color: white;
  cursor: pointer;
}



.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: transparent;
  color: white;
  border: none;
  padding: 0.2em 0.5em;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s ease;
}

.modal-nav.left {
  left: 1em;
}

.modal-nav.right {
  right: 1em;
}

.modal-nav:hover {
  color: #23b2ff; /* subtle pop of color */
}







/* === PARTNERS SECTION === */
/* === PARTNERS SECTION === */
.partners-section {
  position: relative;
  padding: 6em 5vw;
  text-align: center;
}

.partners-title {
  font-size: 2.5em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2em;
}

/* === CAROUSEL WRAPPER === */
.partners-carousel-wrapper {
  display: flex;
  align-items: center; /* Vertically align arrows */
  justify-content: center;
  width: 100%;
  gap: 1.5em;
}

/* === CAROUSEL CONTAINER === */
.partners-carousel {
  display: flex;
  gap: 5em;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  padding: 1em 3em;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}


.partners-carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* === PARTNER LOGOS === */
.partner-logo {
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}


.partner-logo {
  scroll-snap-type: none;
}
.partner-logo:hover {
  transform: scale(1.05);
}

/* === CAROUSEL ARROWS === */
.carousel-arrow {
  background: #020D63;
  border: 1px solid #ffffff44;
  border-radius: 50%;
  padding: 0.6em;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

.carousel-arrow:hover {
  background: #23b2ff;

}

.carousel-arrow.visible {
  opacity: 1;
  pointer-events: auto;
}

.left-arrow {
  /* If you want spacing adjust, add margin */
}

.right-arrow {
  /* Same here if spacing needed */
}

/* === RESPONSIVE ADJUSTMENTS === */

@media (max-width: 1200px) {
  .partners-carousel {
	justify-content: flex-start;
	gap: 3em;
  }

  .partner-logo {
	height: 80px;
  }
  

  .carousel-arrow {
	height: 40px;
	width: 40px;
	padding: 0.5em;
  }

  .carousel-arrow svg {
	width: 20px;
	height: 20px;
  }
}

@media (max-width: 700px) {
  .partners-carousel {
	justify-content: flex-start;
	gap: 3em;
  }

  .partner-logo {
	height: 50px;
  }
  

  .carousel-arrow {
	height: 40px;
	width: 40px;
	padding: 0.5em;
  }

  .carousel-arrow svg {
	width: 20px;
	height: 20px;
  }
}

/* ---------- PARTNER LOGOS: centred on ≥900 px ---------- */
@media (min-width: 900px) {

  /* Let the row shrink-wrap to its content */
  .partners-carousel {
	justify-content: center;   /* middle of the page      */
	overflow-x: visible;       /* no needless scrollbar   */
	gap: 3em;                  /* saner spacing than 8em  */
  }

  /* Hide the left/right arrows because there’s nothing to scroll */
  .carousel-arrow { display: none; }
}

/* Optional: tame the gap on tablets */
@media (max-width: 1200px) {
  .partners-carousel { gap: 3em; }
}





/* === FOOTER CONTACT SECTION === */
.footer-contact {
  background: #000245;
  color: #ffffff;
  padding: 6em 4vw 4em;
  display: flex;
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4em;
  max-width: 1000px; /* ✅ wider than before */
  width: 100%;
  text-align: left; 
}

/* === LEFT SIDE LINKS === */
.footer-links {
  display: flex;
  gap: 2em;
  flex: 1;
  min-width: 250px;
}

.link-column h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column li {
  margin-bottom: 0.75em;
}

.link-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: color 0.3s ease;
}

.link-column a:hover {
  color: #23b2ff;
}

.linkedin-icon svg {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.linkedin-icon:hover svg {
  fill: #23b2ff;
}

.linkedin-icon svg {
  fill: #7a9dff;
  transition: fill 0.3s ease;
}

.linkedin-icon:hover svg {
  fill: #ffffff;
}

/* === RIGHT SIDE CONTACT FORM === */
.form-wrapper {
  flex: 2.5; /* ✅ Take more space than the links */
  width: 100%;
  display: flex;
  flex-direction: column;
  /*align-items: flex-start; */
}

/* Rotated title next to the form */
.contact-block {
  display: flex;
  gap: 2em;
  align-items: flex-start;
  width: 100%;
}

/* Vertical Title */
.contact-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-size: 2.8em;
  letter-spacing: 6px;
  margin: 0;
  color: white;
  font-weight: 700;
  line-height: 1.1;
  
}

/* Form Styling */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid #ffffff55;
  border-radius: 0.5em;
  width: 100%;
  padding: 2em; /* ✅ More padding */
  gap: 1em;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid white;
  color: white;
  font-size: 1.1rem;
  padding: 1em 1.2em;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #23b2ff;
}

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

.contact-block {            /* wrapper that holds title + form              */
  flex-wrap: wrap;          /* allow items placed after the form to wrap    */
}

#contact-status {           /* the little <div id="contact-status"> element */
  flex: 0 0 100%;           /* always start on its own line                 */
  margin-top: 0.8rem;       /* breathing room under the button              */
  font-size: 0.95rem;
  text-align: center;       /* looks nicer                                  */
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-content {
	flex-direction: column;
	align-items: center;
	gap: 4em;
  }

  .footer-links {
	align-items: top;
	gap: 3em;
  }

  .form-wrapper {
	max-width: 100%;
	align-items: center;
  }

  .contact-block {
	flex-direction: column;
	align-items: center;
  }

  .contact-title {
	writing-mode: horizontal-tb;
	transform: none;
	font-size: 2em;
	text-align: center;
	margin-bottom: 1em;
  }

  .contact-form {
	padding: 2em;
  }
}



/* === H2 CAPITAL LETTERS === */

h2 {
  text-transform: uppercase;
}




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



/* === PROGRAM PAGE (clean) === */
.program-body {
  color: white;
  margin: 0;
  padding: 0;
}

.program-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
}

.program-hero h1 {
  margin:0;
}

#awaits-title {
  /* fluid size: ~2.2rem → 5rem */
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: 1em;
  font-weight: 900;
  white-space: nowrap; /* keep single line on most screens */
}
@media (max-width: 420px) {
  #awaits-title { white-space: normal; }
}

/* Gradient text: fix typo; do not override font size */
.program-hero #awaits-title .gradient-word {
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #008cff, #003bfb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  transition: background-position 0.1s;
}

.program-subtitle {
  margin-top: 2em;
  font-size: 1.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #23b2ff;
}

.program-schedule-section {
  color: white;
  padding: 2em;
  text-align: center;
  overflow: hidden;
  padding-bottom: 10em;
}

/* (Removed .program-filters / .filter-btn – no day-by-day UI now) */

.program-schedule-list {
  max-width: 1200px;
  margin: 1em auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  padding: 0 1em;
}

/* === PROGRAM ITEM === */
.program-item {
  position: relative;
  width: 100%;
  padding: 1em;
  border: 1px solid #82deff55;
  border-left: 5px solid #23b2ff;
  border-radius: 0.4em;
  background: transparent;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  box-sizing: border-box;
}
.program-item.visible {
  transform: translateX(0);
  opacity: 1;
}
.program-item:hover {
  border: none;
  background: rgba(0, 119, 255, 0.192);
  transform: translateX(0) scale(1.02);
}

/* === HEADER ROW (speaker/type + time) === */
.program-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-header {
  font-size: 1.4em;
  font-weight: 800;
  color: white;
}
.program-time {
  font-size: 1em;
  color: #23b2ff;
  font-weight: bold;
  white-space: nowrap;
}

/* === Title line === */
.program-location {
  font-size: 1.2em;
  color: #7ad5ff;
  margin-left: 0.3em;
}

/* === Abstract toggle (native details/summary) === */
details.abstract { margin-top: .35rem; }

/* clickable summary */
.abstract-toggle {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #7ad5ff;
  font-weight: 600;
  text-decoration: none;
  padding: .35rem .5rem;
  border-radius: 6px;
}
.abstract-toggle::-webkit-details-marker { display: none; } /* hide default marker */
.abstract-toggle:focus-visible {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}
details.abstract[open] .abstract-toggle { color: #ffffff; }

/* chevron animation */
details.abstract .chev { transition: transform .2s ease; }
details.abstract[open] .chev { transform: rotate(180deg); }

@media (prefers-reduced-motion: reduce) {
  details.abstract .chev { transition: none; }
}

/* abstract body: hidden until open, with a smooth max-height/opacity */
.program-item .program-detail {
  margin-left: .25rem;
  padding: .6rem .25rem 0 .75rem;
  border-left: 2px solid rgba(122,213,255,.25);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
details.abstract[open] .program-detail {
  max-height: 1000px;  /* large enough for most abstracts */
  opacity: 1;
  overflow: auto;
}

.program-subtime {
  font-size: 0.85em;
  color: #23b2ff;
  margin-bottom: 0.5em;
}
.program-description {
  font-size: 0.95em;
  color: #ddd;
  line-height: 1.5;
}

.program-description p {
  margin-bottom: 0.5em;
}
/* Ensure anchored details don't hide under fixed nav */
details[id] { scroll-margin-top: 90px; }


/* === SPEAKERS TITLE STYLES + ANIMATION === */
#speakers-title {
  margin: 0;
  font-size: 17vw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  text-align: center;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #008cff, #0800e7);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#speakers-title.visible {
  opacity: 1;
  transform: scale(1);
}

/* === SPEAKERS GRID === */

/* === SPEAKER REVEAL ANIMATION === */
.speaker {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.speaker.revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}




/* === SPEAKERS GRID === */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default: 4 per row */
  gap: 2em;
  margin: 0;
  padding: 2em;
}

.speaker {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}

.speaker img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  filter: grayscale(100%);
  transition: transform 0.4s ease, filter 0.5s ease;
  border-radius: 0.5em;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1em;
  opacity: 1;
  mix-blend-mode: normal;
  transition: background-color 0.4s ease, opacity 0.5s ease;
  color: white;
  pointer-events: none;
  z-index: 2;
  border-radius: 0.5em;
}

.speaker-info {
  position: absolute;
  right: 1em;
  bottom: 1em;
  line-height: 1.2;
  text-align: right;
  color: white;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.4s ease;
  z-index: 3;
  text-shadow: 0 4px 4px rgba(6, 0, 46, 0.449);
}

.speaker-info h3 {
  font-size: clamp(0.8rem, 3.5vw, 1.2rem);   /* min 1 rem, max 1.6 rem */
  line-height: 1.2;
}

.speaker-info p {
  font-size: clamp(0.8rem, 3vw, 1rem);   /* min 0.8 rem, max 1.1 rem */
  line-height: 1.25;
}

.speaker.top .overlay {
  align-items: flex-start;
}

.speaker.top .speaker-info {
  top: 1em;
  bottom: auto;
}

/* Hover Effects */
.speaker:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.speaker:hover .overlay {
  opacity: 0;
}

.speaker:hover .speaker-info {
  transform: scale(1.1);
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .speaker-grid {
	grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .speaker-grid {
	grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .speaker-grid {
	display: grid;            /* works whether you used flex or grid above */
	grid-template-columns: 1fr;
	gap: 1.2rem;  
  }
}

/* Color Variables */
:root {
  --blue-1: rgba(0, 102, 204, 0.4);
  --blue-2: rgba(0, 123, 255, 0.4);
  --blue-3: rgba(0, 153, 255, 0.4);
  --blue-4: rgba(30, 144, 255, 0.4);
  --blue-5: rgba(0, 23, 151, 0.85);
  --blue-6: rgba(36, 113, 255, 0.77);
}

/* Global Reset (if intentional) */
* {
  -webkit-backdrop-filter: none;
  -webkit-mask-image: none;
}




/* === MODAL BACKDROP === */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(65deg, #00085cad, #000b2c);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.modal.hidden {
  opacity: 0;
  pointer-events: none;
}

/* === SPEAKER NAME === */
.modal-name h2 {
  font-size: 4.4em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0em;
  padding-bottom: 0em;
}

/* === LINKEDIN ICON === */
.linkedin-link svg {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
  fill: white;
}

.linkedin-link:hover svg {
  transform: scale(1.1);
  fill: #0a66c2; /* official LinkedIn blue */
}



/* === MODAL INNER CONTENT === */
.modal-content {
  background-color: rgba(0, 3, 54, 0);
  color: white;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3em;
  padding: 3em;
  width: 95%;
  max-width: 1400px;
  max-height: 60vh;
  overflow-y: auto;
  text-align: left;
  transition: transform 0.4s ease;
  transform: translateY(20px);
  border-radius: 0.5em;
}


.modal.show .modal-content {
  transform: translateY(0);
}

/* === IMAGE STYLING === */
.modal-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 0.3em;
}


/* === TEXT STYLING === */
.modal-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}


.modal-section {
  border-top: 1px solid #ffffff33;
  padding-top: 1.5em;
}

.modal-section:first-child {
  border-top: none;
  padding-top: 0;
}

.modal-section h3 {
  margin-bottom: 0.4em;
  font-size: 1.3em;
  border-bottom: 1px solid #ffffff33;
  padding-bottom: 0.2em;
}

.modal-section p,
.modal-section a {
  font-size: 1.05em;
  line-height: 1.6;
}

/* ===== Speaker modal typography ===== */
.modal-description {
  line-height: 1.6;
  color: #e9f3ff;              /* stay readable on dark bg */
  font-size: 1rem;
}

/* Put space between paragraphs */
.modal-description p {
  margin: 0 0 0.9em;           /* bottom space only */
}
.modal-description p:last-child {
  margin-bottom: 0;
}

/* Lists look cramped otherwise */
.modal-description ul,
.modal-description ol {
  margin: 0.6em 0 1em 1.2em;   /* top + bottom + left indent */
  padding: 0;
}
.modal-description li + li {
  margin-top: 0.35em;
}

/* Subheadings inside the modal */
.modal-description h3,
.modal-description h4 {
  margin: 1em 0 0.5em;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.05rem;
}

/* Links */
.modal-description a {
  color: #7ad5ff;
  text-decoration: underline;
}
.modal-description a:hover {
  color: #bfefff;
}

/* Sessions inside speaker modal */
.modal-session {
  border: 1px solid rgba(122,213,255,.25);
  border-left: 4px solid #23b2ff;
  border-radius: 6px;
  padding: .75rem .9rem;
  margin: .75rem 0;
  background: rgba(255,255,255,0.03);
}
.modal-session-head { display:flex; justify-content:space-between; gap:1rem; }
.modal-session-title { margin:0; font-weight:700; }

/* Abstract toggle */
.abstract { margin-top:.4rem; }
.abstract-toggle {
  list-style:none; cursor:pointer; display:inline-flex; align-items:center; gap:.45rem;
  color:#7ad5ff; font-weight:600; border-radius:6px; padding:.25rem .4rem;
}
.abstract-toggle::-webkit-details-marker { display:none; }
.abstract[open] .abstract-toggle { color:#fff; }
.abstract .chev { transition:transform .2s ease; }
.abstract[open] .chev { transform:rotate(180deg); }
.abstract-body { margin-top:.5rem; line-height:1.55; }
.abstract-body p + p { margin-top:.6rem; }

/* Bio spacing */
#modal-bio p + p { margin-top:.6rem; }


/* Modal close “X” button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;

  /* reset native button look */
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;

  /* visuals */
  color: #ffffffcc;
  font-size: 2rem;          /* size of the × */
  line-height: 1;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  z-index: 10;

  /* interactions */
  transition: color .2s ease, transform .15s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* hover/focus states */
.modal-close:hover {
  color: #ffffff;
  transform: scale(1.1);
  background: rgba(255,255,255,0.08);
}
.modal-close:focus-visible {
  outline: 2px solid #23b2ff;
  outline-offset: 2px;
}

/* Firefox inner focus reset */
.modal-close::-moz-focus-inner { border: 0; padding: 0; }



/* === RESPONSIVE === */
@media (max-width: 768px) {
  .modal-content {
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2em 1em;
	max-height: 90vh;
  }

  .modal-content img {
	width: 100%;
	max-width: 90%;
	margin-bottom: 1em;
  }

  .modal-text {
	width: 100%;
	text-align: left;
  }

  .modal-close {
	top: 0.5em;
	right: 0.7em;
	font-size: 2.8em;
  }
}




/* === THE HOSTS === */
/* === HOSTS PAGE === */

.hosts-body {
  background-color: #000c2e;
  color: white;
  margin: 0;
}

.hosts-hero {
  width: 100vw;
  padding: 8em 0em 0em 0em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hosts-title {
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.gradient-word {
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #008cff, #1c1eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  user-select: none;
  transition: background-position 0.1s;
  font-size: clamp(3rem, 10vw, 10rem);
}

.hosts-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4em 2em;
  display: flex;
  flex-direction: column;
  gap: 4em;
}

.host-block {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
}

.host-block.reverse {
  flex-direction: row-reverse;
}

.host-img {
  flex: 1 1 300px;
  max-width: 400px;
}

.host-img img {
  width: 100%;
  height: auto;
  border-radius: 0.3em;
  display: block;
}

.host-text {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.host-text h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.host-text p {
  font-size: 1em;
  line-height: 1.6;
  color: #ffffffcc;
  margin-bottom: 1em;
}

.linkedin-icon {
  font-size: 4em;
  color: #7ad5ff;
  transition: color 0.3s ease;
}

.linkedin-icon:hover {
  color: #ffffff;
}

.host-divider {
  border: none;
  border-top: 1px solid white;
  opacity: 0.3;
}


/* Guard: ensure footer contact form controls don't overflow */
.footer-contact .contact-form input,
.footer-contact .contact-form textarea,
.footer-contact .contact-form button {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
