/* ===== Google Font Import - Poppins ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: all 0.4s ease;
}

/* ===== Colours ===== */
:root {
  --nav-color: #ffffff;
  --text-color: #193951;
}

/* === Default (home) === */
body.home-page {
  --nav-color: #ffffff;
  --text-color: #193951;
}

/* === Tickets page === */
body.tickets-page,
body.contacts-page,
body.media-page {
  --nav-color: #193951;
  --text-color: #ffffff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 90px;
  width: 100%;
  background-color: var(--nav-color);
  z-index: 100;
}

nav .nav-bar {
  position: relative;
  height: 100%;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
  width: 100%;
}

.nav-bar .nav-links li {
  list-style: none;
}

.nav-links li a {
  position: relative;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #FFA134;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links li:hover a::before {
  opacity: 1;
}

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



/* ===== Responsive Menu ===== */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--text-color);
  }
  
  @media screen and (max-width: 768px) {
    .menu-toggle {
      display: block;
      z-index: 101;
    }
    
    .menu {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 80%;
      max-width: 300px;
      background-color: var(--nav-color);
      padding: 90px 30px 0;
      transition: right 0.3s ease;
      z-index: 100;
    }
    
    .menu.active {
      right: 0;
    }
    
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 30px;
    }
    
    .nav-links li a {
      font-size: 18px;
    }
    
    /* Dark overlay when menu is open */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }
  }