* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
}

html, body {
  overflow-x: hidden;
}

body {
  background-color: #ffffff;
  color: var(--tex-color);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 10px 5%;
  background-color: white;
  border-bottom: 1.5px solid black;
  flex-wrap: wrap;
  min-height: 60px; 
}

footer {
  background-color: #ffffff;
  color: #555;
  text-align: center;
  bottom: 0;
}

#logo {
  width: 250px; 
  height: auto;

}

.menu-wrapper {
   position: absolute;
  left: 50%;
  transform: translateX(-50%); 

}
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  z-index: 1000;
}

.menu li {
  margin: 0 20px;
}

.menu a {
  color: #333;
    font-size: 18px;
    font-weight: 700;
}

.menu a:hover {
  color: #555;
}

#wpp-icon {
  position: fixed;
  bottom: 30px; 
  right: 30px; 
  width: 50px; 
  height: 50px; 
  background: url('../img/wpp-icon.png') no-repeat center center;
  background-size: contain; 
  cursor: pointer;
  z-index: 1000; 
}

#wpp-icon:hover {
  transform: scale(1.1); 
}

@media (min-width: 769px) {
  .close-menu {
    display: none !important;
  }
}

@media (max-width: 768px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: white;
    border-bottom: 1.5px solid black;
    min-height: 60px;
  }
  
  .menu-wrapper {
    display: none; 
    position: fixed;
    top: 0;
    width: 100%;  
    height: 100%; 
    background-color: white; 
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .menu-wrapper.active {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
  }
   
  .menu {
    list-style: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  }
  
  .menu li {
    margin: 20px 0;
  }
  
  .menu a {
    font-size: 24px; 
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu a:hover {
    color: #555;
  }
  
  .close-menu {
    font-size: 36px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #333;
    display: none;
  }
  
  .menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle div {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .menu-wrapper.active ~ .menu-toggle {
    display: none;
  }
  }

@media (max-width: 480px) {
.menu {
    width: 100%; 
}

.menu li {
  margin: 10px 0; 
}

.menu a {
  font-size: 18px;
}

.menu-toggle div {
  width: 25px;
  height: 2px;
}
} 