/* ============================= */
/* ✅ GLOBAL STYLES */
/* ============================= */
.desktop-only {
  display: block; /* Standardmäßig sichtbar auf Desktop */
}

.mobile-only {
  display: none;  /* ✅ Standardmäßig ausgeblendet */
}

/* 🖼️ Bilder kleiner */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;            /* Zentriert */
}

h1:hover, h2:hover, h3:hover {
  text-shadow: 0 0 20px rgba(192, 192, 192, 0.9); /* Silber-Glow */
  transform: scale(1.02);
}

a {
  color: #C0C0C0; /* Silber */
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #8B0000; /* Blutrot als Akzent */
  text-shadow: 0 0 10px rgba(139, 0, 0, 0.8);
}

/* ============================= */
/* ✅ HEADER */
/* ============================= */
header {
  display: flex;
  flex-direction: column;  /* ✅ Stapelt Logo, Navigation & Buttons von oben nach unten */
  width: 100%;               /* Nimmt die volle Breite ein */
  text-align: center;        /* Zentriert den Text (und Logo) */
  flex-direction: column;  /* Elemente untereinander */
  align-items: center;      /* Horizontal zentrieren */
  justify-content: center;  /* Vertikal zentrieren (falls nötig) */
  padding: 20px 0;          /* Weniger Padding oben/unten */
  background: #121212;      /* Dunkler Hintergrund */
  border-bottom: 1px solid #C0C0C0;
  position: relative;       /* Keine sticky/fixed Eigenschaften */
  z-index: 1000;
}

.logo {
  height: 100px; /* Etwas größer fürs Branding */
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.6));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.9));
}


/* ✅ Logo zentrieren */
.logo-container {
  margin-top: 80px ;        /* Abstand zwischen Logo und Navigation */
  max-width: 150px;           /* Logo-Größe */
  height: auto;
  display: block;             /* Block-Element für sauberes Zentrieren */
  margin: 0 auto;             /* 🔑 Zentriert das Block-Element */
  flex-direction: column;
  align-items: center;  /* Wichtig: Zentriert das Logo */
  justify-content: center;
  gap: 5px;             /* Kleiner Abstand zwischen Logo & Text */
  margin-bottom: 5px;

}

.logo-container img {
  height: 100px;  /* Logo-Größe anpassen */
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.6)); 
}

.logo-container img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.9));
}

.site-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;            /* ✅ Abstand zum Logo */
    padding: 0;               /* Kein extra Padding */
}

.site-title .main {
  font-size: 26px;
  font-weight: bold;
  color: white;
}

.site-title .sub {
  font-size: 18px;
  color: gray;
}

/* ============================= */
/* ✅ FIXED ACTION BUTTONS (rechts) */
/* ============================= */
.login-btn {
  position: absolute;
  top: 5px;
  right: 40px; /* 🔥 Weiter vom Rand entfernt */
  color: white;
  font-size: 14px;
  text-decoration: none;
  background: rgba(192, 192, 192, 0.2);
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.btn {
  background: rgba(192, 192, 192, 0.2);
  color: white;
  padding: 10px 15px;
  border: 1px solid #C0C0C0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
  min-width: 150px;            /* Einheitliche Breite */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: rgba(192, 192, 192, 0.4);
  color: #121212;
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.7);
}

/* 🔥 Wolfslounge-Button */
.dashboard-btn {
  background: #292929;
  color: #C0C0C0;
  border: 1px solid #8B0000;  /* Blutroter Rand */
}

.dashboard-btn:hover {
  background: #8B0000;
  color: white;
  transform: scale(1.1);
}

/* ============================= */
/* ✅ NAVIGATION – DESKTOP */
/* ============================= */
#main-nav {
    width: 100%;
    max-width: 80%;
    background-color: rgba(41, 41, 41, 0.9);
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    margin: 20px auto;
    border: 1px solid #C0C0C0;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
    position: relative;
    z-index: 998;
}

/* ✅ Desktop-Menü */
#nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

#nav-menu li a {
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

#nav-menu li a:hover {
    background-color: rgba(192, 192, 192, 0.3);
    color: #121212;
    transform: scale(1.05);
}



/* ============================= */
/* ✅ FOOTER */
/* ============================= */
/* ============================= */
/* ✅ FOOTER – Jetzt genau wie Header */
/* ============================= */
footer {
  width: 100vw; /* Stellt sicher, dass der Footer wirklich 100% breit ist */
  max-width: 100%; /* Verhindert Begrenzung */
  background-color: #121212;
  color: #C0C0C0;
  border-top: 1px solid rgba(192, 192, 192, 0.6);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto; /* Stellt sicher, dass er in der Mitte bleibt */
  min-height: 100px;
}

/* ✅ FOOTER-Container für maximale Einheitlichkeit */
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

* ✅ Entfernt Begrenzung der Footer-Inhalte */
footer ul {
  list-style: none;  /* Entfernt Bullet-Points */
  padding: 0;
  margin: 0;
  display: flex;  /* 🔥 Stellt die Links nebeneinander dar */
  justify-content: center; /* Zentriert sie */
  gap: 20px; /* Abstand zwischen den Links */
}

footer ul li {
  display: inline-block; /* Verhindert untereinander-Anordnung */
}

footer ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer ul li a:hover {
  color: #C0C0C0;
  text-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

footer p {
  font-size: 14px;
  color: gray;
  margin-top: 10px;
}

/* ============================= */
/* ✅ FOOTER BUTTONS */
/* ============================= */
/* ✅ Buttons bekommen ebenfalls volle Breite */
.footer-buttons {
  width: 100%;
  max-width: none; /* Keine unnötige Begrenzung */
  display: flex;
  justify-content: center; /* Zentriert die Buttons */
  gap: 20px;
}

/* ✅ Footer-Buttons vergrößern für einheitlichen Look */
/* ✅ Buttons selbst anpassen */
.footer-button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

/* ✅ Footer-Button Hover */
.footer-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.footer-button img {
  width: 60px;
  height: 60px;
}

.footer-button.logo img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.6));
}

.footer-button.logo img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.9));
}

.footer-button.whatsapp {
  background-color: #25D366;
}

.footer-button.whatsapp:hover {
  background-color: #1EBE5D;
  transform: scale(1.1);
}

.footer-button.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.footer-button.instagram:hover {
  filter: brightness(1.1);
  transform: scale(1.1);
}

.weisheit-box {
  background: linear-gradient(135deg, #1e1e1e, #292929);
  color: #C0C0C0;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin: 10px auto;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-in-out;
}

.weisheit-box h3 {
  font-size: 1.2rem;
  color: #FF3B3B;
  margin-bottom: 5px;
}

.weisheit-box p {
  font-size: 1rem;
  font-style: italic;
  color: #E0E0E0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}