header {
  margin: 1rem;
  padding: 0.25rem;
  font-family: 'Poppins', sans-serif;
  background-color: var(--primary-color);
  font-size: 1rem;
  font-weight: 700;
  display: block;
  /* border: 1px solid red; */
 align-items: center;
 justify-content: center;
 height:max-content;
 text-align: center;

}

.container p {
  position: relative;
  text-align: center;
  /* border: 1px solid red; */
  font-size: 1.2em;
  font-weight: 700;
  color: var(--secondary-color); /* fix: add missing -- */
  left: 50%;
  width: max-content;
  /* Add these lines for vertical centering */
  transform: translate(-50%,50%);
}

.header-logo {
  width: 5rem;
  height: auto;
position: relative;
/* left: 50%; */
padding: 0;
/* align-self: center; */
 /* border: 1px solid red; */
 /* transform: translate(-50%,50%); */
}

/* Circle and Bento Menu */
.circle {
  width: 4em;
  height: 4em;
  background-color: #FF2171;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  right: 1em;
  position: fixed;
  bottom: 3rem;
 z-index: 100;

}
.bento-menu-container {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.bento-menu {
  width: 0.35em;
  height: 0.35em;
  background-color: #fff;
  border-radius: 50%;
}

/* Fullscreen Menu Overlay */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #7F7F7F;
  color: white;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.fullscreen-menu li {
  margin: 1em 0;
  font-size: 1.5em;
  font-family: 'Poppins', sans-serif;
}

.fullscreen-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.fullscreen-menu a:hover {
  color: #FF2171;
}
/* Close Button */
.close-button {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 3em;
  font-weight: 100;
  cursor: pointer;
  user-select: none;
}


/* Show menu when active */
.fullscreen-menu.active {
  display: flex;
}

/* MEDIA QUERIES */
/* Tablet & smaller (≤ 768px) */
@media (max-width: 768px) {
  .header-logo {
    width: 40px;
  }

  .container p {
    font-size: 1rem;
    
  
  }

  .circle {
    width: 4em;
    height: 4em;
  }

  .header-left,
  .header-right {
    width: 4em; /* match updated .circle size */
  }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .header-title {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-logo {
    width: 36px;
  }

  .circle {
    width: 3.5em;
    height: 3.5em;
  }

  .header-left,
  .header-right {
    width: 3.5em;
  }
}

/* Extra small phones (≤ 360px) */
@media (max-width: 360px) {
  .header-title {
    display: none; /* Optional: hide text if space is too tight */
  }
}
