/* =====================================================
   HEADER
===================================================== */

.site-header {
  background: #e5b33a;
  color: #ffffff;
  padding: 28px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-container {
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

/* =====================================================
   LOGO
===================================================== */

.site-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  color: #ffffff;
  text-decoration: none;
}

.logo-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-title {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  font-weight: 800;
}

.logo-subtitle {
  margin-top: 5px;
  margin-left: 80px;
  font-size: clamp(1.9rem, 3.2vw, 3.15rem);
  line-height: 1;
  font-weight: 800;
}

.logo-description {
  margin-top: 14px;
  font-size: 1.08rem;
  line-height: 1.4;
  font-weight: 600;
  opacity: 0.96;
}

/* =====================================================
   CĂUTARE
===================================================== */

.header-search {
  display: flex;
  width: 100%;
  max-width: 780px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

.header-search-input {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
  border: 0;
  outline: 0;
  color: #1a2332;
  background: #ffffff;
  font: inherit;
  font-size: 1.05rem;
}

.header-search-input::placeholder {
  color: #5b6f95;
  opacity: 1;
}

.header-search-input:focus {
  box-shadow: inset 0 0 0 2px #b15b2c;
}

.header-search-button {
  flex: 0 0 auto;
  border: 0;
  padding: 0 34px;
  background: #18233b;
  color: #ffffff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.header-search-button:hover,
.header-search-button:focus-visible {
  background: #b15b2c;
}

/* =====================================================
   ACCESIBILITATE
===================================================== */

.site-logo:focus-visible,
.header-search-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
