.content-container {
  margin: 0 auto;
  padding: 20px;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0 auto;
  background-color: #fff7fb;
  text-align: center;
  max-width: 1500px;
  width: 100%;
}

body.left-align {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.left {
  text-align: left;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 29px 20px;
  background-color: #fff7fb;
  color: #ff2275;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border-bottom: 2.2px solid #0d4847;
}

.logo img {
  height: 80px;
  margin-bottom: 20px;
}

nav .nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0;
}

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

.nav-links a {
  text-decoration: none;
  color: #218381;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0d4847;
}

.nav-links a.active {
  color: #0d4847;
  font-weight: bold;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff7fb;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  list-style: none;
  min-width: 160px;
  z-index: 1000;
  pointer-events: auto;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links .dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #6e0061;
  text-decoration: none;
}

.nav-links .dropdown-menu li a:hover {
  background-color: #218381;
  color: white;
}

.nav-links .dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffbb00;
  text-align: center;
  margin-top: 65px;
  margin-bottom: -5px;
}

h2 {
  font-family: "Montserrat", sans-serif;
  color: #218381;
  font-size: 2.5em;
  margin-top: 3em;
  margin-bottom: 1.3em;
  text-align: center;
}

h2.blog-title {
  text-align: center;
}

h3 {
  font-family: "Montserrat", sans-serif;
  color: #d15d7e;
  font-size: 1.6em;
  margin-top: 3em;
  margin-bottom: 1.3em;
  text-align: center;
  text-transform: uppercase;
}

blog-text {
  text-align: left;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: #ffce26;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-top: 135px;
  margin-bottom: 30px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: white;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  margin-top: -10px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff7fb;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-image: url("images/welle-sonne.png");
}

/* Text über dem Bild */
.overlay-text {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -25%);
  color: white;
  text-align: center;
  padding: 3px;
  z-index: 1;
}

.overlay-text h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.overlay-text h2 {
  color: white !important;
}

section div.bildreihe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

p {
  margin-top: 20px;
  color: #2b2b2b;
  line-height: 1.6;
}

button {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #ffb349;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

button:hover {
  background-color: #e18432;
}

/* Über mich */
.ueber-mich-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.ueber-mich-bild {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.ueber-mich-text {
  flex: 1;
  text-align: left;
}

/* Pfeil Platzhalter */
.pfeil-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 23px;
}

.pfeil-bild {
  width: 46px;
  display: block;
  margin: 0 auto;
}

.logo-small img {
  margin-top: 20px;
  width: 90px;
  height: auto;
}

.site-footer {
  background-image: url("images/sonnenuntergang-footer.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #696969;
  padding: 80px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin-top: 120px;
}

.footer-content {
  max-width: 800px;
  margin: auto;
}

.footer-links a,
.social-media a {
  color: #525252;
  margin: 0 10px;
}

.footer-links a:hover,
.social-media a:hover {
  color: #218381;
}

.branddesign {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
}

.projekt-article {
  margin-bottom: 60px;
}

.projekt-article h2 {
  margin-bottom: 10px;
  color: #006e6b;
}

.projekt-article p {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #444;
}

.kontakt-cta {
  text-align: center;
  margin: 50px 0;
}

.bilder-galerie {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.bilder-galerie img {
  width: 100%;
  max-width: 350px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

/* E-Mail Brief Icon */
.email-icon {
  display: inline-block;
  margin-top: 20px;
}

.email-icon img {
  width: 121px;
  height: auto;
  transition: transform 0.3s ease;
}

.email-icon img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.mehr-arbeiten {
  max-width: 1000px;
  margin: 59px auto;
  padding: 0 50px;
  text-align: center;
  margin-top: 156px;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -100px;
}

.image-row a {
  display: block;
  width: 25%;
  min-width: 200px;
}

.image-row img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.image-row img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.9);
}

/* Kleine Bildschirme (Smartphones) */
@media (max-width: 600px) {
  body {
    max-width: 100%;
    font-size: 14px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    margin-top: 58px;
    margin-bottom: 34px;
  }

  h3 {
    margin-top: 3px;
    margin-bottom: 28px;
  }

  .ueber-mich-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

  .ueber-mich-bild {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .image-row a {
    width: 100%;
    min-width: unset;
  }

  nav .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mittlere Bildschirme (Tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  body {
    max-width: 100%;
    font-size: 16px;
  }

  .image-row a {
    width: 45%;
    min-width: unset;
  }
}
