@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: #ffffff;
   padding-top:142px;   /* 48 strip + 92 navbar + 2 borders */
}

/* =========================
   TOP BLUE EVENT STRIP
========================= */
.event-strip{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    overflow:hidden;
    white-space:nowrap;
    background:#246db1;
    border-bottom:1px solid rgba(255,255,255,.18);
    z-index:99999;
}

.event-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  animation: eventStripMove 8s linear infinite;
}

.event-track span {
  display: inline-block;
  padding: 0 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.event-track b {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

/* Moves the repeated event text from right to left */
@keyframes eventStripMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.event-strip:hover .event-track {
  animation-play-state: paused;
}

/* Mobile strip */
@media (max-width: 650px) {
  .event-strip {
    height: 40px;
  }

  .event-track span,
  .event-track b {
    font-size: 13px;
  }

  .event-track span {
    padding: 0 9px;
  }
}





/* =========================
   HEADER / NAVBAR
========================= */
.expo-header{
    position:fixed;
    top:48px;      /* Height of blue strip */
    left:0;
    width:100%;
    z-index:99998;

    background:linear-gradient(90deg,#570061 0%,#35135c 48%,#003a82 100%);
    border-top:1px solid #3477c2;
    border-bottom:1px solid #174f98;
}

.expo-navbar {
  width: 100%;
  min-height:95px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 26px;
}

/* =========================
   LOGO
========================= */
.expo-logo {
  display: flex;
  align-items: center;
  width: 395px;
  min-width: 395px;
}

.expo-logo img {
  width: 225px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================
   MAIN MENU
========================= */
.expo-menu {
  list-style: none;
  display: flex;
  align-items: stretch;
  align-self: stretch;      /* full navbar height -> dropdown sits flush */
  gap: 30px;
  margin-left: auto;
}

.menu-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.menu-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;               /* height comes from the navbar, no dead gap */
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.menu-item > a:hover {
  color: #ffcf00;
}

.menu-item > a i {
  font-size: 12px;
  margin-top: 2px;
}

/* =========================
   DROPDOWN MENU
========================= */
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -18px;
  width: 178px;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  color: #222222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #eeeeee;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.expo-menu a.active-link {
    color:#560061;
}
.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  padding-left: 21px;
  color: #ffffff !important;
  background: linear-gradient(
    90deg,
    #570061 0%,
    #35135c 48%,
    #003a82 100%
  );
}

.dropdown-menu li a.active,
.dropdown-menu li a[href="legacy"]:active {
  color: #ffffff !important;
  background: linear-gradient(
    90deg,
    #570061 0%,
    #35135c 48%,
    #003a82 100%
  );
  font-weight: 700;
}
/* =========================
   RIGHT BUTTONS
========================= */
.expo-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 0;
}

.expo-actions a {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
}

/* =========================
   SHOW PREVIEW BUTTON
========================= */
.btn-preview {
  min-width: 175px;
  padding: 0 28px;
  color: #ffffff;
  background: transparent;
  border: 3px solid #ffce00;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-preview:hover {
  color: #21145c;
  background: #ffce00;
  transform: translateY(-3px);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.22);
}

/* =========================
   YELLOW BUTTON ANIMATION
   Fast up-down bounce, then stays still
========================= */
@keyframes expoCtaBounce {
  0%,20%,50%,80%,100%{
      transform: translateY(0);
  }

  40%{
      transform: translateY(-10px);
  }

  60%{
      transform: translateY(-5px);
  }
}
.btn-yellow {
  min-width: 220px;
  padding: 0 28px;
  color: #111111;
  background: #ffca05;
  border: 2px solid #ffca05;

  /*
    Full cycle = 2.4 seconds
    First 12% (~0.29s) = fast up/down bounce
    Remaining 88% (~2.1s) = stays still
  */
  animation: expoCtaBounce 1.8s ease-in-out infinite;

  transition: all .3s ease;
}

.btn-register {
  min-width: 250px;
  animation-delay: 0s;
}



.btn-yellow{
    transition:all .3s ease;
}

.btn-yellow:hover{
    background:#ffffff;
    color:#21145c;
    border-color:#ffffff;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.25);
}
/* =========================
   MOBILE HAMBURGER BUTTON
========================= */
.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 45px;
  color: #ffffff;
  background: transparent;
  border: 2px solid #ffcc00;
  border-radius: 7px;
  font-size: 23px;
  cursor: pointer;
}

/* =========================
   DEMO CONTENT
========================= */
.demo-section {
  min-height: 500px;
  padding: 100px 8%;
  background: #f4f6fa;
}

