::selection { background-color: black; color: white; }
::-moz-selection { background-color: black; color: white; }

a { text-decoration: none; color: inherit; }
a:hover { text-decoration: underline; color: black; }
.underline { text-decoration: underline; }

/* Logo (Textschriftzug) */
.logo {
  max-width: 360px;
  margin: 2rem auto 4rem;
  line-height: 1;
}
.logo-name {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #000;
}
.logo-sub {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000;
  margin-top: 0.35rem;
}
.logo-address {
  margin-top: -25px;
  margin-bottom: 100px;
}
.logo-address a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
}
.logo-address svg { display: block; }

/* Social Icons */
.social-icons {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}
.social-icons .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
  color: white;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}
.social-icons .icon:hover { background-color: #4267B2; color: white; }
.social-icons .icon[aria-label="Instagram"]:hover { background-color: #C13584; color: white; }

/* Menü-Karten */
.menu-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.menu-card {
  background: #000;
  width: 270px;
  border-radius: 30px;
  padding: 1.5rem;
  text-align: center;
}
.menu-card p {
  color: white;
  font-size: 17px;
  font-weight: bold;
}
.menu-cards a:hover .menu-card p { text-decoration: underline; }

/* DISH Reservierungs-Widget */
#reservationWidget { border-radius: 25px; }
@media (max-width: 768px) {
  #hors-hydra-c99c852e-8a7f-4e5e-8b4b-d14959998bc2 { height: auto !important; }
}

/* Telefonnummer groß */
.phone-big {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 70px;
}

/* Anfrage-Formular / Contact-Card */
.contact-card {
  max-width: 575px;
  width: 90%;
  background: black;
  border-radius: 30px;
  padding: 1.5rem;
  color: white;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
.contact-card form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.half-width {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 0;
}
.full-width {
  flex: 1 1 100%;
  min-width: 0;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  box-sizing: border-box;
  background-color: #f9f9f9;
  color: black;
}
.contact-card textarea { resize: vertical; }
.contact-card button {
  width: 100%;
  padding: 0.85rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}
.contact-card button:hover { background-color: #ddd; }

#form-message {
  color: white;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  flex: 1 1 100%;
}

@media (max-width: 499px) {
  .half-width { flex: 1 1 100%; }
}

/* Footer */
.footer {
  max-width: 575px;
  margin: 30px auto 0 auto;
  background: black;
  color: white;
  border-radius: 30px 30px 0 0;
  padding: 1.5rem;
  text-align: center;
  font-size: 12px;
}
.footer p { margin-bottom: 0.5rem; }
.footer a { color: white; }
.footer-social a { margin: 0 0.35rem; }
.footer-social i { margin-right: 0.25rem; }
.footer a:hover { color: white; text-decoration: underline; }

@media (max-width: 620px) {
  .footer { margin: 30px 30px 0 30px; }
}
