/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
}

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

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.nav a {
  text-decoration: none;
  color: #111;
}

/* BURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* HERO */
.hero {
  margin-top: 80px; /* FIX für fixed header */
  height: 60vh;
  min-height: 400px;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  color: white;
}

.hero h1 {
  font-size: 48px;
  margin: 0;
}

/* BUTTON (EINHEITLICH) */
.btn {
  display: inline-block;
  margin-top: 20px;

  background: #007BFF;
  color: #fff;

  padding: 12px 25px;
  text-decoration: none;

  border-radius: 6px;
  transition: all 0.3s ease;
}

/* HOVER (Premium) */
.btn:hover {
  background: #005fcc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: #111;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid #ccc;
  color: #111;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #111;
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

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

.section.dark {
  background: #111;
  color: white;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.card .icon img {
  width: 42px;
  height: 42px;
  stroke: #111;
  opacity: 0.9;
  transition: 0.3s;
}

/* Hover Effekt */
.card:hover .icon img {
  transform: scale(1.15);
  transition: 0.3s ease;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
}

/* CONTACT */
/* CONTACT PREMIUM */
.contact-premium {
  background: #f7f7f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* CARD */
.contact-card {
  background: white;
  padding: 45px;
  border-radius: 16px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.company {
  font-weight: 600;
  font-size: 20px;
}

.address {
  margin: 15px 0;
  color: #555;
}

.region {
  color: #777;
}

/* BUTTONS */
.contact-actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}


/* MAP CARD */
.map-card {
  position: relative;
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border: none;
}


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


/* FOOTER */
.footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-left {
  display: flex;
  gap: 15px;
  align-items: center;

  font-size: 14px;
  color: #aaa;
}

.footer-left a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-left a:hover {
  color: #ddd;
}

/* WHATSAPP (nur eine Variante!) */

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  animation: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: white;

  padding: 14px 18px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 500;

  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 999;
}



/* ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav ul {
    position: absolute;
    top: 70px;
    right: 20px;
    left: auto;

    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    display: none;
  }

  .nav ul.active {
    display: flex;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-btn .text {
    display: none;
  }
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* CLOSE */
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* ARROWS */
#lightbox .prev,
#lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

#lightbox .prev { left: 20px; }
#lightbox .next { right: 20px; }
