/* Start custom CSS for html, class: .elementor-element-263c126 *//* === Burger Icon === */
html{
    overflow-x: hidden;
}
.wd-toolbar {
    display: none !important;
}

.tbt_logo_name{
    text-align: center;
    margin-top: 3dvh;
    font-family: display;
    font-size: 5.5rem;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    letter-spacing: -13px;
}


.hero-header{
    position: absolute;
    z-index: 100000001;
    left: 0;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.hero-header.active{
    position: fixed;
    top: 10px;
}

.tbt-burger {
  width: 40px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 100000001;
}
.tbt-burger .line {
  padding: 2px;
  width: 100%;
  background: #444;
  transition: all 0.4s ease;
  border-radius: 5px;
}

.tbt-burger.active .line:first-child {
  transform: rotate(45deg) translateY(7px);
}
.tbt-burger.active .line:last-child {
  transform: rotate(-45deg) translateY(-7px);
}

.profile{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile span{
    font-size: 1.2rem;
}
/* === Fullscreen Overlay Menu === */
.tbt-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 100000000;
}
.tbt-fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
}

.tbt-fullscreen-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 50%;
}
.tbt-fullscreen-menu li {
  margin: 10px 0;
  transition:all .3s ease;
}
.tbt-fullscreen-menu a {
  color: #000;
  font-size: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  width: 100%;
  padding: 10px;
  display: inline-block;
}
.tbt-fullscreen-menu a:hover {
 background-color: #f6f6f6;
}


/* === Responsive Adjustments === */

/* 📱 Mobile screens */
@media (max-width: 767px) {
    .hero-header{
        padding:0 16px;
    }
    .profile-icon{
        width:32px;
        height:32px;
    }
    .tbt_logo_name{
        font-size:4rem;
        letter-spacing:-8px;
         margin-top: 5dvh;
    }
  .tbt-burger {
    /*top: 10px;*/
    /*left: 20px;*/
    width: 32px;
    height: 16px;
  }

.tbt-burger .line {
  padding: 1.4px;
    
}
 

  .tbt-fullscreen-menu a {
    font-size: 1.6rem;
  }

  .tbt-fullscreen-menu ul{
      width:100%;
  }
}

/* Hide site title except on homepage */
body:not(.home) .tbt_logo_name {
  display: none !important;
}/* End custom CSS */