/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body {
  font-family: "EB Garamond", "Times New Roman", serif;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #025E7F;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Navigation */

.navbar {
    background-color: #002D41;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    height: 50px; /* Logo-Höhe anpassen */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav a:hover,
nav a.active {
  background-color: #002D41;
}

/* Hauptbereich */
main {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 30px auto;
}

h2 {
  color: #025E7F;
  margin-bottom: 15px;
}

h3 {
  margin-top: 20px;
  color: #002D41;
}

/* Listen */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

ul li::before {
  content: "•";
  color: #025E7F;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Formular */
form label {
  font-weight: bold;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  background-color: #025E7F;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

form button:hover {
  background-color: #002D41;
}

.hero {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-photo {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.hero-text h1 {
    color: #002D41;
}

.hero-text p {
    font-size: 1.2rem;
    color: #025E7F;
}


/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  padding: 15px 0;
  border-top: 1px solid #ccc;
  margin-top: 30px;
}

/* Responsiv */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.4rem;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  main {
    padding: 20px;
  }
}
