*{
    margin: 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: default;
}

body{
    margin: 0;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
}



.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d0d0d;
}

.glow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 207, 255, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: top 0s, left 0s;
}




.content{
    width: 1200px;
    color: white;
    z-index: 1;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: #0d0d0d;
}

.inner-header{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.branding{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-placeholder{
    height: 50px;
    width: 50px;
}

.site-title{
    font-size: 22px;
    font-weight: bold;
    width: 125px;
}

.menu{
    display: flex;
    gap: 10px;
    padding: 4px;
}

#menu{
    display: none;
}

.menu-item {
  display: inline-block;
  width: auto;           /* behält individuelle Breiten */
  padding: 3px 7px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: transparent;       /* unsichtbar im Normalzustand */
  border-radius: 5px;
  box-shadow: none;                    /* kein Schatten standardmäßig */
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  color: white;
  cursor: pointer;

  transition: 
    background-color 0.2s ease,       /* sanftes Einblenden */
    box-shadow 0.2s ease,              /* sanftes Einblenden des Schattens */
    transform 0.1s ease;               /* für Klick-Animation */
}

.menu-termin{
    background-color: #00CFFF;
    color: black;
    box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.menu-item:hover {
  background-color: #00CFFF;
  color: black;
  box-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.menu-item:active {
  transform: translateY(1px) translateX(1px);          /* nach unten drücken */
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* reduzierter Schatten */
}


.small-screen{
    display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100vh;
  background-color: #0d0d0d;
  transition: right 0.5s ease-in-out;
  padding: 2rem;
  z-index: 1001;
  box-shadow: 0 0 15px #00CFFF;
  border-radius: 10px;
  margin-top: 80px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin: 10px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
}


@media screen and (max-width: 750px) {

    .inner-header{
        flex-direction: row;
        justify-content: space-between;
        padding: 0 50px;
        align-items: center;
    }

    .menu{
        display: none;
    }

    .small-screen{
        display: block;
    }

    .icons{
        width: 40px;
    }
}

/* Responive Menu */
@media screen and (max-width: 925px) {
  .mobile-menu {
    position: fixed;
    top: 80px; /* Höhe des Headers */
    right: -110%; /* Startposition komplett rechts draußen */
    width: 90%;
    height: calc(100vh - 100px);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 0 15px #00CFFF;
    z-index: 1001;
    background-color: #0d0d0d;
    transition: right 0.5s ease-in-out;
    transform: translateX(50%);
  }

  /* Offen: mittig platzieren */
  .mobile-menu.open {
    right: 50%; /* rechte Kante auf Bildschirmmitte */
  }

  .mobile-menu ul {
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .mobile-menu ul li a {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* Responive Menu */
@media screen and (max-width: 680px){
    .mobile-menu{
        width: 80%;
    }
}

@media screen and (max-width: 680px){
    .inner-header{
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .menu{
        display: none;
    }

    .small-screen{
        display: block;
    }
    
    .logo-placeholder{
        height: 30px;
        width: 30px;
    }

    .site-title{
        font-size: 22px;
        font-weight: bold;
    }
}

.start{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    padding: 50px 20px 0;
}

.titel{
    font-size: 65px;
}

.titel span{
    color: #00CFFF;
}

.untertitel{
    font-size: 26px;
    color: #ccc;
    margin-top: 40px;
}

@media screen and (max-width: 925px) {
    .titel{
        font-size: 50px;
    }

    .untertitel{
        font-size: 20px;
    }
}

@media screen and (max-width: 710px) {
    .start{
        padding-top: 30px;
    }

    .titel{
        font-size: 40px;
    }

    .untertitel{
        font-size: 18px;
    }
}

@media screen and (max-width: 365px) {
    .titel{
        font-size: 36px;
    }
}

/* Abschnitt mit etwas Luft */
.fragebox{
  display:flex;
  justify-content:center;
  padding: 10px 20px 30px;
}

/* Formular-Layout */
.audit-form{
  width: 100%;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;    /* Labels linksbündig, Formular bleibt zentriert via max-width */
  margin: 0 auto;
}

.audit-form label{
  display:flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
}

/* Inputs im Dark-Theme wie auf deiner Termin-Seite */
.audit-form input,
.audit-form textarea{
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 0.5px solid #888;
  border-radius: 15px;
  background: #333;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.audit-form textarea{ resize: vertical; }

/* Einverständniszeile horizontal ausrichten */
.audit-form .audit-consent {
  display: flex;           /* Flex-Container für Checkbox + Text */
  flex-direction: row;     /* Checkbox links, Text rechts */
  align-items: center; /* Oben ausrichten */
  gap: 8px;                /* Abstand zwischen Häkchen und Text */
  text-align: left;        /* Text linksbündig */
}

.audit-form .audit-consent input[type="checkbox"] {
  width: auto;       /* Optional: leicht nach unten schieben für bessere Optik */

}

.audit-form .audit-consent a{
  color: #00CFFF;
  text-decoration: none;
}
.audit-form .audit-consent a:hover{
  text-decoration: underline;
}

/* Submit-Button im gleichen Stil wie bei dir */
.btn-audit{
  padding: 12px 16px;
  border-radius: 12px;
  border:1px solid rgba(0,207,255,.7);
  background: rgba(0,207,255,.2);
  color:#fff;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .1s ease;
}
.btn-audit:hover{
  background: rgba(0,207,255,.3);
  box-shadow: 0 0 8px rgba(0,207,255,.5);
}
.btn-audit:active{
  transform: translateY(1px);
}

.btn-audit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

/* Kleinere Screens */
@media (max-width: 480px){
  .audit-form label{ font-size: 15px; }
  .btn-audit{ font-size: 16px; }
}

.kontaktformular{
  padding: 20px;
  background: #333;
  border-radius: 15px;
  border: #444 1px solid;
  box-shadow: inset 0 0 15px #444;
}

.kontaktformular:hover{
    border: #00CFFF 1px solid;
    box-shadow: 0 0 5px #00CFFF;
}


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

.angaben{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.angaben a{
    text-decoration: none;
    color: white;
}

.links{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: -10px;
}

@media screen and (max-width: 700px) {
    .footer{
        flex-direction: column-reverse;
        justify-content: center;
        gap: 20px;
    }
}

.bulletpoints{
  margin: 0 auto;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bulletpoints p{
  font-size: 20px;
}

/*Design für Dankespage*/
.thankyou-page {
  display: flex;
  flex-direction: column;     /* Inhalte untereinander */
  align-items: center;        /* horizontal zentrieren */
  justify-content: center;    /* vertikal zentrieren */
  height: 100vh;              /* volle Höhe des Bildschirms */
  text-align: center;         /* Text zentrieren */
  color: white;               /* falls du den Style vom Rest übernehmen willst */
  z-index: 1;
  padding-left: 20px;
  padding-right: 20px;
}

.tp-titel{
  font-size: 65px;
}

.tp-titel span{
  color: #00CFFF;
}

.tp-subtitel{
  font-size: 26px;
}

.eins{
  padding-top: 30px;
  padding-bottom: 8px;
}

.zwei{
  padding-bottom: 50px;
}

.buttons {
  display: flex;
  gap: 20px;              /* Abstand zwischen den Buttons */
  justify-content: center;
  align-items: center;
}

.btn {
  flex: 1;                /* beide nehmen gleich viel Platz ein */
  min-width: 250px;       /* gleiche Mindestbreite */
  text-align: center;     /* Text mittig */
  text-decoration: none;
  font-size: 20px;
  color: white;
  padding: 10px 12px;
  border: 1px solid rgb(0, 207, 255, 0.7);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover{
  background-color: rgb(0, 207, 255, 0.7);
  box-shadow: 0 0 8px rgb(0, 207, 255, 0.7);
  color: #000;
}

@media (max-width: 480px){
  /* Danke-Seite Typo verkleinern */
  .tp-titel{ font-size: 36px; }
  .tp-subtitel{ font-size: 16px; }
  .booking-form button{ font-size: 16px;}
}