/* style.css */
:root {
  --primary-brown: #6b150e;
  --light-blue: #c1d3ee;
  --text-dark: #333;
}

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

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background: var(--primary-brown);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo-img {
  height: 55px;
  width: auto;
}

.logo-link {
  display: inline-block;     /* wichtig für die Klickfläche */
  text-decoration: none;
}

.logo-link:hover {
  opacity: 0.8;              /* schöner Hover-Effekt */
}

.nav {
  display: flex;
  gap: 30px;
}



.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.8;
  color: #c1d3ee;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  transition: all 0.3s;
}

/* HERO */
.hero {
  height: 75px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.infos {
  background: #f9f9f9;
  padding: 10px 0;
  padding-bottom: 80px;
}

.info-buttons {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: left;
}

.btn {
  display: inline-flex;
  align-items: left;
  justify-content: left;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 220px;           /* Mindestbreite */
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-phone {
  background-color: #ed6d35;
  color: white;
}

.btn-phone:hover {
  background-color: #c1d3ee;
  transform: translateY(-4px);
}

.btn-email {
  background-color: #6b150e;
  color: white;
}

.btn-email:hover {
  background-color: #c1d3ee;
  transform: translateY(-4px);
}

.ueber-uns {
  background: var(--light-blue);
  color: #222;
}

.kontakt {
  background: #fff;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--primary-brown);
  text-align: left;
}

/* Kontakt Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 700px;
 
  
}

/* FOOTER */
.footer {
  background: var(--primary-brown);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.copyright {
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
      position: fixed;
      top: 80px;
      left: -100%;
      height: calc(100vh - 80px);
      width: 100%;
      background: var(--primary-brown);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 60px;
      transition: left 0.4s ease;
      gap: 40px;
      font-size: 1.3rem;
  }
  
  .nav.active {
      left: 0;
  }
  
  .burger {
      display: flex;
  }
  
  .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
  }
  
  .burger.active span:nth-child(2) {
      opacity: 0;
  }
  
  .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    display: none !important;
}

  .section {
      padding: 60px 0;
  }

  
  h2 {
      font-size: 1.8rem;
  }
  
  
  .footer-nav {
    display: flex;
    gap: 20px;
  }
  
    .footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 300;
  }
}

@media (max-width: 480px) {
  .header .container {
      padding: 12px 15px;
  }
  
  .logo-img {
      height: 45px;
  }
}

@media (max-width: 600px) {
  .btn {
      min-width: 100%;        /* Auf Handy volle Breite */
      font-size: 1.05rem;
      padding: 15px 25px;
  }
}

