/* Allgemeines Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #333;
  line-height: 1.2;
  background-color: #f9f9f9;
	margin-top:150px;
}

/* Navigation */
.navbar {
  display: flex;  
  position: fixed;
  top: 0;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  background-color: #000000;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

  .navbar a {
    float: left;
    color: white;
    text-align: center;
    padding: 0px 0px;
    text-decoration: none;
  }
.Logo {
	}

.Logo img {
	width: 100%;
	height: auto;
}

/* The dropdown container */
.dropdown {
  float: left;
  position: relative;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 20px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}
	
	/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
	left: -350px;
	right: 0;
  background-color: transparent;
  min-width: 150px;
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: transparent;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Hero */
.hero {
  background: linear-gradient(to right, #e0ecff, #f2f6ff);
  padding: 5rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #003f88;
}

.hero-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
  color: #444;
}

.btn {
  display: inline-block;
  background-color: #0056b3;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #003f88;
}

/* Hauptbereich */
main {
  max-width: 100%;
  margin: 3rem;
  padding: 0 1rem;
}

.intro {
  text-align:center;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #0056b3;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background-color: #003f88;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

/* Responsives Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
	.navbar {overflow: visible;}
	.dropdown-content {left: 0px;
		min-width: 100px;
	}
	.Logo {  }
	.Logo img {
	width: 70%;
	height: auto;
	float: left;
	
}
	body {
		margin-top:100px;
	}
}