.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 5rem;
  padding: 0 2rem;
  margin-top: 0;
  margin-bottom: 0;
  background: #fff;
  color: #353434;
}
.hamburger-button {
  display: none;

  width: 44px;
  height: 44px;

  padding: 8px;

  border: none;
  background: transparent;

  cursor: pointer;
}

.hamburger-button span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 6px auto;

  border-radius: 999px;
  background: #b7547c;

  transition: 0.25s ease;
}
.navbar {
  display: flex;
  gap: 3rem;
}

.navbar a,.welcome-user,
.login-link,
.logout-link,
.admin-link  {
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
}
.navbar a:hover,.welcome-user:hover,
.login-link:hover,
.logout-link:hover,
.admin-link:hover {
  color: #e879a3;
text-decoration: underline;
}

.header-right,
.user-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.welcome-user,
.login-link,
.logout-link,
.admin-link {
  color: #b7547c;
  font-size: 1.5rem;
  text-decoration: none;
}

.welcome-user {
  font-weight: 500;
  white-space: nowrap;
}

.socials img {
  display: block;
  width: auto;
  height: 5rem;
}

.user-menu {
  position: relative;
}

.user-button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px;
  border: none;
  background: transparent;
  color: #c95682;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.user-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 1000;

  min-width: 150px;
  overflow: hidden;

  border: 1px solid #f0cedb;
  border-radius: 12px;
  background: white;

  box-shadow: 0 12px 30px rgba(120, 46, 76, 0.16);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: block;
  padding: 13px 17px;

  color: #8f4964;
  font-size: 14px;
  text-decoration: none;
}

.user-dropdown a:hover {
  background: #fff0f5;
}

.user-menu.open .user-arrow {
  transform: rotate(180deg);}
  .site-footer{

    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    padding:20px 10%;

    background:#f9dce7;

    border-top:1px solid #e7bfd0;

}

.footer-left{

    display:flex;
    flex-direction:column;
    gap:2px;

}
.footer-logo{
    width:9rem;
    height:auto;
}
.footer-socials{
    display:flex;
    gap:18px;
    margin-top:8px;
}

.footer-socials img{
    width:34px;
    height:34px;
    transition:.25s;
}

.footer-socials img:hover{
    transform:translateY(-4px) scale(1.08);
}

.footer-right{
    text-align:center;
    color:#7d6770;
    font-size:20px;
    line-height:1.7;
}
.footer-right p{
    margin:0;
}

@media (max-width: 900px), (pointer: coarse) {
     .site-header {
    padding: 0 1rem;
  }
  .hamburger-button {
    display: block;
  }

  .site-header {
    min-height: 5rem;
    padding: 0 18px;
  }
  .footer-logo{
  display:none;
}
.footer-socials{
  left:50%;
}
.footer-socials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.footer-left{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.site-footer{
  display:grid;
}
  .hamburger-button{
    display:block;
    z-index:1002;
  }

  .navbar,
  .header-right{
    display:none;
  }
}