/* GLOBAL HEADER — SAME EVERYWHERE (from index.html) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FAF8F6;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 34px;
  display: block;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.contact-btn {
  background: transparent;
  border: 2px solid #000;
  padding: 8px 20px;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  border-radius: 0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  header {
    height: 80px;
  }

  .logo img {
    height: 30px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 10px 0;
  }

  header .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .header-buttons {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
  }

  .header-buttons.active {
    display: flex;
  }

  .contact-btn {
    width: 100%;
    text-align: left;
    border: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 26px;
  }

  .contact-btn {
    font-size: 15px;
    padding: 8px 14px;
  }
}
