/* === NAVBAR & LAYOUT === */
.navbar-toggler {
  color: rgba(255, 255, 255, 0.1);
}

.top-row {
  height: 3.5rem;
  background-color: rgba(0,0,0,0.4);
}

.navbar-brand {
  font-size: 1.1rem;
}

.nav-item {
  font-size: medium;
  padding: 0.5rem;
}

.navbar-nav .dropdown-menu {
    background-color: #cc0000; /* Hintergrund Dropdown */
}

.navbar-nav .dropdown-item {
    color: white;              /* Textfarbe */
}

.navbar-nav .dropdown-item:hover {
    background-color: #e60000; /* Hover */
}


.nav-item a {
  color: white !important;
  border-radius: 4px;
  height: 3rem;
  display: flex;
  align-items: center;
  line-height: 3rem;
}

.nav-item a.active {
  background-color: rgba(255,255,255,0.25);
  color: white !important;
}

.nav-item a:hover {
  background-color: rgba(255,255,255,0.1);
  color: white !important;
}

.flex-nav {
  flex-direction: column;
}

@media (min-width: 1130px) {
  .navbar-toggler {
    display: none;
  }

  .flex-nav {
    flex-direction: row;
    display: flex;
  }

  .nav-menu-logo {
    height: 130px;
    display: block !important;
  }

  .nav-menu-logo-end {
    display: none;
  }
}

.nav-menu {
  background-color: #cc0000;
}

/* === PAGE LAYOUT === */
.page-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-area {
  flex: 1;
}

/* === TITLES & TEXT === */
.blog-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #cc0000;
  margin: 15px 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.blog-title:hover {
  color: #e60000;
}

.blog-container {
  width: 300px;
  margin: 15px;
  display: flex;
  justify-content: center;
}

.blog-post {
  width: 100%;
  height: 400px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border: 0.5px solid #cc0000;
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
}

.blog-title-small {
  font-size: 1.5em;
  color: #cc0000;
  margin-bottom: 10px;
}

/* === CAROUSEL IMAGES === */
.carousel-image {
  max-height: 200px;
  max-width: 250px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.05);
}

/* === FOOTER === */
.footer {
  background-color: #cc0000; /* Vereinsfarbe */
  color: white;
  margin-top: auto;
}

.footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffd6d6; /* leichtes Rosa als Hover-Farbe */
}

.footer-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 0.3rem;
  }
}

.txt-color-cc0000 {
  color: #cc0000;
}

.fb-page-wrapper {
    width: 100%;
    max-width: 500px; /* Maximale Breite in Sidebar */
    margin: 0 auto;   /* Zentrieren */
}

.fb-page-wrapper .fb-page, 
.fb-page-wrapper .fb-page span, 
.fb-page-wrapper .fb-page iframe {
    width: 100% !important;  /* Erzwingt Anpassung an Container */
}

