/* ===========================
   GLOBAL RESET
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 1.5rem;
}

nav {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  width: clamp(50px, 6vw, 70px);
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: wheat;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #da8671;
  text-shadow: 0 6px 10px rgba(236, 100, 54, 0.6);
}

/* MENU BUTTON */
.menu-btn {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #fff;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.hero-title {
  max-width: 90%;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 600;
  text-shadow: 3px 3px 12px rgba(121, 254, 194, 0.7);
  transition: 0.3s ease;
}

.hero-title:hover {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(13px, 2vw, 18px);
  margin-top: 10px;
  opacity: 0.9;
}

/* ===========================
   LOGIN BUTTON
=========================== */
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-top: 25px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  background: rgba(181, 171, 171, 0.5);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px #ff2770;
  background: linear-gradient(45deg, #ff6b6b, #f1683a);
}

/* ===========================
   BACKGROUND VIDEO
=========================== */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ===========================
   FOOTER
=========================== */
footer {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  opacity: 0.8;
}

/* ===========================
   FLOATING ACTION BUTTON
=========================== */
.fab-container {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1000;
}

#fab-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #111;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.4s ease;
}

#fab-btn.active {
  transform: rotate(45deg) scale(1.1);
  background: #f1683a;
}

/* OPTIONS */
.fab-options {
  position: absolute;
  bottom: 50px;
  right: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fab-options.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ICON BUTTONS */
.fab-options a {
  width: 35px;
  height: 35px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.fab-options a:hover {
  background: #f1683a;
  transform: translateX(-6px);
}

.bx-plus{
  padding: 5px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    padding: 1rem;
    gap: 0.6rem;
    position: absolute;
    top: 65px;
    right: 10px;
    border-radius: 10px;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .login-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}