/* ----------------------------
   MENU + HEADER STYLES
----------------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: transparent;
}

.logo img {
  display: block;
  max-width: 220px;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }

  .menu-nav ul li a {
    font-size: 18px;
  }
}


/* ============= MENU TOGGLE ============= */
.menu-toggle {
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.4s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ============= OVERLAY BACKGROUND ============= */
.menu-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease;
  z-index: 1001;
  overflow: hidden;
}
.menu-overlay.active {
  width: 200vmax;
  height: 200vmax;
}

/* ============= MENU NAVIGATION ============= */
.menu-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}
.menu-overlay.active .menu-nav {
  opacity: 1;
}
.menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-nav a {
  display: inline-block;
  font-size: 26px;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  transition: color 0.3s, transform 0.3s;
  text-transform: uppercase;
  font-weight: 200;
}
.menu-nav a:hover {
  color: #9dc4d2;
  transform: scale(1.1);
}

.menu-toggle {
  font-size: 2rem;
  cursor: pointer;
}

.nav {
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 6;
  transition: color 0.3s;
  margin-top: -10px;
}

.nav:hover {
  color: #9dc4d2;
}


  @media (min-width: 1300px) {
.video-container video {
  transform: translate(-50%, -50%) scale(1.4);
  position: absolute;
  top: 50%;
  left: 50%;
}

}