/* Header and Navigation Styles */


.header {
  background-color: #1e1e1e00;
  padding: 20px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}


.logo img{
  display: inline-flex;
  max-width: fit-content;
  height: 5vh !important;
  width: auto;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  /* Add padding to increase touch area */
  min-width: 44px;
  /* Minimum width for touch targets */
  min-height: 44px;
  /* Minimum height for touch targets */
  align-items: center;
  justify-content: center;
}

/* Make the icon itself non-interactive so clicks go to the button */
.mobile-menu-btn i {
  pointer-events: none;
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 1024px) {
  .header {
    padding: 20px 60px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 20px 30px;
  }

  .nav {
    display: none;
    /* Hide navigation on small screens by default */
    position: absolute;
    top: 100%;
    left: 0;
    /*width: 70%;*/
    background-color: #1e1e1e;
    flex-direction: column;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  }

  .nav.active {
    display: flex;
    /* Only display when active class is applied */
  }

  .mobile-menu-btn {
    display: flex;
    /* Only show on small screens */
    z-index: 25;
    min-width: 5%;
  }
}


.nav {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .nav-item {
    margin: 10px 0;
    font-size: 18px;
    width: 100%;
  }
}

.nav-item {
  position: relative;
  color: #888;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #fff;
}

.nav-item.active {
  color: #fff;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ad0089;
  bottom: -10px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-item.active::after {
  width: 100%;
}

.nav-item:hover::after {
  width: 100%;
}

.message-btn {
  background-color: #ad0089;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.message-btn:hover {
  background-color: #00aca6;
}

.header-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ad0089;
}



/* CSS */
.vh-spacer-15 {
  height: 15vh;
  width: 100%;
  display: block;
  /* Optional: add background color for debugging */
  /* background-color: rgba(255, 0, 0, 0.1); */
}

.vh-spacer-5 {
  height: 5vh;
  width: 100%;
  display: block;
  /* Optional: add background color for debugging */
  /* background-color: rgba(255, 0, 0, 0.1); */
}

/* Hide spacer on mobile devices */
@media (max-width: 768px) {
  .vh-spacer-15 {
    display: none;
  }
}