/* =====================================================
   FARBVARIABLEN
===================================================== */

:root {
  --color-primary: #E07A5F;
  --color-secondary: #81B29A;
  --color-background: #F7F3EE;
  --color-text: #2F2F2F;
  --color-border: #DDD6CE;
  --color-white: #ffffff;
}

/* =====================================================
   RESET & BASIS
===================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   TYPOGRAFIE
===================================================== */

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.6em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1em;
}

/* =====================================================
   LAYOUT
===================================================== */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */

.header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo img {
  height: 60px;
  width: auto;
}


.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: var(--color-primary);
}

/* =====================================================
   HERO
===================================================== */

.hero {
  background-color: var(--color-white);
  text-align: center;
}

.small-hero {
  padding: 40px 0;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #d36b52;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/* =====================================================
   VALUES / KACHELN
===================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background-color: var(--color-white);
  padding: 25px;
  border-radius: 12px;
}

/* =====================================================
   ANGEBOT
===================================================== */

.angebot-list {
  margin-left: 20px;
  margin-bottom: 1em;
}

.angebot-list li {
  margin-bottom: 8px;
}

/* =====================================================
   ABOUT
===================================================== */

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* =====================================================
   CONTACT
===================================================== */

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

/* =====================================================
   TRIAL / CTA
===================================================== */

.trial {
  background-color: var(--color-secondary);
  color: var(--color-white);
  text-align: center;
}

.trial h2,
.trial p {
  color: var(--color-white);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.footer-content {
  text-align: center;
  padding: 20px 0;
}

.footer a {
  color: var(--color-text);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-primary);
}
.footer-logo {
  height: 100px;
  margin: 0 auto 15px;
}

/* =====================================================
   RESPONSIVE (AB TABLET)
===================================================== */

@media (min-width: 768px) {

  .about-content {
    grid-template-columns: 1fr 2fr;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

}
/* =====================================================
   GALERIE
===================================================== */

.gallery {
  background-color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}

/* =====================================================
   MOBILE NAVIGATION
===================================================== */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
}

/* Mobile Ansicht */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 20px;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu.active {
    display: block;
  }

}


