/*Übeschriften Global*/
h1 {
  text-align: center;
  color: var(--softtec-medium-blue1);
  margin: 3rem 0;
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 14px;
  color: var(--softtec-medium-blue1);
  font-weight: 700;

}

h3 {
  font-size: 14px;
  color: var(--softtec-medium-blue1);
  font-weight: 700;
}

h2, h3, p {
  margin: 0;
  padding: 0;
}

/*Navbar*/
header {
  min-height: 5rem;
  height: 5rem;
  background-color: var(--softtec-light-blue2);
  color: var(--softtec-dark-blue);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  top: 0;
  position: sticky;
  width: 100%;
  font-size: var(--font-size-12);
  z-index: 9;
}

.hotel-information {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 2rem;
}

.hotel-information div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

  .hotel-information div a {
    color: var(--softtec-dark-blue) !important;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

.hotel-logo-menu {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 2rem;
   position: relative;
   margin-left: 1rem;
}

  .hotel-logo-menu img {
    height: 3rem;
    width: auto;
  }

  .hotel-logo-menu span {
    font-size: 2.5rem;
  }

.burger-menu {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  color: var(--softtec-dark-blue);
  transition: opacity 0.2s;
}

  .burger-menu:hover,
  .burger-menu:focus-visible {
    opacity: 0.7;
  }

  .burger-menu .fa-bars {
    font-size: 2.5rem;
    transition: color 0.2s;
  }

  .burger-menu-btn {
    border: unset;
    background-color: var(--softtec-light-blue2);
    cursor: pointer;
  }

.tooltip-toggle {
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.custom-tooltip {
  display: none;
  position: absolute;
  top: 4.4rem;
  right: 0;
  width: 180px;
  height: fit-content;
  background-color: var(--softtec-light-blue2);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: .5rem 1rem;
  z-index: 10;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-medium);
}

  .custom-tooltip .tooltip-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--softtec-dark-blue);
    text-decoration: none;
    padding: 0.25rem 0;
    font-size: var(--font-size-12);
    font-family: var(--font-medium);
    gap: 1.5rem;
    min-width: 140px;
  }

.custom-tooltip .tooltip-link i,
.custom-tooltip .tooltip-link img {
    width: 1.6rem;
    min-width: 1.6rem;
    max-width: 1.6rem;
    height: auto;
    text-align: center;
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-tooltip .tooltip-link:hover {
    background: var(--softtec-light-blue2);
    opacity: .7;
    border-radius: 4px;
}

.menu-divider {
  border: none;
  border-top: 1px solid var(--softtec-medium-blue1);
  margin: 0.5rem 0;
  width: 100%;
  opacity: .7;
}

  .custom-tooltip a img {
    width: 1.6rem;
    margin-right: 1rem;
  }

  .custom-tooltip a i {
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-left: .3rem;
  }

.hotel-logo-menu:focus-within .custom-tooltip,
.hotel-logo-menu .tooltip-toggle:focus + .custom-tooltip,
.hotel-logo-menu .tooltip-toggle:active + .custom-tooltip {
    display: flex;
}


.modal-content {
  padding: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.close {
  margin-left: auto;
  cursor: pointer;
}

.hotel-information-modal {
  width: 300px;
  display: flex;
  flex-direction: column;
  color: var(--softtec-dark-blue) !important;
  gap: 1.5rem;
  font-size: var(--font-size-12);
}

  .hotel-information-modal a {
    color: var(--softtec-dark-blue);
    gap: 1rem;
    display: flex;
    align-items: center;
  }

  .hotel-information-modal div {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

/*Footer*/

footer {
  display: flex;
  justify-content: space-around;
  z-index: 5 !important;
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  min-height: 5rem;
  justify-items: center;
  align-items: center;
  background-color: var(--softtec-white) !important;
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.14);
  color: var(--softtec-dark-blue) !important;
  font-size: var(--font-size-12);
  padding: 0 !important;
  font-size: 13px;
}

.footer-button {
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-icons {
  width: auto;
  height: 2.5rem; 
}

.active-footer-button {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.mobile-only {
  display: none;
}

.chatbot {
  position: fixed;
  bottom: 2.8rem;
  right: 0;
  text-align: right;
  cursor: pointer;
  z-index: 10;
}

  .chatbot img {
    height: 4rem;
    width: 4rem;
    border-radius: 4rem;
    margin-right: 1rem;
  }

.main-container .highlight-gallery .rc-hotel-highlights {
  padding: .1rem !important;
}

.main-container .atoz-accordion-container {
  margin: 0 !important;
  padding: 0 !important;
}

.main-container {
  padding: 0rem 5rem;
  margin-bottom: 8rem;
}

.fa-xmark:hover,
header a:hover,
header a:focus-visible {
  opacity: 0.7;
  transition: opacity 0.2s;
}

@media(max-width: 950px) {
  .hotel-information {
    display: none;
  }

  .hotel-logo-menu {
      justify-content: space-between;
      width: 100%;  
  }

  .main-container {
    padding: 0rem 3rem;
    margin-bottom: 7rem;
  }

  .chatbot {
    bottom: 6rem;
  }
}

@media (max-width: 500px) {
  .main-container {
    padding: 0rem 2rem;
  }

  footer {
      font-size: 12px;
  }

  .mobile-only {
    display: flex;
  }
}

.main-container .input-control, .form-control, .form-select {
  padding-top: 1.3rem !important;
}
