/* ===== GLOBAL STYLES ===== */

:root {
  --tekky-blue: #0074ff;
  --bg: #000000;
  --fg: #e9eef7;
  --muted: #b6c2d3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: black;
  color: var(--fg);
  /*overflow-x: hidden;*/
}
#nav{
  height: 93px;
}
nav{
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 116, 255, 0.2);
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
}

header{
  padding-top: 56px;
}
header.no-space{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.logo img {
  height: 70px;
  width: 70px;
  mix-blend-mode: lighten;
  filter: brightness(1.2);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-family: 'Bebas Neue', sans-serif;
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  list-style: none;
}

.nav-links a, .legal-footer-links a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links a:hover, .nav-link:hover, .legal-footer-links a:hover {
  color: var(--tekky-blue);
  text-shadow: 0 0 8px var(--tekky-blue);
}

.nav-links .dropdown-menu {
  position: relative;
  z-index: 0;
}

.nav-links .nav-links-dropdown {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -30px);
  z-index: 1;
  padding: 20px 0 0;
  width: max-content;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease-out;
}

.nav-links .dropdown-menu:last-child .nav-links-dropdown {
  left: auto;
  right: 0;
  transform: translate(0, -30px);
}

.nav-links .dropdown-menu:hover .nav-links-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-links .dropdown-menu:last-child:hover .nav-links-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0);
}

.nav-links-dropdown ul {
  background: #000;
  border: 0 solid var(--tekky-blue);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 0 12px var(--tekky-blue);
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: start;
  width: 100%;
}

.nav-links-dropdown ul li a, .nav-link {
  word-break: keep-all;
  cursor: pointer;
}
.nav-links-dropdown ul li .disabled {
    color: var(--muted);
    cursor: not-allowed;
}

.nav-links .dropdown-menu .nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links .dropdown-menu .nav-dropdown-trigger svg {
  width: 16px;
}

.logo.logo-mobile {
  display: none;
}

.logo-desktop .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggler {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 12px rgba(0, 116, 255, 0.18);
  border-radius: 4px;
  width: 34px;
  height: 34px;
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid var(--tekky-blue);
}

.menu-toggler svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-toggler .menu-toggler-open {
  opacity: 1;
  transition: all .3s ease-in-out;
}

.menu-toggler.active .menu-toggler-open {
  opacity: 0;
}

.menu-toggler .menu-toggler-close {
  opacity: 0;
  transition: all .3s ease-in-out;
}

.menu-toggler.active .menu-toggler-close {
  opacity: 1;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px var(--tekky-blue), 0 0 10px var(--tekky-blue);
  /*animation: pulseGlow 3s ease-in-out infinite alternate;*/
}
.tagline{
  margin-top: 0.4rem;
  color: var(--tekky-blue);
  font-weight: 700;
  text-shadow: 0 0 10px var(--tekky-blue);
  /*animation: pulseGlow 3s ease-in-out infinite alternate;*/
}
.subtext {
  margin: 0.9rem auto 0.3rem;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.7;
  text-shadow: 0 0 7px white;
}
h2{
  text-shadow: 0 0 4px var(--tekky-blue);
  /*animation: lightPulseGlow 3s ease-in-out infinite alternate;*/
}

.glow-divider {
  width: 100%;
  max-width: 832px;
  height: 4px;
  margin: 2.5rem auto;
  background: linear-gradient(90deg, transparent, var(--tekky-blue), transparent);
  border-radius: 4px;
  box-shadow: 0 0 20px var(--tekky-blue);
}

footer {
  /*border-top: 1px solid rgba(0, 116, 255, 0.2);*/
  padding: 2rem 1rem;
  text-align: center;
  background: #000;
}

.social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0.6rem 0 0.3rem;
}
.social a {
  color: #dfe7ff;
  font-size: 1.4rem;
  transition: .25s
}
.social a:hover {
  color: var(--tekky-blue);
  /*text-shadow: 0 0 8px var(--tekky-blue);*/
}
.legal-footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 1.5rem 0;
}
.table-wrap{
  overflow-x: auto;
}
table{
  min-width: 700px;
}

.cta {
  display: inline-block;
  cursor: pointer;
  margin: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid var(--tekky-blue);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 0 12px var(--tekky-blue);
  transition: .25s;
  background: black;
  animation: buttonPulse 1s infinite alternate;
}
.cta:hover {
  background: var(--tekky-blue);
  transform: translateY(-2px);
}
.cta.focused:focus{
  background: var(--tekky-blue);
}
.social a:focus .fab{
  color: #dfe7ff !important;
}


@keyframes lightPulseGlow {
  0% {
    text-shadow: 0 0 12px var(--tekky-blue);
  }
  100% {
    text-shadow: 0 0 30px var(--tekky-blue);
  }
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 20px var(--tekky-blue), 0 0 5px var(--tekky-blue);
  }
  100% {
    text-shadow: 0 0 50px var(--tekky-blue) 0 0 10px var(--tekky-blue);
  }
}

