/* ===== Grundlayout ===== */
html {
  box-sizing: border-box;
  min-height: 100%;
    overflow-x: scroll;
    overflow-y: scroll; /*  Scrollbalken x und y erzwingen, damit Layout immer gleich dargestellt wird und nicht springt */
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: 0;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.0625rem;
  background: linear-gradient(to bottom, rgba(208,217,221,1) 0%, rgba(197,213,221,1) 44%, rgba(130,190,221,1) 82%, rgba(84,174,224,1) 100%);
}

/* ===== Header ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #585b6a;
  padding: 0.5rem 1rem;
  text-align: right;
}

.logo{
    max-width: 16rem;
    height: auto;
    float: left;
    border: 0;
    display: inline-flex;
}

/* ===== Navigation ===== */
nav {
  position: relative;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #ddd7c1;
  text-decoration: none;
  background: #585b6a;
  transition: background-color 0.3s;
}

.menu a:hover {
  background: #F48E2A;
  color: #32364a;
}

/* ===== Dropdown-Menüs ===== */
.dropdown {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 12rem;
  background: #585b6a;
  z-index: 999;
  flex-direction: column;
}

.menu li:hover > .dropdown {
  display: flex;
}

.dropdown a {
  padding: 0.6rem 1rem;
  border-top: 1px solid #444;
}

/* ===== Hamburger-Menü (mobil) ===== */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #ddd7c1;
  cursor: pointer;
  background: #585b6a;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

#menu-toggle {
  display: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    border-top: 1px solid #444;
  }

  /* Dropdowns im mobilen Menü */
  .menu li:hover > .dropdown {
    position: static;
    display: none;
  }

  .menu li:focus-within > .dropdown {
    display: flex;
  }

  .dropdown a {
    padding-left: 2rem;
  }
}

/* ===== Inhalt ===== */
main {
  background: #fff;
  max-width: 60rem;
  margin: 2rem auto;
  padding: 2rem;
}
h1{
    margin-bottom: 1rem;
    color: #32364a;
    font-size: 2.225rem;
}
h2, h3, p{
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}
h2{
    font-size: 1.6rem;
    color: #32364a;
    clear: both;
}
h3{
    font-size: 1.3rem;
    color: #32364a;
    clear: both;
}
img{
    max-width: 10rem;
    height: auto;
    margin: 0rem 1rem 1.5625rem 0rem;
    text-align: left;
}
figure{
    float: left;
    padding: 1rem 1rem 0 0;
}
figcaption{
    font-size: 1.1rem;
    color: black;
    text-align: left;
    padding: 0rem 1rem 1rem 0;
}
 .orangebutton {
      display: inline-block;
      background-color: orange;
      color: black;
      padding: 12px 24px;
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: bold;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .orangebutton:hover {
      background-color: darkorange;
    }


/*table, th, td{
    border:0.13rem solid white;
    text-align: center;
    vertical-align: top;
  }
table{
    max-width: 100%;
}
th{
    font-size: 1.5rem;
 }*/
/* ===== Footer ===== */
footer {
  background: #585b6a;
  color: #ddd7c1;
  text-align: center;
  padding: 1rem;
}
footer table, footer td{
    border:0.13rem solid #585b6a;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
}
footer table{
width: 70%;
margin-left: 15%;
margin-right: 15%;

}
footer li{
    /* background: orange; */
    display: inline-block;
    font-size: 0;  Damit Abstände zwischen den Links nicht mehr vorhanden sind */
}
footer a, footer strong{
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-size: 1.0625rem; /* Da die Abstände bei nav li und nav ul 0 sein sollen, muß hier die Schriftgröße wieder auf 17px gesetzt werden */
    
}
footer a:link, footer a:visited{
    color: #ddd7c1;
    background: #585b6a;
}
footer a:focus, footer a:hover, footer a:active, footer strong{
    color: #32364a;
    background: #F48E2A;
}
footer p{
    color: #ddd7c1;
    font-size: 1rem;
}
.rund{
    border-radius: 50%;
    /* max-width: 8rem; mit Eberatung */ 
    max-width: 10rem; /* ohne Eberatung */
    height: auto;
}
.ich{
    float: left;
    max-width: 20rem;
}
.team{
    float: left;
    max-width: 10rem;
}
.logofb{
    float: left;
    max-width: 2.5rem;
}
.preise{
    border:0.13rem solid black;
    text-align: left;
    max-width: 100%;
    font-size: 1.5rem;
    padding: 0.2rem 1rem;
}
.stop{
    clear: both;
    margin-top: 1rem;
}
.social{
    max-width: 5rem;
}
.fuss{
    float: none;
}
.links{
    float: left;
  }
.Termin{
    font-size: 1.25rem;
    font-weight: 700; 
}
a.telefon:link{
    color: black;
    text-decoration: none;
}
a.telefon:visited{
    color: black;
    text-decoration: none;
}
a.telefon:focus, a.telefon:active, a.telefon:hover{
    color: black;
    font-size: larger;
    text-decoration: none;
    /* outline = automatische Linie beim Tab abschalen */
    outline: none;
}
a.freepik:focus, a.freepik:active, a.freepik:hover{
    color: white;
    background: #585b6a;
    /* outline = automatische Linie beim Tab abschalen */
    outline: none;}
    a.button:link{
        color: black;
        font-size: 1rem;
        font-weight: 700;
        background: #F48E2A;
        text-decoration: none;
        text-align: center;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 0.5rem;
        float: right;
      }
      a.button:visited{
        color: black;
        font-size: 1rem;
        font-weight: 700;
        background: #F48E2A;
        text-decoration: none;
        text-align: center;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 0.5rem;
        float: right;
      }
      