/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
   padding: 15px 80px;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  z-index: 100;
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 180px;
}

.logo-img {
  width: 100%;
  height: auto;
  padding: 0 1rem;
}
.coming-soon-header{
  background-color: rgb(51, 185, 231);
    color: white;
    width: 47px;
    gap: 10px;
    border-radius: 6px;
    padding: 1px 0px 1px 2px;
    font-size: 7px;
    margin-left: -47px;
    margin-top: -19px;

}
.nav-menu ul {
  display: flex;
  gap: 40px;
  padding-top: 20px;
}
.nav-menu li:hover{
  text-decoration: underline;
  color: var(--primary);
}
.nav-menu li{
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 3%;
    gap: 10px;
    
}

.nav-menu a {
  
  font-weight: 500;
  transition: color 0.3s ease;
}



.auth-buttons {
  display: flex;
  gap: 1rem;
  height: 44px;
}

.btn-outline {
  width: 122;
  height: 52;
  padding: 7px;
  gap: 10px;
  border-width: 1px;
  border-radius: 8px;
  color: #4D006E;
  border-bottom: 2px solid #4D006E;
}

.btn-primary {
  width: 107;
  height: 52;
  gap: 10px;
  
  border-radius: 8px;
  background: #4D006E;
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 15px;
  
  letter-spacing: 0%;color: #FFFFFF;
}

a btn{
  width: 100px;
}
.mobile-auth-buttons{
  display: none;
}
/* Mobile menu toggle */
.menu-toggle {
  display: none;
  
  width: 30px;
  height: 21px;
  /* cursor: pointer; */
}
.menu-hamburger{
  /* display: none; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  position: relative;
}
.menu-toggle .burger{
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-menu .btn {
    border-bottom: 2px solid #4D006E;
}
@media (max-width: 1024px) {
  

  .nav-menu ul {
    gap: 16px;
  }
}
@media (min-width: 1032px) {
  .coming-soon-wrapper{
    margin-left: -35px;
  }
}
@media (max-width: 768px) {
   body.no-scroll {
    overflow: auto !important;
  }
  /* Header adjustments */
  .header {
    padding: 0.75rem 0;
  }
 
  .header .logo-img{
    text-align: left;
    flex-grow: 1;
  }
  .menu-toggle {
    position: absolute;
        right: 1rem; 
        top: 50%;
        transform: translateY(-50%);
    display: flex;
    z-index: 101;
    transition: all 0.3s ease;
  }

.mobile-auth-buttons{
  display: flex;
}
.mobile-auth-buttons a{
    border-bottom: 1px solid;
    }

  /* Transform hamburger to X when active */
  .menu-toggle.active .burger{
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
  }

  .menu-toggle.active .burger:nth-child(1){
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .menu-toggle.active .burger:nth-child(2){
    opacity: 0;
    display: none;
  }
  .menu-toggle.active .burger:nth-child(3){
    transform: translate(-50%, -50%) rotate(45deg);
  }


  /* Improved mobile navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 40px;
    transition: right 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-menu a {
    display: block;
    padding: 8px 0;
    width: 60%;
    border-bottom: 1px ;
    margin: 5px;
  }

  /* Auth buttons in mobile menu */
  

  .auth-buttons {
    display: none; 
    flex-wrap: nowrap; 
    justify-content: center; 
    gap: 0.5rem; 
  }
  
  .auth-buttons .btn {
    width: auto; 
    min-width: 100px; 
    text-align: center;
  }
  

  /* Add overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .menu-overlay.active {
    display: block;
  }
}  
@media (max-width: 480px) {
  .header-content {
    padding: 0 10px;
  }

  /* .logo {
    max-width: 120px;
  } */

  .nav-menu {
    width: 85%;
  }

  .auth-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 14px;

    
  }
  
}  

@media (max-width: 1110px) {
  /* Header adjustments */
  .header {
   padding: 0.75rem 0;
 }
 .container, .football-fan {
   /* max-width: 95%; */
   padding-left: 0;
   padding-right: 0;
 }
 .header .logo-img{
   text-align: left;
   flex-grow: 1;
 }
 .menu-toggle {
   position: absolute;
       right: 1rem; 
       top: 50%;
       transform: translateY(-50%);
   display: flex;
   z-index: 101;
   transition: all 0.3s ease;
 }
 
 .mobile-auth-buttons{
 display: flex;
 }
 .mobile-auth-buttons a{
     border-bottom: 1px solid purple;
     }
 
 /* Transform hamburger to X when active */
 .menu-toggle.active .burger{
   position: absolute;
   top: 50%;
   left: 50%;
   transform-origin: center;
 }
 
 .menu-toggle.active .burger:nth-child(1){
   transform: translate(-50%, -50%) rotate(-45deg);
 }
 .menu-toggle.active .burger:nth-child(2){
   opacity: 0;
   display: none;
 }
 .menu-toggle.active .burger:nth-child(3){
   transform: translate(-50%, -50%) rotate(45deg);
 }
 
 
 .nav-menu {
   position: fixed;
   top: 0;
   right: -100%;
   width: 80%;
   max-width: 300px;
   height: 100vh;
   background: white;
   box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
   padding: 80px 20px 40px;
   transition: right 0.3s ease;
   z-index: 100;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   overflow-y: auto;
 }
 
 .nav-menu.active {
   right: 0;
   display: flex;
 }
 
 .nav-menu ul {
   flex-direction: column;
   width: 100%;
   padding: 0;
 }
 
 .nav-menu li {
   width: 100%;
   margin-bottom: 10px;
 }
 
 .nav-menu a {
   display: block;
   padding: 8px 0;
   width: 60%;
   border-bottom: 1px ;
   margin: 5px;
 }
 
 /* Auth buttons in mobile menu */
 
 
 .auth-buttons {
   display: none; 
   flex-wrap: nowrap; 
   justify-content: center; 
   gap: 0.5rem; 
 }
 
 .auth-buttons .btn {
   width: auto; 
   min-width: 100px; 
   text-align: center;
 }
 
 
 /* Add overlay when menu is open */
 .menu-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 99;
 }
 
 .menu-overlay.active {
   display: block;
 }
 .coming-soon-header{
  width: 19%;
 margin-left: 4px;
  margin-top: -77px;
    
 }
 }
 
.dropdown {
  position: relative;
}

.dropdown-toggle .dropdown-icon { 
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover .dropdown-icon,
.dropdown-menu.dropdown-open + .dropdown-toggle .dropdown-icon {
  transform: rotate(180deg);
}


.dropdown-menu {
  display: none; 
  position: absolute;
  top: 100%; 
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 200px;
  z-index: 1000;
  padding: 0.5rem 0;
  flex-direction: column; 
  opacity: 0; 
  transform: translateY(-10px); 
  transition: opacity 0.3s ease, transform 0.3s ease; 
  list-style: none; 
  margin: 0;
}

.dropdown-menu.dropdown-open {
  display: flex;
  opacity: 1; 
  transform: translateY(0); 
}

.dropdown-menu li {
 
   margin: 0; 
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 0.75rem 1.5rem; 
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}



.dropdown-menu li::marker {
  content: none;
}