@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');


@font-face {
    font-family: PP Neue Montreal Mono;
    src: url(https://cdn.prod.website-files.com/68ad8a274502a69dfd5cd0aa/68ad8a274502a69dfd5cd0b0_PPNeueMontrealMono-Book.woff2)format("woff2"),url(https://cdn.prod.website-files.com/68ad8a274502a69dfd5cd0aa/68ad8a274502a69dfd5cd0b8_PPNeueMontrealMono-Book.woff)format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

 
.black {
  color: #837c7c;
}



.img-title {
    margin-top: 70px;
    width: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  font-size: 15px;
  letter-spacing: 2px;
  z-index: 5000;
  padding: 0 40px;
  
  
}

.mega-title {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  margin: 0;
  padding: 0 2vw; /* optional small side padding */
  font-family: 'Geist', sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 12vw, 200px);
  margin-top: 70px;
}

.mega-title span {
    background: linear-gradient(to bottom, #D62828, #FF9700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* LEFT / RIGHT */
.nav-left,
.nav-right {
  display: flex;
  gap: 40px;
  flex: 1;
}


 .lang-toggle{
    width: 73px;
    height: 30px;
    background: #D2D2D2;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    position: relative;
    padding: 6px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* labels */
.lang-toggle .label{
  font-family: 'PP Neue Montreal Mono';
    position: absolute;
    font-weight: 700;
    font-size: 15px;
    color: #242424;
    z-index: 1;
    pointer-events: none;
}

.lang-toggle .label.left{
  left: 10px;
}

.lang-toggle .label.right{
  right: 10px;
}

/* knob */
.lang-toggle .knob{
  width: 26px;
    height: 26px;
    background: #242424;
    border-radius: 50%;
    position: absolute;
    left: 2px;
    transition: transform .25s ease;
}

/* EN active */
.lang-toggle.active .knob{
  transform: translateX(43px);
}

/* CENTER LOGO */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logoimg {
  height: auto;
}

/* RIGHT ALIGNMENT */
.nav-right {
  justify-content: flex-end;
}

 
 .menu-icon {
  text-align: center;
} 
 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 

 


.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;                 /* full screen like a real menu */
  padding-top: 90px;             /* space under your fixed navbar */
  background: #242424;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;

  transform: translateY(-100%);  /* hidden above */
  transition: transform .45s ease;
  z-index: 4000;
}

.mobile-menu.active{
  transform: translateY(0);
}

.mobile-footer {
    display: flex;
    position: absolute;
    bottom: 0;
    flex-direction: column;
    width: 100%;
    gap: 7px;
    color: #837c7c;
    align-content: center;
    align-items: flex-end;
    padding-bottom: 17px;
    padding-top: 20px;
    padding-right: 10px;
}

.mobile-footer a {
  color: #837c7c !important;
  font-size: 1.3rem !important;
}

.mobile-menu a {
    font-family: 'Geist';
  font-size: 3.5rem;
  font-weight: 700;
  color: #D2D2D2;
  text-decoration: none;
  text-transform: uppercase;
  padding-left: 12px;
}

.mobile-menu a i{
      margin-right: 10px;
}
 
 
 
 /* start hidden */
.mobile-menu > a,
.mobile-menu .mobile-footer > a {
  opacity: 0;
  transform: translateY(-16px);
}

/* when opened -> animate in */
.mobile-menu.active > a,
.mobile-menu.active .mobile-footer > a {
  animation: menuLine .45s ease forwards;
}

/* delays per link */
.mobile-menu.active > a:nth-of-type(1){ animation-delay: .10s; }
.mobile-menu.active > a:nth-of-type(2){ animation-delay: .20s; }
.mobile-menu.active > a:nth-of-type(3){ animation-delay: .30s; }
.mobile-menu.active > a:nth-of-type(4){ animation-delay: .40s; }
.mobile-menu.active > a:nth-of-type(5){ animation-delay: .50s; }
.mobile-menu.active > a:nth-of-type(6){ animation-delay: .60s; }
.mobile-menu.active > a:nth-of-type(7){ animation-delay: .70s; }

.mobile-menu.active .mobile-footer > a:nth-of-type(1){ animation-delay: .80s; }
.mobile-menu.active .mobile-footer > a:nth-of-type(2){ animation-delay: .90s; }
.mobile-menu.active .mobile-footer > a:nth-of-type(3){ animation-delay: 1s; }
.mobile-menu.active .mobile-footer > a:nth-of-type(4){ animation-delay: 1.1s; }

@keyframes menuLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.mobile-menu > a,
.mobile-menu .mobile-footer > a {
  animation: none;
}

.img-com {
    visibility: visible;
    width: 84%;
    object-fit: cover;
    height: 500px;
}


@media (prefers-reduced-motion: reduce) {
  .mobile-menu > a,
  .mobile-menu .mobile-footer > a {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}




nav a {
  font-family: "PP Neue Montreal Mono";
    position: relative;
    font-size: 1.1em;
    font-weight: bolder;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    padding: 7px 20px;
    transition: .5s;
}
 


nav a.active {
  color: #D62828;
}

.nav-swap.active {
    
  color: #D62828;
    
}

.site-mark {
    font-family: 'Geist';
    font-weight: 300;
}
 
/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}




.reveal-title {
  opacity: 1;
}


.description-com {
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
}


@media (max-width: 768px) {
  .mega-title {
    font-size: 32vw;
    padding-left: 4vw;
  }
}


.hero1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO BACKGROUND */
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* DEZOOM */
  z-index: 1;
  background-color: black;
}


/* VIDEO BACKGROUND */
.hero1 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* DEZOOM */
  z-index: 1;
  background-color: black;
}
 
 

/* FOOTER 
footer {
  position: fixed;    
  width: 100%;
  display: flex;
  bottom: 0;
  justify-content: space-between;
  align-items: center; 
  padding: 10px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;     
}*/

footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #242424;
  padding: 20px 40px;
  font-size: 12px;
  letter-spacing: 2px;
}


