body {
  background: #f9fafb;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgb(246, 234, 179);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  backdrop-filter: blur(6px);
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 20px;
}

.mobile-menu {
  display: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.7;
}

.left, .right {
  display: flex;
  gap: 15px;
}

/* LOGO */
#logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);

  opacity: 0;
  transition: all 0.35s ease;

  padding: 14px 28px;
  background: rgb(246, 234, 179);
  border-radius: 500px;
  z-index: 1000;
}

#logo img {
  height: 40px;
  width: auto;
}

#logo.show {
  opacity: 1;
  transform: translate(-50%, -15%) scale(1.4);
}

.spacer {
  height: 80px;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 1100;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

@media (max-width: 768px) {

  .desktop-menu:not(.social-icons) {
    display: none !important;
  }

  .burger {
    display: block;
    left: 20px;
    right: auto;
    position: absolute;
    z-index: 1200;
  }

  .social-icons {
    display: flex !important;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    gap: 10px;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    background: rgb(246, 234, 179);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    z-index: 1100;
  }

  .mobile-menu.active {
    left: 0;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
  }

  .overlay.active {
    display: block;
  }

  .mobile-menu .left,
  .mobile-menu .right {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-menu .right.shift-down {
    margin-top: 30px;
    transition: 0.3s ease;
  }
}