/* Universal Styling */

body{
    margin: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  a, h1, h2, h3, h4, h5, h6, p, button {
    font-family: neue montreal,-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif;
  }
  
  /* Navigation Section Styling */
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
  
  nav{
    position: fixed;
    z-index: 99;
    width: 100vw;
    background: white;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1); /* Fügt einen Schatten hinzu, um die Navigationsleiste abzuheben */
  }
  
  nav .wrapper{
    position: relative;
    max-width: 1200px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  nav .wrapper a{
    text-decoration: none;
  }
  
  .wrapper .nav-links{
    display: inline-flex;
  }
  
  .nav-links li{
    list-style: none;
  }
  
  .nav-links li a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .nav-links li a:hover{
    color: grey;
  }
  
  .nav-links .mobile-item{
    display: none;
  }
  
  .nav-links li:hover .drop-menu,
  .nav-links li:hover{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  
  .wrapper .btn{
    color: black;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  
  .wrapper .btn.close-btn{
    color: white;
    position: absolute;
    right: 55px;
    top: 15px;
  }
  
  /* Responsive styles for smaller screens */
  @media screen and (max-width: 970px) {
    .wrapper .btn{
      display: block;
    }
    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      top: 0;
      left: -110%;
      background: #242526;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
  
    .btn.menu-btn:hover {
      color: grey;
      transition: all 0.3s ease;
    }  
    .btn.close-btn:hover {
      color: grey;
      transition: all 0.3s ease;
    }  
  
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      color: white;
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      background: #3A3B3C;
    }
    .nav-links{
      margin-top: 0px;
    }
  }
  
  nav input{
    display: none;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 50px;
    display: block;
  }
  
  #site-name {
    font-size: 20px;
    color: black;
  }
  
  #site-name:hover {
    color: grey;
    transition: all 0.3s ease;
  }















/* Article Section Styles */

#articles {
    padding: 70px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h2 {
    color: #333;
    font-size: 24px;
    margin-left: 10px;
}

a {
    text-decoration: none;
}

.row {
    display: block;
    margin: 0 auto;
}

.section-container {
    margin-bottom: 40px; /* Adjust the space between sections as needed */
    position: relative;
}
.section-container h2 {
    position: relative;
    margin-bottom: 30px; /* Adjust the space between h2 and articles as needed */
    text-align: center;

}
.section-container h2::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%; /* Updated to extend the full width of the container */
    height: 1px; /* Adjust the height of the line as needed */
    background-color: #333; /* Adjust the color of the line as needed */
}

.article-container {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-4 {
    width: calc(33.3333% - 20px);
    margin-bottom: 60px; /* Add some space between rows */
    margin-right: 20px; /* Add some space between columns */
    box-sizing: border-box;
    border-radius: 10px;
}

.item {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
}

.item:hover img {
    transform: scale(1.05);
}

p {
    flex: 1;
    color: #555;
    margin-bottom: 15px;
}

.row-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 10px;
}

.row-button:hover {
    background-color: rgb(40, 93, 129);
}

.date {
    font-size: 12px;
    color: black;
}
#coming-soon {
    text-align: center;
}
@media (max-width: 768px) {
    .col-lg-4 {
        width: calc(90% - 20px);
        margin-bottom: 30px;
        margin: 0 auto 30px; /* Fix the conflicting margin property */
        padding-bottom: 55px;
        overflow: hidden;
    }
    .section-container h2::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%; /* Updated to extend the full width of the container */
        height: 1px; /* Adjust the height of the line as needed */
        background-color: #333; /* Adjust the color of the line as needed */
    }
    .row-top h2 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}








/* Footer-Styling */
#footer {
  background: linear-gradient(135deg, rgba(52, 152, 219,0.5) 0%,rgba(243, 65, 65, 0.4) 100%);
    padding: 40px 0; /* Innenabstand oben und unten im Footer */
    text-align: center; /* Zentriert den Inhalt horizontal */
    max-width: 1200px;
    margin: 0 auto;
    border-top-right-radius: 100px; /* Adjust the value as needed */
    border-top-left-radius: 100px; /* Adjust the value as needed */
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
  }
  
  .footer-section {
    flex: 1; /* Gleiche Breite für alle Footer-Abschnitte */
    text-align: left;
    padding: 20px;
  }
  
  h4 {
    font-size: 18px; /* Stil für Überschriften im Footer */
  }
  
  .footer-section ul {
    list-style: none; /* Entfernt Aufzählungspunkte */
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px; /* Abstand zwischen den Listenelementen */
  }
  
  .footer-section a {
    text-decoration: none;
    color: black;
    margin-right: 10px; /* Abstand zwischen den Social-Media-Links */
  }
  
  .footer-section a:hover{
    color: grey;
    transition: all 0.3s ease;
  }
  
  @media (max-width: 1400px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
  
    .footer-section {
        max-width: 100%; /* Full width on smaller screens */
        text-align: center; /* Center the list items on smaller screens */
        padding: 0;
    }
  }
  
  
  
  