.logo {
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
}

/* KEEP YOUR EXISTING FOOTER CSS */
.logo.social-icons {
  display: flex;
  gap: 38px;
  align-items: center;
}

.logo.social-icons a {
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
}

.logo.social-icons a:hover {
  color: red;
  transform: scale(1.15);
}


.submit-container {
  height: 100vh;
  width: 100%;
  /* flex: 1; */
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  /* margin-top: 10%; */
  align-content: center;
  align-items: center;
  flex-direction: column;
}



/* FORM CONTAINER */
        .container {
            flex: 1;
            display: flex;
            justify-content: center;
            padding: 40px 20px;
            width: 100%;
            align-items: center;
        }

        .form-box {
            width: 100%; 
        }

        .field {
            margin-bottom: 25px;
        }

        .field label {
            display: block;
            margin-bottom: 8px;
            font-size: 13px;
            letter-spacing: 1px;
        }

        .field input, .field textarea {
            width: 100%;
            padding: 14px 16px;
            background: transparent;
            border: 1px solid #555;
            border-radius: 8px;
            color: #fff;
            outline: none;
        }

        .field input:focus, .field textarea:focus {
            border-color: #b30000;
        }

         

        /* BUTTON */
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: white;
            border: none;
            border-radius: 25px;
            color: #242424;
            font-size: 16px;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-family: PP Neue Montreal Mono;
            font-weight: 700;
        }

        
 
/* ===== NAV TEXT SLIDE SWAP (FINAL & FIXED) ===== */
.nav-swap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* this gives width & height */
.nav-swap .text-wrap {
  position: relative;
  display: inline-block;
}

/* shared text style */
.nav-swap .text {
  display: block;
  white-space: nowrap;
  transition: transform 0.20s ease, opacity 0.25s ease;
}

/* initial state */
.nav-swap .text-top {
  transform: translateY(0);
  opacity: 1;
}

