* {
  margin: 0;
  padding: 0;
  background-color: rgb(255, 255, 255);
  font-family: "Poppins", sans;
}

@media screen and (max-width: 1000px) {
  .desk,
  .desk-t {
    display: none;
  }

  .mob-t {
    width: 100vw;
    height: 52px;
    overflow: hidden;
    margin-top: 0;
    position: relative;
  }

  #logo {
    height: 100px;
    margin-left: 3vw;
    position: absolute;
    top: -20px;
  }
  .t-mob,
  .t-mob1 {
    display: inline-block;
    height: 60px;
  }

  .t-mob {
    width: 80vw;
  }

  .t-mob1 {
    width: 19vw;
    float: inline-end;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
  }

  .bar,
  #bar {
    height: 4px;
    width: 25px;
    border-radius: 2px;
    background-color: #b78dd5;
  }

  .bar {
    margin-left:8px;
  }

  .menu-btnn {
    width: 100%;
    height: 36px;
    background-color: rgba(144, 111, 163, 0.8);
    text-align: left;
    padding-left: 25px;
    font-size: 16px;
    border: 1px solid rgb(111, 75, 133);
    font-family: "Poppins", sans;
    color: white;
    font-weight: 500;
  }
  .menu-btnn:hover {
    background-color: rgb(210, 164, 219);
  }

  .menu-btnn:active {
    background-color: rgb(210, 164, 219);
  }

  a {
    background: none;
  }

  #menu {
    position: absolute;
    width: 90vw;
    margin-left: 5vw;
    top: 58px;
    z-index: 10;
    background-color: rgba(159, 121, 181, 0.5);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 2s ease, opacity 3s ease;
  }
  #menu.show {
    max-height: 300px; /* Adjust to the expected content height */
    opacity: 1;
    background-color: rgba(159, 121, 181, 0.5);
  }
}

@media screen and (min-width: 1000px) {
  .mob-t,
  .mob,
  #menu {
    display: none;
  }

  .desk-t {
    height: 100px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
  }
  #logo {
    height: 145px;
    padding-left: 75px;
    margin-top: 10px;
    position: absolute;
    top: -30px;
  }

  .loggo-desk {
    width: 25vw;
  }

  #deskmenu {
    height: 80px;
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
  }

  .menu-btnn {
    height: 25px;
    width: fit-content;
    font-size: 20px;
    margin-top: 40px;
    padding: 10px 15px;
    border: 0;
    font-weight: 500;
  }

  .menu-btnn:hover {
    color: #ff1493;
    font-weight: 500;
    text-decoration: none; /* disable default underline */
    border-bottom: 2px solid #ff1493; /* custom underline */
    padding-bottom: 30px; /* creates the 10px gap */
  }

  .desk-mob-c {
    width: 25vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
  }

  #desk-c-c {
    background-color: #b78dd5;
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
  }

  a {
    background: none;
    text-decoration: none;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
  }

  #desk-c-c:hover {
    background: linear-gradient(90deg, #8e2de2 0%, #ff267a 100%);
    color: #fff;
    font-size: 18px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(142, 45, 226, 0.08);
    transition: box-shadow 0.2s;
  }
}
