/* ========== Header ========== */

.header {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(to bottom, #6b4a2d, #5a3e26);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 -3px 0 rgba(139, 90, 43, 0.6);
  border-bottom: 3px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, #d4a574 0px, #d4a574 20px, #c9a569 20px, #c9a569 40px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 2px;
  color: var(--header-text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header-logo {
  width: 60px;
  height: 60px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.1) rotate(-5deg);
}

.header p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: var(--header-text);
}