.nav-swap .text-bottom {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

/* hover animation */
.nav-swap:hover .text-top {
  transform: translateY(-100%);
  opacity: 0;
}

.nav-swap:hover .text-bottom {
    color: #D62828;
  transform: translateY(0);
  opacity: 1;
}

/* hover color */



 


/* Gallery */ 
.gallery {
  width: 99%;
  height: 100vh;

  display: grid;              /* always visible for animation */
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  overflow: hidden;
 
  visibility: visible; 
}

 

/* Columns */
.column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation-duration: 350s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Auto movement */
.up {
  animation-name: moveUp;
}

.down {
  animation-name: moveDown;
}



/* Images */
.column img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: auto;
}

/* Hover zoom */
.column img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes moveUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

@keyframes moveDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
 

/*
html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;   
}*/

html, body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: #0e0e0e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  background: #242424;
  color: #fff; 
}

 /* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 4500;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
  animation: zoomIn 0.3s ease;
  z-index: 2;
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 3;
}

/* NAVIGATION ARROWS */
.lightbox .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
  z-index: 3;
  padding: 10px 16px; 
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox {
  touch-action: pan-y; /* allow vertical, block horizontal */
}

.lightbox .nav-arrow.left {
  left: 30px;
}

.lightbox .nav-arrow.right {
  right: 30px;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .lightbox .nav-arrow {
    font-size: 42px;
    padding: 8px 12px;
  }
  
  

  .lightbox .nav-arrow.left {
    left: 10px;
  }

  .lightbox .nav-arrow.right {
    right: 10px;
  }

  .lightbox .close {
    font-size: 32px;
    top: 15px;
    right: 20px;
  }
  
  .mobile-menu a {
      font-size: 1.8rem;
  }
  
  .hamburger {
        position: relative !important;
        right: 0 !important;
            transform: translateX(0%)  !important;
  }
}

/* Zoom animation */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}



@media (max-width: 768px) {
  .events {
    display: grid;
    grid-template-columns: 1fr !important; /* single column on mobile */
    padding: 60px 20px !important;
    row-gap: 140px !important;
    margin-top: 40px !important;
  }

  .event-card {
    max-width: 100%;
  }

  .event-card h2 {
    font-size: 18px;
  }
  
    

  .event-card .date {
    font-size: 12px;
  }

  .event-card .btn {
    padding: 12px 30px;
    font-size: 12px;
  }
}

.hamburger{
    cursor: pointer;
    display: block;
  width: 28px;
  height: 20px;
  position: absolute;
  right: 1%;
  transform: translateX(-110%);
  
 
    }


.hamburger .line{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white; 
  transition: all 0.35s ease;
}

/* line positions */
.hamburger .line:nth-child(1){
  top: 0;
}
.hamburger .line:nth-child(2){
  top: 9px;
}
.hamburger .line:nth-child(3){
  bottom: 0;
}

/* ACTIVE STATE → X */
.hamburger.active .line:nth-child(1){
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active .line:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .line:nth-child(3){
  transform: rotate(-45deg);
  bottom: 9px;
}

.loadvid {
        width: 150%;
}


/* MOBILE NAVBAR HIDE MENU */
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none; /* hide menu on mobile */
  }
  
  .hamburger{
    cursor: pointer;
    display: block;
  width: 28px;
  height: 20px;
  position: relative;
 
    }


.hamburger .line{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white; 
  transition: all 0.35s ease;
}

.container  {
    
    flex-direction: column;
}

.img-com {
    visibility: hidden;
    display: none;
}

/* line positions */
.hamburger .line:nth-child(1){
  top: 0;
}
.hamburger .line:nth-child(2){
  top: 9px;
}
.hamburger .line:nth-child(3){
  bottom: 0;
}

