/* Import fonts and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Video background */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  background: rgba(0, 0, 0, 0);
}
.nav-left {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
}
.nav-right {
  display: flex;
  gap: 20px;
}
.nav-right a {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-right a:hover {
  color: #cccccc;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: right 0.4s ease;
}
.drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80%;
  justify-content: space-evenly;
}
.drawer-menu a {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 500;
}

/* Toggle Drawer Open */
body.drawer-open .drawer {
  right: 0;
}

/* Content */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;
  text-align: center;
  color: white;
  z-index: 10;
}

.content h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.3;
  text-align: center;
  width: 100%;
  max-width: 90vw; /* Allow full width on small screens */
  max-width: 1000px; /* Allow wider title on desktop */
  margin: 0 auto 20px auto;
  word-break: break-word;
}

.content p {
  font-size: clamp(1rem, 3vw, 1.5rem);
  max-width: 90%;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  background: #ffffff;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}
.btn:hover {
  background: #f0f0f0;
}
.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .nav-left {
    font-size: 1.2rem;
  }

  .drawer-menu a {
    font-size: 1.2rem;
  }
}
