:root {
   --red: #941C45;
   --lightRed: #E16E8C;
   --light-color: #FFF7EE;
   --max-width-content: 1100px;
   --max-width-images: 1200px;
 }

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


 body{
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  background: var(--light-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
 }


 /* Navigation Bar/ Header */
/* *************************************** */

header {
  position: sticky;
  top: 0;
  background-color: var(--light-color);

}

 .navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  margin: 1rem 0 0.4rem;
 }


 .logo img {
  height: 3rem;
  margin: auto;
 }

 .navbar a{
  color: black;
  text-decoration: none;
 }

 .logo {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
 }

 .name-header{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  line-height: 1.6rem;
 }

 .name-header h1 {
  font-weight: 400;
  font-size: 1.5rem;
 }

 .name-header p {
  font-size: 1.1rem;  
 }

.underline {
  height: 8px;
  background-color: var(--red);
 }


 main {
  flex: 1;
 }


/* ********************************** */
/* 3 Images */

.images {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: auto;
  align-items: center;
  width: 96vw;
}

.images img {
  width: 33%;
  max-width: calc(var(--max-width-images)/3);
}

/* ************************************** */
/* you can change colors and font here for closed */
/* font-weight: 500; < 100-800 changes how bold the text is */
/* color: 	#C41E3A;  < text color */
/* font-size: 1.5rem;  < change size */


.closed {
  margin: 2rem 0 1.5rem;
  color: 	#C41E3A;
  font-weight: 500;
}

/* ************************ */
/* rest of the info */



.info {
  margin: 2rem 0;
  max-width: 700px;
}


/* *********************************** */
/* footer part */
/* adjust font size for the text in the red BG box */
footer {
  margin: auto;
  background-color: var(--red);
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
}

.contact {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 1.7rem;
}

/* adjusting space between text and the red BG box  */
.contact > div {
  padding: 1.6rem 0;
}

.address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}

h3 {
  font-weight: 400;
}

.available-times {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.available-times ul {
  list-style-type: none;
}

.week-hours {
  text-align: end;
}


.impressum {
  background-color: var(--lightRed);
  color: #eee;
  padding: 0.6rem 0;
}

.impressum-content {
  display: flex;
  color: black;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}

.impressum-content a {
  color: black;
  text-decoration: none;
  font-size: 0.7rem;
}

.regelungen {
  color: black;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

#impressum-title {
  font-size: 1.3rem;
  font-weight: 500;
}


/* Style for Datenschutzerklärung */

.headline {
  font-size: 1.2rem;
  font-weight: 500;
}


/* Utility */
.container {
  max-width: var(--max-width-content);
  margin: auto;
  padding: 0 2rem;
  overflow: hidden;
}



/* for smaller screens */

@media(max-width:1000px) {
  .container {
    padding: 0 4rem;
  }
}

@media(max-width:650px){
  .container {
    padding: 0 2rem;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center
  }

  .contact {
    flex-direction: column;
    justify-content: center;
  }

  .header-number{
    padding-top: 1rem;
  }

  .address {
    align-items: center;
  }

  .address > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .impressum-content {
    justify-content: center;
  }
}



/* Robuste, konfliktfreie Bullet-Liste */
.info .rights-list,
.info .rights-list li {
  margin: 0;
  padding: 0;
  list-style: none; /* verhindern, dass default bullets stören */
}


.info .rights-list li {
  position: relative;
  padding-left: 1.8rem;    /* Platz für das Bullet */
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.info .rights-list li::before {
  content: "•";            
  position: absolute;
  left: 0;
  top: 0.25rem;             /* vertikale Ausrichtung anpassen falls nötig */
  font-size: 1rem;
  line-height: 1;
  color: #111;              /* Bulletfarbe */
}