* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 1.5rem;
  background-color: #0a0a0a;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/hintergrund1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: blur(0.8px);
  z-index: 0;
}

@media (max-width: 480px) {
  body::before {
    background-position: center 30%;
    opacity: 0.14;
  }
}

header, main, footer {
  position: relative;
  z-index: 1;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.salon-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 4.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(181, 138, 66);
}

header .logo {
  height: 70px;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.15));
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

main .divider {
  width: 60px;
  height: 1px;
  background: rgb(181, 138, 66);
  margin: 0.5rem 0;
}

main p {
  color: #f0ebeb;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-family: system-ui, sans-serif;
  max-width: 90%;
}

.address {
  color: #fdf9f9;
  font-size: 0.5rem;
  margin-top: -0.5rem;
}

footer {
  padding-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgb(181, 138, 66);
  border-radius: 50%;
  color: rgb(181, 138, 66);
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  background: rgb(181, 138, 66);
  color: #0a0a0a;
}

.test-badge {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #d4af37;
  border-radius: 999px;
  color: rgb(181, 138, 66);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10;
  transition: all 0.25s ease;
}

.test-badge:hover {
  background: #d4af37;
  color: #0a0a0a;
}

.cutting-line {
  position: relative;
  width: 260px;
  max-width: 80vw;
  height: 32px;
  margin: 0 auto 1.5rem;
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgb(181, 138, 66);
  transform: translateY(-50%);
}

.scissors-runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  color: rgb(181, 138, 66);
  transform: translateY(-50%);
  animation: run-across 3s ease-in-out infinite alternate;
}

.scissors-runner svg {
  width: 100%;
  height: 100%;
}

@keyframes run-across {
  0% {
    left: 0%;
  }
  100% {
    left: calc(100% - 30px);
  }
}

.flag-text {
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgb(120, 90, 40) 0%,
    rgb(212, 175, 55) 25%,
    rgb(255, 245, 200) 50%,
    rgb(212, 175, 55) 75%,
    rgb(120, 90, 40) 100%
  );
  background-size: 300% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 7s linear infinite;
  line-height: 1.2;
  max-width: 100%;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ===== Tablet ===== */
@media (max-width: 768px) {
  .salon-name {
    font-size: 2.4rem;
  }

  .flag-text {
    font-size: 3.2rem;
  }

  main p {
    font-size: 0.95rem;
  }
}

/* ===== Handy ===== */
@media (max-width: 480px) {
  body {
    padding: 2rem 1.2rem;
  }

  .salon-name {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }

  .flag-text {
    font-size: 2.1rem;
    letter-spacing: 0.05em;
  }

  main p {
    font-size: 0.85rem;
  }

  .address {
    font-size: 0.85rem;
  }

  .cutting-line {
    width: 200px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .social-links a svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== Sehr kleine Handys ===== */
@media (max-width: 360px) {
  .flag-text {
    font-size: 1.7rem;
  }

  .salon-name {
    font-size: 1.5rem;
  }
}