/* Contact page — visual match to 404.html, plus kle650 footer */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #222;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.brand-home-link {
  color: inherit;
  text-decoration: none;
}

.brand-home-link:hover {
  text-decoration: none;
  opacity: 0.9;
}

.message {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  line-height: 1.6;
}

.contact-email {
  font-size: 1.35rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  user-select: text;
}

.social-links-compact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.social-links-compact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  padding: 0.4rem 0.75rem;
  border: 2px solid #000;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.45), inset 0 0 36px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.social-links-compact .social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.social-links-compact a.youtube:hover {
  background: linear-gradient(135deg, #ff3333, #990000);
  box-shadow: 0 0 8px #ff0000;
}

.social-links-compact a.instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  box-shadow: 0 0 8px #e1306c;
}

.social-links-compact a.tiktok:hover {
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 8px #fe2c55;
}

.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
}

.footer a {
  color: #ccc;
  margin: 0 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer a:hover {
  text-decoration: underline;
}