/* ACTIVE STATE → X */
.hamburger.active .line:nth-child(1){
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active .line:nth-child(2){
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .line:nth-child(3){
  transform: rotate(-45deg);
  bottom: 9px;
}
  
  nav {
    padding: 0px 24px;
    justify-content: flex-end;
  }

  /* optional: show hamburger */
  .hamburger1 {
    display: block;
    font-size: 28px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
 
  footer {
    row-gap: 12px;
        flex-direction: column;
        
  }
    
    
.loadvid {
     
  width: 80%;
}

}
/* ===============================
   PAGE LOADER (ELECTRIC LOGO)
================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* above everything */
  transition: opacity 2s ease, visibility 2s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Loader container */
.electric-spin {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.electric-spin img {
  width: 90%;
  animation: glitch 1.5s infinite;
}



/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Optional glitch fallback */
@keyframes glitch {
  0% { transform: none; }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, 0); }
  80% { transform: translate(1px, 0); }
  100% { transform: none; }
}

.disabled {
  pointer-events: none; /* disables clicking */
  opacity: 0.5;         /* visually shows disabled */
  cursor: default;
  text-decoration: none;
  
}

.form-box h3 {
    font-family: Geist;
}

.field label {
    font-family: Geist;
}

.field input, .field textarea {
    font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
    font-size: 16px;
}

.events { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-items: center;
    row-gap: 80px;
    padding: 80px 40px; 
    font-family: 'Courier New', monospace;
    width: 100%;
    margin-top: 60px;
}

/* Initial hidden state */
.event-card {
    text-align: center;
    max-width: 350px;
    height: auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.event-card.show {
    opacity: 1;
    transform: translateY(0);
}



.event-card img {
    width: 100%;
    border-radius: 10px;
}

.event-card h2 {
    font-family: Geist;
    text-transform: uppercase;
    margin-top: 25px;
    font-size: 22px;
    color: white;
}

.event-card .date {
    font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
    margin: 12px 0 25px;
    font-size: 14px;
    color: white;
}

.event-card .btn {
  
    font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
  color: #fff;
  background: #D62828;
  border-radius: 30px;
  padding: 14px 45px;
  font-size: 14px;
  font-weight: bolder;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.event-card button {
    background: #8b1d18;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card button:hover {
    background: #5f120f;
    transform: translateY(-2px);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 	transparent;
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
    display: flex;
    background: #36454F;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: popIn 0.3s ease;
    flex-direction: column;
    align-items: center;
}

#closePopup {
    cursor: pointer;
}

.popup button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .electric-spin { 
      
        width: 180px !important;
        height: 180px !important;
    }    
    
    .electric-spin img { 
        width: 79% !important;
        height: auto !important;
    }
}
    
    
    
    .nl-footer{ 
      position: relative;
      z-index: 2;
      background: #f6f6f6;
      width:100%; 
    }

  /* ===== TOP BAR ===== */
  .nl-bar{
    background:#f6f6f6;
    padding:26px 18px;
  }
  .nl-bar-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
  }

  .nl-text h2{
      font-family: 'Geist';
    margin:0 0 6px;
    font-size:28px;
    font-weight:700;
    color:#141414;
    letter-spacing:.2px;
  }
  .nl-text p{
      font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
    margin:0;
    color:#777;
    max-width:560px;
    line-height:1.45;
    font-size:13px;
  }

  .nl-form{
    display: flex;
    align-items:center;
    gap:0;
    background: #1414141a;;
    border-radius:999px;
    padding:6px;
    min-width:420px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
  }
  .nl-form input{
      font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
    border:0;
    background: transparent;
    outline:0;
    padding:12px 14px;
    width:100%;
    font-size:13px;
    border-radius:999px;
  }
  .nl-form button{
      font-family: 'PP Neue Montreal Mono';
    text-transform: uppercase;
    border:0;
    cursor:pointer;
    padding:12px 18px;
    border-radius:999px;
    background: white;
    color:#242424;
    font-weight:700;
    font-size:13px;
    white-space:nowrap;
  }

   

  /* ===== Responsive ===== */
  @media (max-width: 900px){
    .nl-bar-inner{ flex-direction:column; align-items:stretch; }
    .nl-form{ min-width:unset; width:100%; }
    .footer-inner{
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 520px){
    .footer-inner{ grid-template-columns: 1fr; }
    .mini-form{ width:100%; max-width:320px; }
  }