/* =================== GLOBAL RESET =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', sans-serif;
}

body {
  background-color: #4b0082;
  color: #4b0082;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.2;
}
/* =================== NAVBAR =================== */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(239, 235, 243, 0.9);
  padding: 0 50px;
  z-index: 1000;
  overflow: hidden;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: -50px;
}

.navbar .logo img {
  height: 200px;
  /* margin-right: 0; */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 30px;
}

.nav-links li {
  margin: 0 30px;
}

.nav-links a {
  color: rgb(187, 0, 255);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #4b0082;
}

/* =================== HAMBURGER MENU =================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  /* position: relative; */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: rgb(187, 0, 255);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
  flex: 1;
  padding: 150px 20px;
  max-width: 1200px;
  width: 100%;
}