.header-top-x{
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 1.2rem 2rem;
  backdrop-filter: blur(0px);
  background: transparent;
}

.menu-btn-x {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 60px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 28px;
  color: white;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  float: left;
}

.menu-btn-x:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

.logo-x {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFF9E0, #F5E7A3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  width: 350px;
  float: left;
  position: relative;
}

.logo-x span {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: normal;
  color: #F9E074;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.logo-x img{
    width: 280px;
}

.nav-buttons-x {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.action-btn-x {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.2rem .8rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4e4516;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
}

.action-btn-x:hover {
    background: rgba(255, 215, 120, 0.8);
    border-color: #F5D742;
    color:#fff;
    transform: translateY(-2px);
    backdrop-filter: blur(10px);
}


.hero-content-x {
    position: relative;
    z-index: 15;
    text-align: center;
    max-width: 880px;
    margin: 3rem auto 4rem auto;
    padding: 0 1.5rem;
    animation: fadeUp 0.9s ease-out;
}

.hero-content-x h1 {
    font-size: clamp(1rem, 4vw, 1.9rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@media (max-width: 434px){
    .action-btn-x {
        padding: .1rem .4rem;
        font-size: 0.6rem;
        transform: translateX(-30px);
    }

    .logo-x {
        top:-60px;
        left: 50px;
    }

    .logo-x img{
        width: 120px;
    }
}

@media screen and (max-width: 476px) and (min-width: 435px){
    .logo-x {
        top:-50px;
        left: 70px;
    }

    .logo-x img{
        width: 180px;
    }
}

@media screen and (max-width: 500px) and (min-width: 476px){
    .logo-x {
        top:-15px;
        left: 40px;
    }

    .logo-x img{
        width: 190px;
    }
}