:root {
  --green: #388E3C;
  --green-dark: #2E7D32;
  --red: #D32F2F;
  --gap: 60px;
}

/* ================= Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html, body {
  height: 100%;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1; /* <<< DAS IST DER ENTSCHEIDENDE PUNKT */
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= Header ================= */
header {
  height: 64px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  position: static;
  top: 0;
  z-index: 100;
}

.logo {
  height: 320px;
  position: relative;
  top: 60px;
  left: -30px;
}


nav a {
  margin-left: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

nav a:hover { color: var(--red); }
nav a.active { color: var(--green); }

/* ================= Hero ================= */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero-servus {
  font-family: "Freestyle Script", cursive;
  font-size: 96px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ================= Page Title ================= */
.page-title {
  font-family: "Freestyle Script", cursive;
  font-size: 96px;
  margin-bottom: 10px;
  text-align: center;
}


/* ================= CTA ================= */
.cta-section {
  margin: var(--gap) 0;
  display: flex;
  justify-content: center;
}

.cta-button-green {
  background: var(--green);
  color: #fff;
  padding: 18px 44px;
  border-radius: 12px;
  font-size: 19px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-green:hover {
  background: var(--green-dark);
  color: var(--red);
}

/* ================= Services ================= */
.services-section {
  max-width: 1200px;
  margin: var(--gap) auto;
  padding: 0 20px;
}

.services {
  display: flex;
  gap: 25px;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border-radius: 20px;
  padding: 34px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.service-type {
  color: var(--red);
  font-weight: 700;
  text-align: center;
}

.service-size {
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-bottom: 14px;
}

.service-list {
  padding-left: 18px;
}

.service-list li {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: left;
}

.service-card h3 {
  margin-bottom: 10px;
  text-align: center;
}

.service-card.contact-info {
  text-align: center;
}

.service-extra h3 {
  margin-bottom: 32px;
}

.service-details {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ===== PREISE: BULLETPOINTS IM INFOBLOCK ===== */
/* ======================================
   BULLETS BEI PREIS-INFOS (DESKTOP)
   ====================================== */
.services-section .service-card ul.service-details {
  list-style: disc;
  padding-left: 20px;
}

.services-section .service-card ul.service-details li {
  margin-bottom: 6px;
}

/* ======================================
   BULLETS BEI PREIS-INFOS (MOBILE)
   ====================================== */
.mobile-service-details {
  list-style: disc;
  padding-left: 20px;
}

/* ======================================
   KEINE BULLETS BEI KONTAKTINFOS
   ====================================== */
.service-card.contact-info ul.service-details {
  list-style: none;
  padding-left: 0;
}


/* ================= Eindrücke ================= */
.impressions-section {
  max-width: 1200px;
  margin: var(--gap) auto;
  padding: 0 20px;
  text-align: center;
  margin-top: 0;
}

.impressions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(369px, 1fr));
  gap: 60px;
}

.impressions-grid img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 0 40px 8px rgba(255,255,255,0.18);
}

.impressions-section h2 {
  margin-bottom: 60px;
}


/* ================= Preise CTA ================= */
.price-preview {
  margin: var(--gap) 0;
  display: flex;
  justify-content: center;
}

.price-gross {
  text-align: right;
  white-space: nowrap;
}

.vat-info {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.gross-price {
  font-size: 16px;
  color: #fff;
}

.mobile-price-list {
  display: none;
}

/* ================= Footer ================= */
footer {
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  color: #ccc;
  white-space: nowrap;
}

.footer-address a {
  color: var(--green);
}

.footer-address a:hover {
  color: var(--red);
}

.footer-address .sep {
  margin: 0 16px;
  color: #555;
}

/* ================= Intro Animation ================= */
.logo-intro {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: introFadeOut 1.8s ease forwards;
  animation-delay: 3s;
}

.logo-intro img {
  width: 1280px;
  animation: logoMove 3.2s ease forwards;
}

@keyframes logoMove {
  0% { transform: scale(0.6); opacity: 0; }
  45% { transform: scale(1); opacity: 1; }
  100% { transform: translate(-782px, -383px) scale(0.25); }
}

@keyframes introFadeOut {
  to { opacity: 0; pointer-events: none; }
}

/* ================= Page Enter ================= */
.page-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: pageFadeIn 1.2s ease-out forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; transform: translateY(0); }
}


/* ================= Section Header ================= */
.section-header {
  margin-bottom: 60px;   /* Abstand zu den Boxen darunter */
  text-align: center;
}


/* ================= Preise – Option B ================= */
.price-list {
  width: 100%;
  margin-top: 24px;
}

.price-row {
  display: grid;
  grid-template-columns: 3fr 3fr 1.2fr 1.2fr 1.2fr;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  column-gap: 32px;
}

.price-head {
  font-weight: 600;
  opacity: 0.7;
}



.price-row span {
  display: table-cell;
  padding: 10px 0;
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
  line-height: 0.6;
  
}

.price-row span:nth-child(1) { text-align: left; }   /* Größe */
.price-row span:nth-child(2) { text-align: left; }   /* Personen */
.price-row span:nth-child(3) { text-align: right; }  /* Netto */
.price-row span:nth-child(4) { text-align: right; }  /* MwSt */
.price-row span:nth-child(5) { text-align: right; }  /* Brutto */


.price-net,
.price-vat {
  color: #bbb;
  text-align: right;
}

.price-vat {
  font-size: 13px;
}

.price-gross {
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}


/* ================= Preise: schmalere Boxen ================= */
.services-section .service-card {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}




.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* ================= Anti-Spam Honeypot ================= */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hp-field label,
.hp-field input {
  display: none !important;
}

/* Kontaktlinks grün wie im Footer */
.service-card a[href^="tel"],
.service-card a[href^="mailto"] {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.service-card a[href^="tel"]:hover,
.service-card a[href^="mailto"]:hover {
  text-decoration: underline;
}


.form-group {
  margin-top: 10px;
}

.form-label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  text-align: center;
  color: #ddd;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

/* Hauptbuttons (Typ 1, Typ 2, Zubehör) */
.option-item {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 64px;
  padding: 10px;

  background: transparent;
  border: 1px solid #444;
  border-radius: 10px;

  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;

  cursor: pointer;
  transition: all 0.2s ease;
}

.option-item:hover {
  border-color: var(--green);
}

.option-item.active {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  font-weight: 600;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #0f0f0f;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  color: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.modal h3 {
  text-align: center;
  margin-bottom: 20px;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}

.modal-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
}

.modal-option input {
  display: none;
}

.modal-option span {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 16px;
  min-height: 52px;

  background: transparent;
  border: 1px solid #444;
  border-radius: 12px;

  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-align: center;

  transition: all 0.2s ease;
}

.modal-option input:checked + span {
  background: #4caf50;
  border-color: #4caf50;
  color: #fff;
  font-weight: 600;
}

.modal-option span:hover {
  border-color: #4caf50;
}

/* Modal-Buttons */
.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}

