/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  position: relative;
  overflow-x: hidden;
}

/* Background Video */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: black;
  z-index: -2;
}

video.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

/* Navbar Styling */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  width: 120px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: gold;
}

/* Buttons */
.nav-buttons .signup-btn {
  /* margin-left: 10px; */
  padding: 8px 14px;
  border: none;
  border-radius: 20px;
  background-color: gold;
  color: black;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-buttons .signup-btn:hover {
  background-color: white;
  color: black;
}

.nav-buttons .signup-btn a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.account-dropdown {
  position: absolute;
  top: 80px;
  right: 10px;
  /* left: 20; */
  /* right: ; */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 15px;
  width: 180px;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
  /* text-align: center; center content */
}

.fa-user{
  color: gold;
  cursor: pointer;
}

/* Username Text */
.account-dropdown p {
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

/* Logout Button */
#logout-btn{
  color: #fff;
  background-color: green;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#logout-btn:hover {
  background-color: darkgreen;
}




/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 10%;
  min-height: 90vh;
  overflow: hidden;
}

/* Background Video inside Hero */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

/* Hero Content Styling */
.hero-content {
  max-width: 50%;
  z-index: 1;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  color: gold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-btn {
  padding: 12px 25px;
  background-color: gold;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: white;
  color: black;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .navbar ul {
    display: none;
  }
}
