* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 20px;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none; /* wichtig */
  background: transparent;   /* <<< WICHTIG */
}

.header.scrolled {
  background: transparent;
  box-shadow: none;
}

.header-inner {
  pointer-events: auto;
  background: rgba(179, 150, 150, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 999px; /* <<< das macht die Umkreisung */
  padding: 4px 36px;
  max-width: 1200px;
  width: calc(100% - 40px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition:
    max-width 0.35s ease,
    padding 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.header.at-top .header-inner {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header.scrolled .header-inner {
  background: rgb(30, 34, 41);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.logo {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

.logo span {
  color: #e63946;
}

/* NAV */
.nav {
  display: flex;
  gap: 50px;
}

.nav a {
  color: white;
  text-decoration: none;
    font-size: 20px;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f2e3c6;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* CALL BUTTON */
.call-btn {
  background: #d9c69c;
  color: white;

  font-size: 16px !important;
  padding: 16px 32px !important;

  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
}

/* HERO */
.hero {
  height: 70vh;
  min-height: 420px;     /* schützt vor zu klein auf großen Screens */

  background: url(images/fd5f9278-ff94-4e3b-80a7-11f1bd2f1898.png) center/cover no-repeat;
  background-size: cover;
  background-position: center;

  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.75)
  );
}

.hero-content {
  position: relative;
  max-width: 1300px;
  margin: auto;
  padding: 0 32px;
  color: white;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.2;
}

.logo img {
  height: 100px;        /* Höhe des Logos */
  width: auto;
  display: block;
   border-radius: 12px; 
}

/* INTRO / ERKLÄRUNG UNTER HERO */
.intro {
  background: #ffffff;
  padding: 120px 20px;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 28px;
  color: #1a1a1a;
}

.intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

/* Button */
.intro-btn {
  display: inline-block;
  background: #d9c69c;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* SERVICES SECTION */
.services {
  background: #1a1a1a;
  padding: 120px 20px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 500;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Card */
.service-card {
  background: #3a3333;
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  color: #ffffff;
  min-height: 260px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-card h3 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Nummer */
.service-number {
  position: absolute;
  top: 90px;
  left: 28px;

  width: 42px;
  height: 42px;
  background: #3b82f6;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 15px;
}

/* Text */
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e5e5;
}

/* Service Bilder */
.service-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MAP SECTION */
.map-section {
  background: #fff;
  padding: 120px 20px;
}

.map-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.map-text {
  text-align: center;
  margin-bottom: 40px;
}

.map-text h2 {
    font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.map-text p {
    
  font-size: 16px;
  color: #1a1a1a;
}

/* Map Container */
.map-wrapper {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FOOTER */
.footer {
  background: #1f242b;
  color: #cfd6dd;
  padding: 100px 20px 40px;
  margin-bottom: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Logo */
.footer-logo {
  height: 120px;
  margin-bottom: 20px;
}

/* Spalten */
.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #bfc7cf;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #bfc7cf;
}

.footer-col ul li a {
  color: #bfc7cf;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.footer-bottom p {
  font-size: 13px;
  color: #9aa3ab;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 80px 20px 30px;
      height: auto;
       margin-bottom: 0;
  }
}

.contact-line {
    font-size: 14px;        /* exakt wie dein Footer-Text */
  line-height: 1.8;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.contact-line a {
  color: #bfc7cf;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header {
    top: 10px;
  }

  .header-inner {
    padding: 6px 16px;
  }

  .logo img {
    height: 48px;
  }

  .nav {
    display: flex;
    gap: 20px;
  }
}
  .call-btn {
    padding: 8px 14px;
    font-size: 14px;
  }


@media (max-width: 768px) {
  .hero {
    height: 50vh;
    min-height: 320px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .intro {
    padding: 70px 20px;
  }

  .intro h2 {
    font-size: 28px;
  }

  .intro p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
  }

  .services-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 80px 20px;
  }

  .map-wrapper {
    height: 280px;
  }

  .map-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    height: 70px;
  }

  .footer-col p,
  .footer-col li {
    font-size: 14px;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-line {
    white-space: normal;
    flex-wrap: wrap;
  }
}

/* CONTACT PAGE */
.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 180px 20px 120px;
  text-align: center;
 
}

/* Kontaktinfos */
.contact-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

.contact-info .company {
  margin-top: 10px;
  font-weight: 500;
}

.contact-details {
  margin-top: 30px;
}

.contact-details a {
  color: #000;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* Formular */
.contact-form {
  margin-top: 80px;
}

.contact-form h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-form .form-text {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* Form Fields */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* Button */
.contact-form button {
  margin-top: 10px;
  padding: 16px;
  background: #1f242b;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.contact-form button:hover {
  background: #000;
}

.page-contact .header-inner {
  background: rgb(30, 34, 41);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.page-contact .header.at-top .header-inner {
  background: rgb(30, 34, 41);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;      /* verhindert iOS Zoom */
    padding: 16px;
  }

  .contact-form button {
    font-size: 16px;
    padding: 16px;
  }
}

@media (max-width: 768px) {

  /* Seitenabstand */
  .contact-page {
    padding: 140px 16px 80px;
  }

  /* Überschrift */
  .contact-info h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  /* Untertexte */
  .contact-info p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Formular-Titel */
  .contact-form h2 {
    font-size: 26px;
  }

  .contact-form .form-text {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.contact-page {
  padding: 180px 20px 120px;
}

@media (max-width: 768px) {
  .contact-details a {
    display: inline-block;
    padding: 6px 0;
  }
}

/* LEGAL / IMPRESSUM */
.legal-page {
  padding: 180px 20px 120px; /* Platz für fixed Header */
  background: #ffffff;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 18px;
  margin: 40px 0 14px;
  color: #1a1a1a;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.legal-content a {
  color: #1a1a1a;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 150px 16px 80px;
  }

  .legal-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {

  /* Anrufen-Button komplett ausblenden */
  .call-btn {
    display: none;
  }

  /* Header etwas kompakter */
  .header-inner {
    padding: 8px 16px;
  }
}

/* WhatsApp Kontakt */
.whatsapp-contact {
  margin-top: 40px;
  text-align: center;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.whatsapp-hint {
  margin-top: 14px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px;
  }
}
