:root {
  --bg-color: #E8DFD8;
  --accent-color: #B98D90;
  --text-color: #3C2E29;
  --highlight: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  background: transparent;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.logo-and-menu {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.logo {
  margin: 0;
}

.logo img {
  height: 72px;
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  height: 3px;
  width: 24px;
  background: white;
  border-radius: 2px;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.35rem; /* +35 % */
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.menu-list li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero {
  background-image: url('../elua-yoga-theme-2025/assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
}

.overlay {
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(0,0,0,0.5));
  height: 100%;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-text {
  text-align: center;
  margin-top: auto;
  margin-bottom: 25vh;
}

.hero-text h1 {
  font-size: 5rem;
  letter-spacing: 0.5px;
}

.subline {
  font-size: 1.2rem;
  margin-top: 10px;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: var(--accent-color);
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }

  .header-inner {
    padding: 0;
  }

  .logo-and-menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1002;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 80px;
    padding: 20px;
    background-color: var(--bg-color);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }

  .menu-list.open {
    display: flex;
  }

  .menu-list li a {
    font-size: 1.35rem; /* +35 % */
    color: var(--text-color);
  }

  .hero-text {
    margin-bottom: 20vh;
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .subline {
    font-size: 1rem;
  }

  .button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}

.footer-links {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: white;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 4px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: white;
}

/* Font Awesome Icon Fix – 100 % sichtbar und korrekt */
i.fas,
i.far,
i.fal,
i.fad {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal;
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal;
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menu-toggle {
  align-self: center;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}