.demo-section h1 {
  margin-bottom: 12px;
  color: #24145d;
  font-size: 45px;
}

.demo-section p {
  color: #555555;
  font-size: 18px;
}

/* =========================
   LAPTOP RESPONSIVE
========================= */
@media (max-width: 1550px) {
  .expo-navbar {
    padding: 0 22px;
    gap: 18px;
  }

  .expo-logo {
    width: 330px;
    min-width: 330px;
  }

  .expo-logo img {
    width: 225px;
  }

  .expo-menu {
    gap: 21px;
  }

  .menu-item > a {
    font-size: 16px;
  }

  .expo-actions {
    gap: 7px;
  }

  .expo-actions a{
    font-size:16px;
    font-weight:500;
}

  .btn-preview {
    min-width: 165px;
    padding: 0 18px;
  }

  .btn-yellow {
    min-width: 190px;
    padding: 0 18px;
  }

  .btn-register {
    min-width: 235px;
  }
}

/* =========================
   TABLET / MOBILE MENU
========================= */
@media (max-width: 1250px) {
  .expo-navbar {
    min-height: 88px;
  }

  .expo-logo {
    width: auto;
    min-width: auto;
    margin-right: auto;
  }

  .expo-logo img {
    width: 210px;
  }

  .mobile-menu-btn {
    display: block;
    margin-left: auto;
  }

  .expo-menu,
  .expo-actions {
    display: none;
  }

  /* accordion again on mobile - undo the desktop flex row */
  .menu-item {
    display: block;
  }

  .expo-menu.menu-open {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 25px;
    background: #24135c;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .expo-menu.menu-open .menu-item > a {
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 100%;
    margin: 0 0 8px;
    border-radius: 7px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-item:hover .dropdown-menu {
    display: none;
  }

  .menu-item.mobile-dropdown-open .dropdown-menu {
    display: block;
  }

  .expo-actions.actions-open {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 25px 24px;
    background: #24135c;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 650px) {
  .expo-navbar {
    min-height: 76px;
    padding: 0 15px;
  }

  .expo-logo img {
    width: 180px;
  }

  .expo-menu.menu-open {
    top: 76px;
    padding: 8px 18px;
  }

  .expo-actions.actions-open {
    padding: 14px 18px 22px;
  }

  .expo-actions.actions-open a {
    width: 100%;
    min-width: 100%;
    height: 48px;
    font-size: 15px;
  }

  .menu-item > a {
    font-size: 16px;
  }

  .demo-section {
    padding: 70px 25px;
  }

  .demo-section h1 {
    font-size: 32px;
  }
}

/* =========================
   ACCESSIBILITY
========================= */
@media (prefers-reduced-motion: reduce) {
  .btn-yellow {
    animation: none;
  }
}

/* =========================================================
   MOBILE HEADER FIX + CENTRE CTA BUTTON
   (lives in menu.css so EVERY page gets it, not just index)
========================================================= */

/* --- Tune the little centre button from here --- */
:root {
  --mcta-height: 36px;      /* button height            */
  --mcta-font: 12px;        /* text size                */
  --mcta-padding: 14px;     /* left/right inner spacing */
  --mcta-max: 165px;        /* max width                */
  --mcta-radius: 999px;     /* 999px = pill, 8px = box  */
  --mcta-bg: #ffcc00;
  --mcta-color: #1a1046;
}

/* Hidden on desktop - the full button row already exists there */
.mobile-cta {
  display: none;
}

/* ---------- TABLET (<=1250px) ---------- */
@media (max-width: 1250px) {
  /* header height = strip 48 + navbar 88 */
  body {
    padding-top: 138px;
  }

  .mobile-cta {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--mcta-height);
    max-width: var(--mcta-max);
    padding: 0 var(--mcta-padding);
    border-radius: var(--mcta-radius);
    background: var(--mcta-bg);
    color: var(--mcta-color);
    font-size: var(--mcta-font);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .mobile-cta:active {
    transform: scale(.96);
  }

  /* logo pushes right, burger pushes left -> CTA lands in the middle */
  .expo-logo {
    margin-right: auto;
  }

  .mobile-menu-btn {
    margin-left: auto;
  }
}

/* ---------- PHONE (<=650px) ---------- */
@media (max-width: 650px) {
  /* strip is 40px here, navbar 76px -> no white gap under the header */
  body {
    padding-top: 118px;
  }

  .expo-header {
    top: 40px;
  }

  .expo-navbar {
    gap: 10px;
  }

  .expo-logo img {
    width: 150px;
  }

  :root {
    --mcta-height: 34px;
    --mcta-font: 11px;
    --mcta-padding: 11px;
    --mcta-max: 140px;
  }
}

/* ---------- SMALL PHONE (<=380px) ---------- */
@media (max-width: 380px) {
  .expo-navbar {
    padding: 0 12px;
    gap: 8px;
  }

  .expo-logo img {
    width: 128px;
  }

  :root {
    --mcta-height: 32px;
    --mcta-font: 10px;
    --mcta-padding: 9px;
    --mcta-max: 120px;
  }

  .mobile-menu-btn {
    width: 42px;
    height: 40px;
    font-size: 19px;
  }
}

/* Menu open -> hide the CTA so the panel stays clean */
.expo-menu.menu-open ~ .mobile-cta,
.expo-actions.actions-open ~ .mobile-cta {
  visibility: hidden;
}

/* =========================================================
   FIXED RIGHT SIDE BUTTONS  -  visible on EVERY page
   (markup lives in menu.html, so it loads with the header)
========================================================= */

/* --- tune from here --- */
:root {
  --side-btn-width: 56px;
  --side-btn-radius: 18px;
  --side-reg-height: 200px;  /* Reduced from 240px */
  --side-reg-font: 16px;
  --side-reg-bg: #ffca05;
  --side-wa-height: 78px;
  --side-wa-icon: 34px;
  --side-wa-bg: #22b909;
  --side-gap: 14px;          /* space between the two buttons */
}

.side-register-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 9990;
  width: var(--side-btn-width);
  min-height: var(--side-reg-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  background: var(--side-reg-bg);
  border-radius: var(--side-btn-radius) 0 0 var(--side-btn-radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  text-decoration: none;
  transform: translateY(-50%);
  transition: width .25s ease, background .25s ease;
}

.side-register-btn span {
  font-size: var(--side-reg-font);
  font-weight: 700;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.side-register-btn:hover {
  width: calc(var(--side-btn-width) + 9px);
  background: #ffd51f;
  color: #111111;
}

.side-whatsapp-btn {
  position: fixed;
  top: calc(50% + (var(--side-reg-height) / 2) + var(--side-gap));
  right: 0;
  z-index: 9990;
  width: var(--side-btn-width);
  height: var(--side-wa-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--side-wa-bg);
  border-radius: var(--side-btn-radius) 0 0 var(--side-btn-radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
  font-size: var(--side-wa-icon);
  text-decoration: none;
  transition: width .25s ease, background .25s ease;
}

.side-whatsapp-btn:hover {
  width: calc(var(--side-btn-width) + 9px);
  background: #159d04;
  color: #ffffff;
}

/* ---------- TABLET ---------- */
@media (max-width: 1000px) {
  :root {
    --side-btn-width: 50px;
    --side-reg-height: 140px; /* Reduced from 205px */
    --side-reg-font: 14px;
    --side-wa-height: 66px;
    --side-wa-icon: 29px;
    --side-btn-radius: 14px;
  }
}
/* ---------- PHONE ---------- */
@media (max-width: 650px) {
  :root {
    --side-btn-width: 44px;
    --side-reg-height: 125px; /* Reduced from 175px */
    --side-reg-font: 12px;
    --side-wa-height: 56px;
    --side-wa-icon: 25px;
    --side-btn-radius: 12px;
    --side-gap: 10px;
  }
}

/* ---------- SHORT SCREENS / LANDSCAPE ---------- */
@media (max-height: 560px) {
  :root {
    --side-reg-height: 115px; /* Reduced from 150px */
    --side-reg-font: 11px;
    --side-wa-height: 46px;
    --side-wa-icon: 21px;
    --side-gap: 8px;
  }
}

/* Hide them while the mobile menu panel is open */
body.nav-open .side-register-btn,
body.nav-open .side-whatsapp-btn {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .side-register-btn,
  .side-whatsapp-btn {
    transition: none;
  }
}


/* =========================================================
   ENQUIRY FORMS - honeypot + status message
========================================================= */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.enquiry-msg {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.enquiry-msg.is-ok {
  color: #0d5c1e;
  background: #e4f8e8;
  border: 1px solid #9fdcaa;
}

.enquiry-msg.is-error {
  color: #8a1408;
  background: #fdeae8;
  border: 1px solid #f3b5ad;
}

form[data-enquiry] button[disabled] {
  opacity: .65;
  cursor: not-allowed;
}