
header {
    margin:0px;
    position: fixed;
    width: 100vw;
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ece6e6;
    border-bottom: 1px solid #333;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
      z-index: 1000;

}

.container {
  text-align: center;
    padding-top  : 10vh;
  font-family: 'Poppins', sans-serif;
  background: #ece6e6;
  color: #cb9c9c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  height: inherit1;
  flex-direction: column;
  margin-bottom: 0px;
}

.container_auto {
  text-align: center;
    padding-top  : 10vh;
  font-family: 'Poppins', sans-serif;
  background: #ece6e6;
  color: #cb9c9c;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  /* height: 90vh; */
  height: inherit1;
  /* flex-direction: column; */
  margin-bottom: 0px;
}
.logoimg {
    margin-left: 3vh;
    height: 5vh;
    /* max-height: 60px; */
}

/* Hide nav by default on small screens */
.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text);
}

/* Navigation styles */
nav {
    display: flex;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    margin-right: 2vw;
}

nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        display: none; /* hidden by default on mobile */
        margin-top: 10px;
    }

    nav ul.active {
        display: flex;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }
}