/* Abbrechen */
.btn-cancel {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid #c62828;
  background: transparent;
  color: #c62828;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background: #c62828;
  color: #fff;
}

/* Übernehmen */
.btn-confirm {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid #4caf50;
  background: #4caf50;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-confirm:hover {
  background: #43a047;
}


/* Zubehör mit Mengenwahl */
.qty-option {
  flex-direction: column;
  gap: 8px;
}

.quantity-selector {
  display: none;
  align-items: center;
  gap: 10px;
}

.quantity-selector button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 18px;
  cursor: pointer;
}

.quantity-selector span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

/* nur sichtbar, wenn Checkbox aktiv */
.qty-option input:checked ~ .quantity-selector {
  display: flex;
}


/* 1. STANDARD: alle Formularfelder dunkler Grundzustand */
.contact-form input,
.contact-form textarea {
  background-color: #111 !important;
  color: #fff !important;
}

/* 2. BESCHREIBBARE FELDER bewusst heller */
.contact-form input:not([readonly]):not([disabled]),
.contact-form textarea:not([readonly]):not([disabled]) {
  background-color: #2a2a2a !important;
}

/* 3. READONLY-FELD explizit wieder dunkel */
.contact-form textarea[readonly] {
  background-color: #111 !important;
  color: #bbb !important;
  cursor: default;
}

/* 4. Placeholder besser lesbar */
.contact-form ::placeholder {
  color: #aaa;
}

