body {
  background-color: #0e0e0e;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.header {
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 5% 5% 5%;
  border-bottom: 0.5vh solid #8B0000;
  box-shadow: 0 0.5vh 1vh rgba(255, 0, 0, 0.1);
}

.header-title {
  color: #ffffff;
  font-weight: 700;
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 5vw;
  text-shadow: 0.2vw 0.2vw 0.3vw #8B0000;
}

.logo-img {
  width: 10vw;
  height: auto;
}
@media (max-width: 600px) {
  .logo-img {
    width: 25vw; /* oder z. B. 80px */
  }
}

.navbar {
  background-color: #141414;
  border-bottom: 0.4vh solid #8B0000;
  justify-content: center;
}

.navbar-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3%;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 1.2vw;
  transition: color 0.3s ease;
  text-align: center;
}

.navbar-nav .nav-link:hover {
  color: #ff4d4d !important;
  text-decoration: underline;
}

.container {
  padding: 5% 5%;
  max-width: 90%;
  text-align: center;
}

h1{
  color: #ff4d4d;
  margin-bottom: 3%;
  font-size: 3vw;
}

h4 {
  color: #ffffff;
  margin-top: 4%;
  font-weight: 600;
  border-left: 0.8vw solid #8B0000;
  padding-left: 2%;
  text-align: left;
}

.social-icons {
  margin-top: 3%;
}
@media (max-width: 600px) {
  .logo-img {
    width: 15vw; /* oder z. B. 80px */
  }
}

.social-icons i {
  font-size: 3vw;
  margin-right: 3%;
  color: white;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icons i:hover {
  color: #ff4d4d;
  transform: scale(1.1);
}

a {
  color: #ff4d4d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 4%;
  text-align: left;
}

@media (max-width: 576px) {
  .header-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    text-align: left;
  }
}
.dropdown-menu {
  background-color: #ff4d4d;
  box-shadow: 0 0.5vh 1vh rgba(255, 0, 0, 0.1);
}

.dropdown-menu .dropdown-item {
  color: #fff !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #e60000 !important;
  color: #fff !important;
  text-decoration: none !important;
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  .social-icons i {
    font-size: 2rem !important;
  }

  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    display: block;
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    text-align: left;
    padding: 0.75rem 1rem;
  }

  .dropdown-menu .dropdown-item {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }
}

.navbar-toggler {
  border-color: #ff4d4d;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff4d4d' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
