html, body {
  margin: 0;
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
  background-color: rgb(20, 20, 20);
  color: #F8F7F2;
}

* {
  box-sizing: border-box;
}

.container{
  margin: 0 auto;
  border-left: 0.1rem solid #91805b;
  border-right: 0.1rem solid #91805b;
}

a{
  text-decoration: none;
  color: inherit;
}

/* HEADER*/

header .container, footer .container {
  border: none;
}


.header-logo{
    height: 3rem;
    filter: invert(95%) sepia(100%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
}

.header-text {
    font-size: 1.7rem;
    font-weight: 400;
    color: #91805b;
    margin: 0;
    text-align: center;
    text-shadow: 2px 0 1px black;
    cursor: default;
}

header {
  margin: 0;
  background-color: #232325;
  background: #232325;
  color: #FFF;
  height: 5rem;
}

.top-nav, footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #232325;
  background: #232325;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #FFF;
  height: 5rem;
  padding: 1em;
}

.burger-links{
  color: #FFF;
  text-decoration: none;
}
.burger-links:hover{
  text-decoration: underline;
}

.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.menu-button::before {
  content: '';
  margin-top: -8px;
}
.menu-button::after {
  content: '';
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
.menu-button-container {
  display: flex;
}
.menu {
  color: #91805b;
  position: absolute;
  top: 0;
  margin-top: 5rem;
  left: 0;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#menu-toggle ~ .menu li {
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
#menu-toggle:checked ~ .menu li {
  border: 1px solid #333;
  height: 2.5em;
  padding: 0.5em;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu > li {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0.5em 0;
  width: 100%;
  color: white;
  background-color: #222;
}
.menu > li:not(:last-child) {
  border-bottom: 1px solid #444;
}

/* PHONE NUMBER SECTION */

.phone-number-section{
  background-color:#4b4e49;
  border-top: 0.1rem solid #91805b;
  border-bottom: 0.1rem solid #91805b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0;
}
.main-phone-number{
  margin: 0.2em 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
  text-decoration: underline;
  color: #ffd883;
  font-size: 2rem;
}
.main-phone-number:hover{
  color: goldenrod;
}
.main-phone-number:active{
  color: goldenrod;
}

/* MAIN IMAGE SECTION */

.img-container{
  border-bottom: 0.1rem solid #91805b;
}

.hero-img {
  display: block;
  height: 50%;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* INFO SECTIONS + TYPOGRAPHY*/

.main-section, .info-section {
  /* background-color: #4b4e49; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem;
  border-bottom: 0.1rem solid #91805b;
  max-width: 800px;
}

.section-img{
  width: auto;
  height: 100%;
  margin-left: -50px;
}
.section-img-div{
  display: inline-block;
  position: relative;
  width: 200px; height: 200px;
  overflow: hidden;
  border-radius: 50%;
  border-bottom: 5px solid #ffd883;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}


h1{
  margin: 0 auto;
  font-size: 1.9rem;
  font-weight: 400;
  color: #ffd883;
  text-align: center;
}

h2 {
  font-size: 1.45rem;
  margin: 0.2rem 0 0.1rem;
  text-align: center;
  font-weight: 300;
}

.info-section h2{
  font-weight: 400;
  margin-top: 1rem;
  border-bottom: 1.5px solid #ffd883;
}


.section-btn{
  text-decoration: none;
  
  color: #232325;
  background-color: #ffd883;
  border-radius: 10px;
  border: 2px solid #232325;
  cursor: pointer;
  
  padding: 0.2rem 4rem;
  margin: 0 auto;

  font-size: 1.9rem;
  font-weight: 400;
  text-align: center;
}
.section-btn:hover, .section-btn:active{
  background-color: #91805b;
}

p {
  font-size: 1.1rem;
  line-height: 1.35;
  text-align: center;
}


ul.services li{
  font-size: 1.2rem;
  line-height: 1.35;
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
  list-style: disc;
}
ul.services li::marker{
  color: #ffd883;
}

.underline{
  text-decoration: underline;
}

a.focus-text:hover, a.focus-text:active{
  color: #91805b;
}

.main-page-link:hover, .main-page-link:active {
  text-decoration: underline;
  color: #91805b;
}

.focus-text{
  color: #ffd883
}

.undertext{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}

.questionaire {
  font-style: italic;
}

/* FOOTER */
footer {
  padding-top: 2rem;
  padding-bottom: 15vh;
}

/* MOBILE MODAL */
.mobile-modal-list{
  margin:0;
  padding: 0;
}

.mobile-modal-list li::marker{
  color: green;
}

.mobile-modal-list li{
  text-shadow: 1px 1px 1px black;
  letter-spacing: 2px;
  border-bottom: 1px solid #fff;
}
.mobile-modal-text{
  margin:0;
  padding: 0;
}

.mobile-modal {
  margin: 0;
  padding: 5px 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #232325;
  background-image: url(images/modal-background-img.jpg);
  position: fixed;
  bottom: 0;
  min-width: 100vw;
  height: 70px;
  border-top: 2px solid green;
  font-size: 2rem;
}

/* DESKTOP MODAL */
.desktop-modal{
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 3vw 3vw 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 220px;
  border: 1px solid green;
  background-color: #232325;
  background-image: url(images/modal-background-img.jpg);
}
.desktop-modal-list{
  margin:0;
  padding: 0;
}
.desktop-modal-list li::marker{
  color: green;
}

.desktop-modal-list li{
  font-size: 1.4rem;
  font-weight: 300;
  text-shadow: 1px 1px 1px black;
  letter-spacing: 1.5px;
}
.desktop-modal-list li:hover{
  border-bottom: 1px solid #fff;
}
.desktop-modal-text{
  font-size: 1.5rem;
}

@media (min-width: 1280px){
  .container{
    max-width: 1023px;
  }
  .menu > li {
    width: 1023px;
  }
  .mobile-modal{
    display: none;
  }
  footer{
    padding-bottom: 2rem;
  }
}
@media (max-height: 500px){
  .mobile-modal{
    padding: 2px 1rem;
  }
}

@media (min-width: 1024px) and (max-width: 1279px){
  .container{
    max-width: 1023px;
  }
  .menu > li {
    width: 1023px;
  }
  .mobile-modal{
    display: none;
  }
  footer{
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px)  and (max-width: 1023px){
  .container{
    max-width: 100%;
  }
  .menu > li {
    width: 100%;
  }
  .desktop-modal{
    display:none;
  }
}


@media (max-width: 767px){
  .container{
    max-width: 100%;
  }
  .menu > li {
    width: 100%;
  }
  .desktop-modal{
    display:none;
  }
}