/* Overlay */
#slideMenuOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9998;
}
#slideMenuOverlay.active { opacity: 1; visibility: visible; }

/* Slide Menu */
#slideMenu {
  position: fixed;
  top: 0; left: 0;
  width: 300px;
  height: 100%;
  background: #fdf9f3;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  display: initial;
  flex-direction: column;
  justify-content: space-between;
}
#slideMenu.active { transform: translateX(0); opacity: 1; }

/* Header */
.slideMenu-header {
    display: flex;
    justify-content: flex-end;
    align-items: end;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.slideMenu-logo { max-height: 40px; }
#closeMenu { font-size: 24px; cursor: pointer; }

/* Menu List */
.slideMenu-list {
  list-style: none;
  margin: 0;
  padding: 10px;
  flex-grow: 1;
}
.slideMenu-list li {
  margin: 35px 0;
  opacity: 0;
  transform: translateX(-20px);
  text-align: center;
}
.slideMenu-list li.show {
  animation: fadeInLeft 0.4s forwards;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.slideMenu-list a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: 0.2s;
  text-transform : uppercase;
}
.slideMenu-list a:hover { color: #0073aa; }

/* Bottom Section */
.slideMenu-bottom {
  text-align: center;
}
.bottom-logo {
  max-height: 40px;
  margin-bottom: 15px;
}
.slideMenu-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #333;
  color: #b7beae !important;
}
.slideMenu-social a:hover { color: #0073aa; }

/* Shortcode Button */
.openMenuBtn {
  font-size: 30px !important;
  padding: 8px 12px;
  cursor: pointer;
  background: #b7beae;
  color: #b7beae !important;
  border: none;
  border-radius: 4px;
}

/* -------------------
   Mobile Responsive
------------------- */
@media (max-width: 768px) {
  #slideMenu {
    width: 100%;       /* Full width on mobile */
    max-width: 100%;   /* Prevent cut-off */
  }

  .slideMenu-list a {
    font-size: 18px;   /* Bigger text */
  }

  .slideMenu-social a {
    font-size: 24px;   /* Bigger icons */
  }

  .openMenuBtn {
    font-size: 40px !important;
    padding: 10px 16px;
  }
}

/* Vertical Bar for Logo + Toggle */
#verticalMenuBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;              /* slim bar */
  height: 100vh;            /* full screen height */
  background: #0073aa;      /* WP blue or your brand color */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  z-index: 10001;           /* above everything */
}

#verticalMenuBar .bar-logo {
  max-height: 40px;
  margin-bottom: 20px;
}

#verticalMenuBar .openMenuBtn {
  font-size: 28px;
  padding: 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

/* Existing slideMenu styles stay same */

.menu-alig {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  gap: 0px;
}
.slideMenu-social {
    padding-bottom: 35px;
}
.slideMenu-social a {
    text-decoration: initial;
}
.slideMenu-list a:hover
 {
    color: #3f444b;
    border-bottom: 2px solid #3f444b;
    padding: 6px 3px;
}
.openMenuBtn {
    border-width: 0px 0px 0px 0px !important;
}