/*
Name: style.css
Description: CSS-Datei für das Webdesign Tutorial.
Version: 1.0
margin 1 wert  = alle  /  2 werte = top/bottom und right/left /  3 werte = top , right/left und bottom
       4 werte = top,right,bottom und left */
/* ################# STANDARTEINSTELLUNGEN ################# */
* {
   margin: 0px;
   padding: 0px;
   }

#summary-Alt {
    text-align: right;
    background-color: red;
    color:goldenrod;

}
details > summary {
    padding: 4px;
/*    width: 400px; */
    border: none;
/*    box-shadow: 1px 1px 2px #bbbbbb; */
    cursor: pointer;
    font-size:1.2em;
    color:blue;
    font-weight:bold;
  }
  
  details > p {
    background-color: #eeeeee;
    padding: 4px;
    margin: 0;
    box-shadow: 1px 1px 2px #bbbbbb;
    color:blue;
  }



body {
    line-height: 2em;
    background-color: white;
    /*color: blue;*/
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

#seitenbereich {
    max-width: 800px;
    text-align: center;
    margin: 0px auto;
    /*color: red;*/
    border: 1px solid #017083;
    }

#topbildx  img {    width: 100%;    }
#topbildy  img {    width: 100%;    }
#topbildx { background-color: #017083;      }
#topbildy { background-color: #017083;         display: none; }

h1 {font-size: 2.5em; line-height: 1.8em; font-weight: 100; color: #151593; margin: 0em; text-align: center; }
h2 {font-size: 1.2em; line-height: 1.8em; font-weight: bold; color: blue; margin: 0em; padding: 1.25em; text-align: center; }
h3 {font-size: 1.2em; line-height: 1.2em; font-weight: bold; color: blue; margin: 0em; padding: 10px; text-align: left; }
h4 {font-size: 1.2em; line-height: 1.2em; font-weight: bold; color: blue; margin: 0em; padding: 10px; text-align:justify ; }
h5 {text-align: left; padding: 0em; margin: 0em; }

p {
    font-size: 1em;
    line-height: 1.0em;
    font-weight: 100;
    margin: 0em;
    padding: 1.25em;
    text-align: left;     /* justify; */
    color: red;
}

/* ################# HEADER ################# */
header {
    width: 100%;
    background-color: #017080  ;      /*    #017083;    */
    border: 0px solid;
}

/* Menu  ----------- */
header .menu .menu-button {  display: none; }
header .menu { text-align: center; font-size: 14px;    /* schrift bei aufgeklapptem Menu*/ }
header .menu ul li   {list-style: none;     display: inline;     margin: 0;      }
header .menu ul li a {color: white; text-decoration: none;
    transition: all 500ms; */     /* blendet langsam ein */
    border-bottom:solid 1px rgba(255,255,255,0) ; 
    position: relative;
    top: 0;
}

/*header .menu ul li a:hover, */
li a:hover,
#praxis  #navi01 a,
#aktuell #navi02 a,
#physio  #navi03 a,
#massage #navi04 a,
#kontakt #navi05 a {
    color:black;
    background-color: #c0c0c0;
}

/*  inhalt ist noch unklar   !!!!      ----------- */
.xinhalt {
    background-color: #fff;
    margin: -210px 15px 50px 15px;
    padding: 30px 15px 30px 15px;
    width: auto;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
}
.xinhalt p {
    text-align: justify;
    color: #505050;
    line-height: 1.5;
}

#main{
    display:block;
    width:100%;
    min-height: 300px;
    color: blue;
    background-color: white;
}

anima-text{
    display:inline-block;
    width: 80%;
    vertical-align: top;
    text-align: left;
    
    /* background-image:url('../pics/bg.gif');
    background-repeat:no-repeat; */
    }

anima-text p {
    color:blue;
    font-size: 1em;
    font-weight: normal;
    line-height: 1.4em;
    padding: 0 10px;
    }

#adresse {
      font-size: 1em;
      font-weight: bold;
      color:blue;
      /* line-height: 0.4em; */
      }

anima-text summary:hoover {
    text-decoration: underline;
    }

/* ################# FOOTER ################# */
footer {
    width: 100%;
    height: auto;
    text-align: left;
    margin: 0 120 0 0;
    font-size: 1em;
    padding-left: 0;
    line-height: 0.5em;
    background-color: white;
    color: green;
}
footer p {
    font-size: 0.8em;
    line-height: 1.2em;
    font-weight: 100;
    color: blue;
    margin: 0em;
    padding: 1.25em;
    text-align: center;     /* justify; */
}

#ztabelle {
        width: 300px;
        margin-left: auto;     /* wichtig */
        margin-right: auto;    /* wichtig */
        line-height: 2em;
        color: blue;
        font-weight:bold;
       }

/* ################### MOBILE ANPASSUNG ################################## */
@media screen and (max-width: 350px) {
    header .menu .menu-button{ /* das sind die drei striche */
        display: block; position: absolute; top: 20px; right: 10px;
        height: 20px;          /* h he menu-button    */
        cursor: pointer;       /* anzeige cursor-hand */
        z-index: 20;
    }
    header .menu { text-align: center; font-size: 1em;        }
    header .menu nav {
        /* background-color: rgba(2,0,0,0.4);    */
        /* background-color: rgba(102, 102, 102, 0.98); */
        padding: 20px 60px;    /* 10 10 top right bottm left */
        display: none;
        position: relative;
    }
    header .menu nav.open-menu  { display: block; animation: open-menu  250ms ease-out 0s normal forwards;    }
    header .menu nav.close-menu { display: block; animation: close-menu 250ms ease-out 0s normal forwards;    }
    header .menu ul li, header .menu ul li:first-child {
        list-style: none;
        display: block;
        margin: 50;
        padding 7px 0;
        padding-right: 50 px;
        padding-bottom: 50 px;
    }
    .xinhalt  {
    /* margin: -340px 10px 10px 10px; */
    padding: 0px;
    }

    #main anima-text{
    display:inline-block;
    vertical-align: top;
    text-align: left;
    background-image:url('../pics/bg.gif');
    background-image: none;
    background-repeat:no-repeat;
    }
}

@media screen and (max-width: 550px) {
    body{ font-size: 100%; }
    #main anima-text{
    display:inline-block;
    width: 90%;
    vertical-align: top;
    text-align: left;
    }
}
@media screen and (max-width: 330px) {
    body { font-size: 100%;  }
    anima-text p { padding:0px; }
    #main{   min-height: 300px; }
}
@media screen and (max-height: 600px) and (min-width: 600px) {
    body { font-size: 100%;  }
    #topbildx        { display: none; }
    #topbildy        { display: block; }
    #main anima-text{ width: 90%;     }
    header .menu .menu-button { top: 5px; /* die drei striche */   }
}
@media screen and (max-height: 400px){
    body { font-size: 80%;  }
    #topbildx        { display: none; }
    #topbildy        { display: block; }
    #main anima-text{ width: 90%;     }
    header .menu .menu-button { top: 5px; /* die drei striche */   }
}

/* ########### Open/Close Menu ###########  aus animation.css */
@keyframes open-menu {
    from { opacity: 0; top: -100px;  }
    to   { opacity: 1; top: 0;       }
}
@keyframes close-menu {
    from { opacity: 1; top: 0;       }
    to   { opacity: 0; top: -100px;  }
}