
.drop-down-arrow{
  vertical-align: middle;
  padding: 0;
  margin: 0;
 }

.x-btn{
  font-size: 2.5rem;
  font-weight: 400;
}

Header {
  height: min(10dvh, 100px, 8vmax);
/* Larger height to make it more prominent */
  max-width: 2536px;

  background-color: rgba(2, 2, 2, 0.5); /* Light color with 30% opacity */
  backdrop-filter: blur(10px); /* Apply the blur effect */
  -webkit-backdrop-filter: blur(10px); /* Ensure compatibility with WebKit browsers */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for depth */
}

.head-image{ 
  width: 100%;
  min-width: 250px;
  max-width: 100%;   
  height: auto; 
}




.left-header{
  max-width: 500px;
}

.list-items-header{
 max-width: 800px;
 min-width: 650px;
 justify-content: space-evenly;
}

.listed-nav-links{
 font-weight: 100;
 font-size: var(--fs-00);
 text-transform: uppercase;
 letter-spacing: var(--ls-100);
 z-index: 99999;
}
 
.cta-header-verticle{
 display: none;
}
.mobile-nav-toggle{
 display: none;
}
#hamburger-menu{
 color: white;
 border: none;
 z-index: 999999999999;
}
.hamburger-menu{
}


/* Styling for the hamburger icon */
.mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.line {
  width: 26px;
  height: 2px;
  background-color: white; /* Adjust color as needed */
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  border-radius: 2px; /* Optional: slight rounding to smooth the lines */
}

/* When the menu is open (X) */
.open .line1 {
  transform: rotate(45deg) translate(6px, 5px);
}

.open .line2 {
  opacity: 0; /* Hide the middle line */
}

.open .line3 {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Ensure perfect centering of the lines when transformed */
.line1, .line3 {
  position: relative;
  transform-origin: center; /* Ensures rotation around the center point */
}










#navbar {
  background-color:var(); /* Black background color */
  position: relative; /* Make it stick/fixed */
  top: 0; /* Stay on top */
  width: 100%; /* Full width */
  transition: top 0.4s; /* Transition effect when sliding down (and up) */
  z-index: 999;
 }



/* The container <div> - needed to position the dropdown content */
.dropdown{
  color: white;
  background-color:;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  z-index: 1; 
  display: none;
  min-width: 160px;
  position: absolute;
  padding: 1.9em 0 1em;
  background-color: red;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}


/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: var();}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: var();}



/* General styles */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
  background-color: black;
  color: white;
}

.dropdown-content {
  display: none; /* Initially hidden */
  position: absolute;
  /* top: 100%; */
  left: 0;
  background-color: black; /* Black background */
  min-width: 160px;
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: white; /* White text for contrast */
  transition: box-shadow 0.3s ease, color 0.3s ease, padding-left 0.3s ease; /* Smooth transition for padding */
}

/* Hover glow effect (left side only) */
.dropdown-content a:hover {
  box-shadow: -10px 0 15px -5px goldenrod; /* Left side glow */
  color: goldenrod; /* Change text color to goldenrod */
  padding-left: 20px; /* Add extra left padding to give a selected style */
}

/* Hover for desktop */
@media (min-width: 64rem) {
  .dropdown:hover .dropdown-content {
    display: block; /* Show dropdown on hover */
  }
}

/* Mobile styles */
@media (max-width: 64rem) {
  .dropdown-content {
    display: block; /* Always show dropdown content on mobile */
    position: static; /* Remove absolute positioning for mobile */
    background-color: black; /* Black background */
    box-shadow: none;
  }

  .dropbtn {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: bold;
  }

  .drop-down-arrow {
    display: none; /* Hide the arrow on mobile */
  }
}

















 
 /* Style the navbar links */
   /* 2xl */
@media (max-width: 1536px) {
  .list-items-header{
    max-width: 650px;
    min-width: 600px;
    justify-content: space-evenly;;
   } 
 }
 
 /* xl */
 @media (max-width: 1280px){ 
 }


@media (max-width: 64rem) { 
 .cta-header-horizontol{
  display: none;
}

 .cta-header-verticle{
  display: block;
  margin: 1.5em auto;

}

 .active{
  font-size: var(--fs-600) ;
  transition: 300ms ease-in-out;
}

.mobile-nav-toggle {
 right: -25%;
 display:block;
 width: 1.5rem;
 z-index: 999;
 position: relative;
 float: right;
 background-color: transparent;
 padding-right: 2em;
}

 .primary-nav {
   gap: 1.5em;
   height:100vmax;
   padding-top: min(10em, 20vh);
   padding-left: min(3em, 45px);
   padding-right: min(3em, 45px);
   z-index: 999;
   min-width: 100%;
   inset: 0 0 0 0;
   position: fixed;
   justify-content: start;
   align-items: flex-start;
   flex-direction: column;
   transform: translateX(200%);
   transition: 350ms ease-in-out;
   backdrop-filter: blur(.7rem);
   
 }

 .primary-nav[data-visible="true"] {
  transform: translateX(0);
}

.listed-nav-links{
  font-size: var(--fs-200);
  font-weight: 400;
}
.dropbtn{
  margin: 0 auto;
  text-align: center;
}
.drop-down-arrow{
  display: none;
}
.dropdown-content {
  display: block;
  position: relative;
  padding: 1em 0 0;
  background-color: transparent;
  box-shadow: none;
}

.small-nav-links{
  font-size: var(--fs-100);
}

#navbar {
  position: relative; /* Make it stick/fixed */
  top: 0; /* Stay on top */
 }
 
  /* Apply blur if supported */
  @supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .primary-nav {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* For Safari */
      background-color: rgba(45, 45, 45, 0.7); /* Adjust background for blur */
    }
  }
}
   



@media (max-width: 475px){
  Header{
    height: min(90px, 12dvh);
  }
  #navbar{
  background-color: black;
  }
  .left-header{
   flex: 4;
  }
}