/* 🔹 RESET BODY STYLES */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: Helvetica, sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* 🔹 LOGO STYLING */
.logo {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

/* 🔹 PUSH CONTENT BELOW NAVBAR */
.content {
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 🔹 CANVAS STYLES */
canvas {
  position: absolute;
  top: 0;
  left: 0;
}

/* 🔹 HEADER STYLING */
h1, h2 {
  margin: 0;
  text-align: center;
}

h1 {
  font-size: 15rem;
  font-family: 'Dark Witches', sans-serif;
}

h2 {
  font-size: 3rem;
}

/* 🔹 FORM CONTAINER */
.form-container {
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.form-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 500px;
  aspect-ratio: 1 / 1.5;
}

/* 🔹 RESPONSIVE STYLES */
@media (max-width: 768px) {
  h1 {
    font-size: 10rem;
  }

  h2 {
    font-size: 2rem;
  }

  .form-container {
    height: 70vh;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .form-container iframe {
    min-height: 300px;
  }
}

/* 🔹 RESET STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

/* 🔹 NAVIGATION BAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 10px 20px;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 🔹 LOGO */
.logo {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

/* 🔹 NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 🔹 HAMBURGER MENU ICON */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* 🔹 MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 10px;
    width: calc(100% - 40px);
  }

  .nav-links.show {
    display: flex;
  }
}