@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 10px var(--tekky-blue);
  }
  100% {
    box-shadow: 0 0 25px var(--tekky-blue);
  }
}
@media (max-width:991px) {
  h1{
    text-shadow: 0 0 2px var(--tekky-blue);
  }
}
@media (max-width:768px) {
  header{
    padding-top: 36px;
  }
  h1{
    text-shadow: 0 0 8px var(--tekky-blue);
  }
  h2{
    text-shadow: 0 0 2px var(--tekky-blue);
  }
  .logo.logo-mobile {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #000;
    backdrop-filter: blur(10px);
  }

  .nav-links ul {
    align-items: start;
    flex-direction: column;
    padding: 20px 20px;
  }

  .nav-links .logo-desktop {
    display: none;
  }

  #nav{
    height: 74px;
  }
  nav {
    padding: 1.25rem;
    justify-content: space-between;
  }

  .menu-toggler {
    display: flex;
    margin-left: auto;
  }

  .nav-links .nav-links-dropdown {
    position: static;
    transform: none;
    display: none;
  }

  .nav-links .dropdown-menu.active .nav-links-dropdown {
    display: block;
    opacity: 1;
  }

  .nav-links .dropdown-menu:hover .nav-links-dropdown {
    position: static;
    transform: none;
  }
  .nav-links.active {
    display: block;
  }

  footer{
    padding: 2rem .75rem;
  }
  .legal-footer-links{
    gap: .75rem;
  }
  .legal-footer-links a{
    font-size: 12px;
  }
}

@media (max-width: 1150px) {
  .social a:focus .fab{
    color: #dfe7ff !important;
  }
  .social a:hover {
    color: #dfe7ff !important;
    text-shadow: none;
  }
  .cta.un-focused:hover{
    background: black;
    color: #fff;
    transform: translateY(0px);
  }
}


@media (min-width: 1440px) {
  #nav{
    height: 102px;
  }
  nav{
    padding: 0.2rem 1.25rem;
  }
  .logo img{
    width: 95px;
    height: 95px;
  }
  /*.nav-links{*/
  /*  font-size: 22px;*/
  /*}*/
  /*.nav-links ul{*/
  /*  gap: 1.5rem;*/
  /*}*/
}

.coming-soon-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s ease forwards;
}
.overlay-content {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 116, 255, 0.6);
  padding: 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 12px var(--tekky-blue);
  max-width: 420px;
  max-height: 80vh;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.overlay-content .cross-icon{
  position: absolute;
  top: 15px;
  right: 15px;
  fill: var(--fg);
  cursor: pointer;
  transition: all .1s ease-in;
}
.overlay-content .cross-icon:hover{
  transform: scale(1.3);
 }
.overlay-content.centered{
  margin: 0 auto;
}
.overlay-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--tekky-blue);
  font-size: 1.8rem;
  text-shadow: 0 0 7px var(--tekky-blue);
  margin-bottom: 1rem;
}
.overlay-content p {
  color: var(--fg);
  line-height: 1.6
}
.overlay-content .disclaimer{
  font-size: 14px;
}
.close-overlay {
  margin-top: 1.5rem;
  background: none;
  border: 2px solid var(--tekky-blue);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-family: 'Bebas Neue', sans-serif;
  cursor: pointer;
  box-shadow: 0 0 15px var(--tekky-blue);
  transition: 0.3s;
}

.close-overlay:hover {
  background: var(--tekky-blue);
}


input,
select {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 116, 255, 0.4);
  border-radius: 8px;
  color: var(--fg);
  font-family: 'Montserrat', sans-serif
}

label {
  display: block;
  text-align: left;
  margin-bottom: 0.4rem;
  color: var(--fg);
  font-weight: 600
}
input:focus,
select:focus {
  outline: none;
  border-color: var(--tekky-blue);
  box-shadow: 0 0 8px var(--tekky-blue)
}


#futureUpdatesForm, #rsvpForm{
  padding-top: 1.5rem;
}
#futureUpdatesForm input,
#rsvpForm input{
  padding: 0.6rem;
}
#futureUpdatesForm .close-overlay,
#rsvpForm .close-overlay{
  margin-top: .3rem;
}

ul.custom-list{
  margin: 0 auto;
  display: inline-block;
}
ul.custom-list li{
  text-align: left;
}
ul.custom-list.bottom-space{
  margin-bottom: 1rem;
}

.label-heading{
  text-align: left;
  margin-bottom: .8rem;
}
.checkbox-group{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.2rem;
}
.checkbox-group label{
  display: flex;
  gap: .5rem;
  font-size: 14px;
}
input[type="checkbox"]{
  width: auto;
}
/* hide footer mail */
#footer p a{ display: none; }


@media (max-width:768px) {
  header {
    padding-top: 50px;
  }
  .overlay-content{
    width: 95%;
    padding: 2rem 1.5rem;
  }
}