/* Kontaktinformationen – Linkfarbe & kein Unterstrich */
.contact-info a {
  color: #4caf50 !important;        /* grün */
  text-decoration: none !important; /* nie unterstrichen */
  background: none !important;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #e53935 !important;        /* rot */
}



/* HIER STARTEN DIE MOBILDATEN */

/* ===== MOBILE FIRST – STABIL & SAUBER (TYPO FIX) ===== */
@media (max-width: 900px) {

  /* ===== BASIS ===== */
  body {
    overflow-x: hidden;
  }	

.container,
.services,
.impressions-grid {
  max-width: 100%;
  overflow-x: hidden;
}

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* ===== LOGO (KEINE ANIMATION) ===== */
  .logo-intro {
    display: none;
  }

  .logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: static;
    margin: 0 auto;
  }

  header {
    padding: 16px 0;
  }

  /* ====================================================
     TYPOGRAFIE – KORREKT GETRENNT
     ==================================================== */

  /* ===== STARTSEITE (HERO) ===== */
  .hero-servus {
    font-size: 50px;      /* größer als vorher */
    line-height: 1.15;
    text-align: center;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
  }

  /* ===== ALLE ANDEREN SEITEN ===== */
  h1:not(.hero-servus) {
    font-size: 50px;      /* greift jetzt wirklich überall */
    line-height: 1.25;
    margin-bottom: 12px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 18px;
    line-height: 1.35;
  }

  p, li {
    font-size: 16px;
    line-height: 1.6;
  }

  /* ===== STARTSEITE – SERVICES ===== */
  .services {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .service-card,
  .price-card,
  .contact-card {
    width: 100%;
  }

  /* ===== IMPRESSIONS ===== */
  .impressions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ===== OPTIONEN ===== */
  .option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

   /* ===== FOOTER ===== */
  footer {
    padding: 24px 16px;
    text-align: center;
  }

  .footer-address {
    white-space: normal;
    word-break: break-word;
  }

/* ===== MOBILE PREISLISTE ===== */

/* ===============================
   MOBILE: NUR DESKTOP-PREISE AUS
   =============================== */

  /* Typ 3 (direkte Preiszeilen) */
  .services-section > .service-card > .price-row,
  .services-section > .service-card > .price-head {
    display: none !important;
  }

/* Überschrift "Preise" in mobiler Preisliste ausblenden */
.mobile-price-list > h2 {
  display: none;
}
	
/* Mobile-Preisliste einblenden */
.mobile-price-list {
  display: block;
  margin-top: 40px;
}

/* Service-Wrapper */
.mobile-service {
  margin-bottom: 48px;
}

/* Typ-Überschrift */
.mobile-service h3 {
  text-align: center;
  margin-bottom: 4px;
  color: var(--red);
  font-weight: 700;
}

/* Typ-Zusatzinfo (z. B. Breite) */
.mobile-service-size {
  text-align: center;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}

/* Infos vor den Preisen */
.mobile-service-details {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 18px;
  color: #ccc;
  font-size: 15px;
}

.mobile-service-details li {
  margin-bottom: 6px;
}
	
/* Tabellenkopf */
.mobile-table-head {
  display: none;
}

/* Einzelne Preisbox */
.mobile-card {
  background: linear-gradient(180deg, #151515, #0d0d0d);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

/* Zeilen innerhalb der Preisbox */
.mobile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.mobile-row strong {
  color: #bbb;
  font-weight: 500;
  position: relative;
}

/* NUR bei MwSt (4. Zeile) "(19%)" anhängen */
.mobile-card .mobile-row:nth-child(4) strong::after {
  content: " (19%)";
  font-weight: 400;
  color: #aaa;
}
	
/* Mobile: "auf Anfrage" rechtsbündig */
.mobile-request {
  justify-content: flex-end;
  text-align: right;
  font-weight: 600;
  }

.mobile-request strong {
  color: #fff;
}	

/* =====================================
   MOBILE: DESKTOP-PREIS-CARDS AUSBLENDEN
   ===================================== */
  /* ALLE Desktop-Preisboxen ausblenden */
.page-prices .services-section > .service-card {
  display: none !important;
 }
}

/* ===============================
   INTRO-ANIMATION NUR AUF DESKTOP
   =============================== */
@media (hover: none) {
  .logo-intro {
    display: none !important;
  }
}
