/* ================================
   Scroll-Animationen
   ================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.muster-banner {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

body{
    margin: 0;
    background-color: rgb(255, 255, 255);
}

@font-face {
    font-family: 'GoogleSans';
    src: url('../fonts/GoogleSans-Regular.ttf');
    font-weight: 400;
}

/* ================================
   Navbar
   ================================ */

.navbar{
    background-color: rgb(255, 255, 255);
    margin-top: 0;
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.firma-name{
    margin-left: 40px;
}

.firma-name a{
    text-decoration: none;
}

.firma-name h1{
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
}

.firma-name span{
    color: rgb(0, 0, 0);
    font-family: 'GoogleSans';
    text-decoration: none;
}

.nav-links{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-links a{
    color: rgb(0, 0, 0);
    margin: 10px;
    text-decoration: none;
    list-style: none;
    font-family: 'GoogleSans';
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(255, 255, 255);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    min-width: 160px;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    margin: 0;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: rgb(224, 240, 255);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ================================
   Startseite
   ================================ */
.hero1-startseite{
    width: 100%;
    display: flex;
    justify-content: right;
    height: 100vh;
}

.hero1-startseite img{
    width: 60%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.startseite-text {
    background-color: rgb(21, 69, 136);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero1-startseite h2{
    color: white;
    font-family: 'GoogleSans';
}

.hero1-startseite p {
    color: white;
    margin: 4px 0;
    font-family: 'GoogleSans';
}

.button-über-uns{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(15, 22, 70);
    width: 80px;
    height: 30px;
    border-radius: 4px;
    margin-top: 10px;
    transition: 0.2s;
}

.button-über-uns:hover{
    transform: scale(1.05);
}


.button-über-uns a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: 'GoogleSans';
}

.hero2-startseite a{
    text-decoration: none;
    display: block;
    flex: 1;
    height: 100%;
}

.hero2-startseite{
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
}

.hero2-startseite-links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    margin: 20px;
    padding: 20px;
    gap: 20px;
}

.Oralchirurgie, .Implantologie, .Zahnheilkunde{
    width: 100%;
    height: 100%;
    background-color: rgb(21, 69, 136);
    padding: 16px 20px 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.Oralchirurgie h2, .Implantologie h2, .Zahnheilkunde h2,
.Oralchirurgie p, .Implantologie p, .Zahnheilkunde p{
    color: white;
    font-family: 'GoogleSans';
}

.Oralchirurgie h2, .Implantologie h2, .Zahnheilkunde h2 { order: 1; }
.Oralchirurgie img, .Implantologie img, .Zahnheilkunde img { order: 2; width: 100%; height: 180px; object-fit: cover; object-position: center 60%; }
.Oralchirurgie p, .Implantologie p, .Zahnheilkunde p { order: 3; }

.Oralchirurgie img, .Implantologie img, .Zahnheilkunde img{
    border-radius: 15px;
}

.hero2-startseite-text{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero2-startseite-text h1{
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
}

.hero3-startseite{
    background-color: rgb(21, 69, 136);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero3-startseite-text{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero3-startseite-text h1{
    color: white;
    font-family: 'GoogleSans';
}

.galerie-startseite{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 40px 40px 40px;
}

.galerie-startseite img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s, brightness 0.3s;
}

.galerie-startseite img:hover{
    transform: scale(1.03);
    filter: brightness(1.1);
}
/* ================================
   Terminseite
   ================================ */

.termin-hero {
    background-color: rgb(21, 69, 136);
    padding: 70px 40px 60px 40px;
    text-align: center;
}

.termin-hero h1 {
    color: white;
    font-family: 'GoogleSans';
    font-size: 2.2rem;
    margin: 0 0 14px 0;
}

.termin-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'GoogleSans';
    font-size: 1rem;
    margin: 0;
}

.termin-seite {
    display: flex;
    gap: 0;
    min-height: calc(100vh - 100px);
}

.termin-info {
    background-color: rgb(240, 245, 255);
    width: 320px;
    min-width: 320px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.termin-info h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    font-size: 1.2rem;
    margin: 0 0 8px 0;
}

.termin-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.termin-info-icon {
    font-size: 1.4rem;
    margin-top: 2px;
}

.termin-info-block strong {
    display: block;
    font-family: 'GoogleSans';
    color: rgb(21, 69, 136);
    margin-bottom: 4px;
}

.termin-info-block p {
    font-family: 'GoogleSans';
    color: rgb(50, 50, 50);
    margin: 0 0 2px 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.termin-formular-wrapper {
    flex: 1;
    padding: 50px 60px;
    background-color: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.termin-formular {
    width: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.termin-formular .form-gruppe {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.termin-formular .form-reihe {
    display: flex;
    gap: 20px;
}

.termin-formular .form-reihe .form-gruppe {
    flex: 1;
}

.termin-formular label {
    font-family: 'GoogleSans';
    font-size: 0.88rem;
    color: rgb(21, 69, 136);
    font-weight: bold;
}

.termin-formular input,
.termin-formular select,
.termin-formular textarea {
    font-family: 'GoogleSans';
    font-size: 0.95rem;
    color: rgb(30, 30, 30);
    background-color: rgb(240, 245, 255);
    border: 1.5px solid rgb(200, 215, 240);
    border-radius: 8px;
    padding: 12px 14px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.termin-formular select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23154588' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.termin-formular input:focus,
.termin-formular select:focus,
.termin-formular textarea:focus {
    border-color: rgb(21, 69, 136);
    box-shadow: 0 0 0 3px rgba(21, 69, 136, 0.12);
}

.termin-formular textarea {
    resize: vertical;
    min-height: 100px;
}

.termin-submit {
    background-color: rgb(21, 69, 136);
    color: white;
    font-family: 'GoogleSans';
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.2s, transform 0.2s;
}

.termin-submit:hover {
    background-color: rgb(15, 22, 70);
    transform: scale(1.03);
}

/* ================================
   Kontaktseite
   ================================ */

.kontakt-seite {
    display: flex;
    min-height: calc(100vh - 100px);
}

.kontakt-formular-wrapper {
    flex: 1;
    padding: 50px 60px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.kontakt-formular-wrapper h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    font-size: 1.5rem;
    margin: 0 0 12px 0;
}

.kontakt-intro {
    font-family: 'GoogleSans';
    color: rgb(70, 70, 70);
    line-height: 1.7;
    margin: 0 0 28px 0;
    max-width: 560px;
}

.kontakt-info-wrapper {
    width: 380px;
    min-width: 380px;
    display: flex;
    flex-direction: column;
}

.kontakt-karte-placeholder {
    background-color: rgb(200, 215, 240);
    flex: 1;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-karte-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.kontakt-karte-text span {
    font-size: 2rem;
}

.kontakt-karte-text p {
    font-family: 'GoogleSans';
    color: rgb(21, 69, 136);
    font-size: 0.95rem;
    margin: 0;
}

.kontakt-karte-text small {
    font-family: 'GoogleSans';
    color: rgb(100, 120, 160);
    font-size: 0.78rem;
}

.kontakt-daten {
    background-color: rgb(240, 245, 255);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kontakt-daten-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.kontakt-daten-item strong {
    display: block;
    font-family: 'GoogleSans';
    color: rgb(21, 69, 136);
    margin-bottom: 4px;
}

.kontakt-daten-item p {
    font-family: 'GoogleSans';
    color: rgb(50, 50, 50);
    margin: 0 0 2px 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.kontakt-termin-link {
    display: inline-block;
    margin-top: 6px;
    font-family: 'GoogleSans';
    font-size: 0.88rem;
    color: rgb(21, 69, 136);
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.2s;
}

.kontakt-termin-link:hover {
    opacity: 0.7;
}

/* ================================
   Leistungsseiten (Oralchirurgie, Implantologie, Zahnheilkunde)
   ================================ */

.leistung-hero {
    width: 100%;
    display: flex;
    justify-content: right;
    height: 100vh;
}

.leistung-hero img {
    width: 60%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.leistung-hero-text {
    background-color: rgb(21, 69, 136);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
}

.leistung-hero-text h1 {
    color: white;
    font-family: 'GoogleSans';
    font-size: 2rem;
    margin-bottom: 20px;
}

.leistung-hero-text p {
    color: white;
    font-family: 'GoogleSans';
    margin: 6px 0;
    line-height: 1.7;
}

.leistung-hero-text .button-termin {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(15, 22, 70);
    padding: 10px 24px;
    border-radius: 4px;
    margin-top: 24px;
    transition: 0.2s;
    text-decoration: none;
    color: white;
    font-family: 'GoogleSans';
}

.leistung-hero-text .button-termin:hover {
    transform: scale(1.05);
}

.leistung-details {
    padding: 60px 80px;
    background-color: white;
}

.leistung-details h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
}

.leistung-vorteile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.leistung-vorteil-card {
    background-color: rgb(21, 69, 136);
    border-radius: 15px;
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leistung-vorteil-card .vorteil-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.leistung-vorteil-card h3 {
    color: white;
    font-family: 'GoogleSans';
    margin: 0 0 10px 0;
}

.leistung-vorteil-card p {
    color: rgba(255,255,255,0.85);
    font-family: 'GoogleSans';
    line-height: 1.6;
    margin: 0;
}

.leistung-leistungen {
    padding: 60px 80px;
    background-color: rgb(240, 245, 255);
}

.leistung-leistungen h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
}

.leistung-liste {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.leistung-liste-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.leistung-liste-item .liste-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background-color: rgb(21, 69, 136);
    border-radius: 50%;
    margin-top: 6px;
}

.leistung-liste-item p {
    font-family: 'GoogleSans';
    color: rgb(30, 30, 30);
    margin: 0;
    line-height: 1.5;
}

.leistung-liste-item p strong {
    display: block;
    color: rgb(21, 69, 136);
    margin-bottom: 4px;
}

.leistung-cta {
    background-color: rgb(21, 69, 136);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.leistung-cta h2 {
    color: white;
    font-family: 'GoogleSans';
    font-size: 1.6rem;
    margin: 0;
}

.leistung-cta p {
    color: rgba(255,255,255,0.85);
    font-family: 'GoogleSans';
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

.leistung-cta a {
    display: inline-block;
    background-color: rgb(15, 22, 70);
    color: white;
    font-family: 'GoogleSans';
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.2s;
}

.leistung-cta a:hover {
    transform: scale(1.05);
}

/* ================================
   Über-uns-Seite
   ================================ */

.ueber-uns-philosophie {
    padding: 70px 80px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ueber-uns-philosophie h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.ueber-uns-philosophie p {
    color: rgb(40, 40, 40);
    font-family: 'GoogleSans';
    font-size: 1rem;
    line-height: 1.85;
    max-width: 780px;
    margin: 0 0 14px 0;
}

.ueber-uns-divider {
    width: 60px;
    height: 3px;
    background-color: rgb(21, 69, 136);
    border-radius: 2px;
    margin: 24px auto 36px auto;
}

.ueber-uns-kompetenz {
    padding: 70px 80px;
    background-color: rgb(240, 245, 255);
}

.ueber-uns-kompetenz h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 40px;
}

.kompetenz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kompetenz-card {
    background-color: rgb(21, 69, 136);
    border-radius: 15px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kompetenz-card .kompetenz-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.kompetenz-card h3 {
    color: white;
    font-family: 'GoogleSans';
    margin: 0 0 12px 0;
    font-size: 1.05rem;
}

.kompetenz-card p {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'GoogleSans';
    line-height: 1.65;
    margin: 0;
    font-size: 0.92rem;
}

.ueber-uns-persoenlich {
    padding: 70px 80px;
    background-color: white;
    display: flex;
    gap: 60px;
    align-items: center;
}

.ueber-uns-persoenlich-text {
    flex: 1;
}

.ueber-uns-persoenlich-text h2 {
    color: rgb(21, 69, 136);
    font-family: 'GoogleSans';
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.ueber-uns-persoenlich-text p {
    color: rgb(40, 40, 40);
    font-family: 'GoogleSans';
    line-height: 1.85;
    margin: 0 0 14px 0;
}

.ueber-uns-werte {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.ueber-uns-wert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ueber-uns-wert .wert-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background-color: rgb(21, 69, 136);
    border-radius: 50%;
    margin-top: 6px;
}

.ueber-uns-wert p {
    font-family: 'GoogleSans';
    color: rgb(30, 30, 30);
    margin: 0;
    line-height: 1.6;
}

.ueber-uns-wert p strong {
    color: rgb(21, 69, 136);
}

.ueber-uns-persoenlich-bild {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ueber-uns-persoenlich-bild img {
    width: 100%;
    max-width: 480px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
}

.ueber-uns-zahlen {
    background-color: rgb(21, 69, 136);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.ueber-uns-zahl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ueber-uns-zahl span.zahl {
    font-family: 'GoogleSans';
    font-size: 2.8rem;
    color: white;
    font-weight: bold;
}

.ueber-uns-zahl span.zahl-label {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}







.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-overlay.offen {
  display: flex;
}

.modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #1a3a5c;
}

.modal-schliessen {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.form-gruppe {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-gruppe label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-gruppe input,
.form-gruppe select {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
}

.form-reihe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}



/* ================================
   Impressum & Datenschutz
   ================================ */

.impressum-inhalt,
.datenschutz-inhalt {
    max-width: 760px;
    margin: 60px auto 80px auto;
    padding: 0 40px;
}

.impressum-inhalt h1,
.datenschutz-inhalt h1 {
    font-family: 'GoogleSans';
    color: rgb(21, 69, 136);
    font-size: 2rem;
    margin-bottom: 8px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgb(21, 69, 136);
}

.impressum-inhalt h2,
.datenschutz-inhalt h2 {
    font-family: 'GoogleSans';
    color: rgb(21, 69, 136);
    font-size: 1.1rem;
    margin: 32px 0 8px 0;
}

.impressum-inhalt p,
.datenschutz-inhalt p {
    font-family: 'GoogleSans';
    color: rgb(50, 50, 50);
    line-height: 1.75;
    margin: 0 0 6px 0;
    font-size: 0.95rem;
}

/* ================================
   Footer
   ================================ */

.footer {
    background-color: rgb(15, 22, 70);
    width: 100%;
    padding: 50px 60px 0 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col-title {
    font-family: 'GoogleSans';
    color: white;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.footer-brand h2 {
    font-family: 'GoogleSans';
    color: white;
    font-size: 1.3rem;
    margin: 0 0 4px 0;
}

.footer-brand h2 span {
    color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 10px 0 0 0;
    max-width: 260px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: white;
}


.footer-kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-kontakt-item span {
    font-size: 1rem;
    margin-top: 1px;
}

.footer-kontakt-item p {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

.footer-zeiten-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.footer-zeiten-row span {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.footer-zeiten-row span:last-child {
    color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-copyright {
    font-family: 'GoogleSans';
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

/* ================================
   Hamburger Button
   ================================ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 20px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: rgb(21, 69, 136);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar.nav-offen .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar.nav-offen .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar.nav-offen .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
        position: relative;
    }

    .firma-name {
        margin-left: 20px;
    }

    .firma-name h1 {
        font-size: 1.2rem;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 8px 20px 16px 20px;
        background-color: white;
        border-top: 1px solid rgb(240, 245, 255);
        gap: 0;
        box-sizing: border-box;
    }

    .nav-links.nav-offen {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links > li > a {
        display: block;
        padding: 10px 0;
        margin: 0;
        border-bottom: 1px solid rgb(240, 245, 255);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 4px 16px;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.aktiv .dropdown-menu {
        display: block;
    }

    /* --- Startseite Hero 1 --- */
    .hero1-startseite {
        flex-direction: column-reverse;
        height: auto;
    }

    .hero1-startseite img {
        width: 100%;
        height: 260px;
    }

    .startseite-text {
        padding: 40px 24px;
    }

    /* --- Startseite Hero 2 --- */
    .hero2-startseite {
        height: auto;
        padding: 32px 16px;
    }

    .hero2-startseite-links {
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 16px;
    }

    /* --- Startseite Hero 3 / Galerie --- */
    .hero3-startseite {
        height: auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .galerie-startseite {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
        gap: 8px;
    }

    /* --- Leistungsseiten Hero --- */
    .leistung-hero {
        flex-direction: column-reverse;
        height: auto;
    }

    .leistung-hero img {
        width: 100%;
        height: 260px;
    }

    .leistung-hero-text {
        padding: 40px 24px;
    }

    /* --- Leistungsseiten Details & Leistungen --- */
    .leistung-details,
    .leistung-leistungen {
        padding: 40px 24px;
    }

    .leistung-vorteile {
        grid-template-columns: 1fr;
    }

    .leistung-liste {
        grid-template-columns: 1fr;
    }

    .leistung-cta {
        padding: 40px 24px;
    }

    /* --- Terminseite --- */
    .termin-hero {
        padding: 40px 24px 32px 24px;
    }

    .termin-seite {
        flex-direction: column;
    }

    .termin-info {
        width: 100%;
        min-width: unset;
        padding: 32px 24px;
        gap: 24px;
    }

    .termin-formular-wrapper {
        padding: 32px 24px;
    }

    .termin-formular .form-reihe {
        flex-direction: column;
        gap: 0;
    }

    /* --- Kontaktseite --- */
    .kontakt-seite {
        flex-direction: column;
    }

    .kontakt-formular-wrapper {
        padding: 32px 24px;
    }

    .kontakt-info-wrapper {
        width: 100%;
        min-width: unset;
    }

    /* --- Über-uns --- */
    .ueber-uns-philosophie,
    .ueber-uns-kompetenz {
        padding: 40px 24px;
    }

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

    .ueber-uns-persoenlich {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .ueber-uns-persoenlich-bild img {
        height: 300px;
    }

    .ueber-uns-zahlen {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 24px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 24px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }

    /* --- Impressum / Datenschutz --- */
    .impressum-inhalt,
    .datenschutz-inhalt {
        padding: 0 20px;
        margin: 40px auto 60px auto;
    }

    /* --- Modal-Formular Zeilen --- */
    .form-reihe {
        grid-template-columns: 1fr;
    }
}