/* Basisfarben & Schrift */
body {
  margin: 0;
  padding-top: 70px;
  background: #1b1b1b;
  font-family: 'Cabin', sans-serif;
  color: #ddd;
}

.text-muted {
  color: #bbb !important;
}

/* Navbar & Logo */
.navbar {
  background-color: #151515 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  color: #ffa502 !important;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s;
}

.navbar-brand:hover {
  color: #ffbe5c !important;
}

.navbar-brand svg {
  margin-right: 8px;
}

/* Glow Buttons in Navbar */
.navbar-icon-list {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.navbar-icon-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 0;
  text-decoration: none;
  background: transparent;
}

.navbar-icon-list .icon {
  width: 40px;
  height: 40px;
  background: #171515;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 15px;
  color: #666;
  transition: 0.3s;
  position: relative;
}

.navbar-icon-list .icon i {
  transition: 0.3s;
}

.navbar-icon-list li a:hover .icon {
  box-shadow: 0 0 8px #d35400;
}

.navbar-icon-list li a:hover .icon i {
  color: #ffa502;
  text-shadow: 0 0 2px #d35400, 0 0 4px #d35400, 0 0 6px #d35400;
}

.navbar-icon-list .link-text {
  font-size: 14px;
  color: #aaa;
  transition: color 0.3s, text-shadow 0.3s;
}

.navbar-icon-list li a:hover .link-text {
  color: #ffa502;
  text-shadow: 0 0 6px #d35400;
}

.navbar-icon-list li a.active .icon {
  box-shadow: 0 0 8px #ffa502;
  background: #1e1e1e;
}

.navbar-icon-list li a.active .icon i {
  color: #ffa502;
  text-shadow: 0 0 6px #d35400;
}

.navbar-icon-list li a.active .link-text {
  color: #ffa502;
  text-shadow: 0 0 4px #d35400;
}

/* Sucheingabe */
.navbar-glow-search-form {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.navbar-glow-search-form input,
.navbar-glow-search-form button {
  height: 40px;
}

.navbar-glow-search-form input {
  background: linear-gradient(#333, #222);
  border: 1px solid #444;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 2px 0 #000;
  color: #888;
  font-size: 13px;
  padding: 0 10px;
  width: 200px;
}

.navbar-glow-search-form input:focus {
  animation: glow 800ms ease-out infinite alternate;
  background: linear-gradient(#333933, #222922);
  border-color: #393;
  box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
  color: #efe;
  outline: none;
}

.navbar-glow-search-form button {
  background: linear-gradient(#333, #222);
  border: 1px solid #444;
  border-left-color: #000;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 2px 0 #000;
  color: #fff;
  font-size: 13px;
  padding: 0;
  width: 80px;
}

.navbar-glow-search-form button:hover {
  background: linear-gradient(#393939, #292929);
  color: #5f5;
}

/* Content & Cards */
.container {
  background: linear-gradient(#1b1b1b, #1a1a1a);
  padding: 60px 20px;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  border-top: 1px solid #222;
}

.content-section {
  display: none;
  outline: 1px solid #292929;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  background: #1e1e1e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.content-section.active {
  display: block;
}

.glow-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 24px;
  box-shadow: 0 0 6px rgba(211, 84, 0, 0.15);
  border: 1px solid #333;
  color: #eee;
  transition: 0.3s;
}

.glow-card h5 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.glow-card p {
  font-size: 13px;
  margin-bottom: 0.4rem;
}
.glow-card:hover {
  box-shadow: 0 0 10px #d35400;
}

/* Blog Grid */
.blog-grid {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}

.blog-grid:hover {
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.2);
}

.blog-grid-img img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.blog-grid-text h3 a {
  color: #ffa502;
  text-decoration: none;
}

.blog-grid-text h3 a:hover {
  text-shadow: 0 0 6px #ffa502;
}

/* Footer */
footer {
  background: #131313;
  color: #999;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #2a2a2a;
  margin-top: 60px;
}

footer a {
  color: #ffa502;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
#flash-container {
  z-index: 1055;
  width: 100%;
  max-width: 600px;
}
#flash-container .alert {
  margin-top: 15px;
  border-radius: 6px;
  font-size: 14px;
  padding: 12px 16px;
  opacity: 0.95;
  margin-bottom: 10px;
}



/* test kann eventuell entfernt werden */


/* Glow Animation */
@keyframes glow {
  0% {
    border-color: #393;
    box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,.1), 0 2px 0 #000;
  }
  100% {
    border-color: #6f6;
    box-shadow: 0 0 20px rgba(0,255,0,.6), inset 0 0 10px rgba(0,255,0,.4), 0 2px 0 #000;
  }
}
