@charset "UTF-8";
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #3A4A5A;
}

body {
  width: 100%;
}

html, body {
  overflow: auto; /* или scroll */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
th {
  text-align: center;
  font-family: "Afacad", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1em;
}

p,
li,
td {
  font-family: "Akatab", sans-serif;
  font-weight: 400;
  font-style: normal;
}

li {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#header-index {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  padding: 0;
  background: linear-gradient(180deg, #F2E8B8 11%, rgba(223, 180, 61, 0.4588235294) 61.04%, #F2E8B8 92.19%), url("../img/header/adona-header-background-blured.jpg") center/cover no-repeat;
  color: black;
}

#header__top {
  backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  top: 0;
  padding: 15px 0;
  transition: padding 0.5s, box-shadow 0.3s;
  z-index: 9;
}
#header__top nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Align items to the start of the container */
  color: rgb(0, 37, 64);
}
#header__top nav img {
  max-width: 10rem;
  margin-right: 5.5rem;
}
#header__top nav ul {
  display: flex;
  justify-content: space-between;
  /* Align items to the start of the container */
  width: 100%;
}
#header__top nav ul li {
  padding: 0 5px;
  /* Reduce padding to decrease space between items */
}
#header__top .header__nav-hamburger {
  display: none;
  cursor: pointer;
}
#header__top .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #3A4A5A;
}

#header-title {
  color: #002540;
}
#header-title h1 {
  margin: 0;
  font-size: 9em;
  font-weight: 700;
}
#header-title h2 {
  margin: 0;
  font-size: 1.8em;
}

/*
  #header .header__ul,
  #header-index .header__ul {
    top: var(--header-top-height);
    position: fixed;
    right: -100%;
    flex-direction: column;
    background-color: rgba(36, 43, 51, 0.8);
    backdrop-filter: blur(7px);
    height: 100vh;
    width: 45%;
    text-align: center;
    transition: 0.3s;
  }
  #header .header__ul li,
  #header-index .header__ul li {
    padding: 25px 0;
    border-bottom: 0.5px solid white;
  }
  #header .header__ul li:last-of-type,
  #header-index .header__ul li:last-of-type {
    margin-bottom: 50px;
  }
  #header .header__ul.active,
  #header-index .header__ul.active {
    display: block;
    right: 0;
  }
*/
#scroll-btn {
  --scroll-height: 8em;
  --scroll-border-size: .8em;
  position: absolute;
  height: var(--scroll-height);
  /* Neue Größe */
  width: calc(var(--scroll-height) / 1.6);
  border: var(--scroll-border-size) solid #3A4A5A;
  margin: 50px auto;
  left: 0;
  right: 0;
  border-radius: 3em;
}

#scroll-btn:before {
  position: absolute;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  top: calc(var(--scroll-height) / 8.5);
  /* 1.2em als Anteil der Höhe */
  height: calc(var(--scroll-height) / 7.5);
  /* 1.2em als Anteil der Höhe */
  width: calc(var(--scroll-height) / 7.5);
  /* 1.2em als Anteil der Höhe */
  background-color: #3A4A5A;
  border-radius: 50%;
  animation: move-down 1s ease-in-out infinite;
}

.l-container {
  padding: 0 15px;
  max-width: 1140px;
  margin: 0 auto;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
}

.feedback-form h3 {
  font-size: large;
  font-weight: 900;
  padding-bottom: 1em;
  text-align: center;
}

.feedback-form .form-group {
  margin-bottom: 1em;
}

.feedback-form .form-group label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.feedback-form .form-group input,
.feedback-form .form-group textarea {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.feedback-form button[type=submit],
.feedback-form button[type=reset] {
  display: block;
  width: 100%;
  padding: 10px 20px;
  margin-top: 1em;
  background-color: rgb(93, 65, 25);
  color: black;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feedback-form button[type=submit]:hover,
.feedback-form button[type=reset]:hover {
  background-color: rgb(93, 65, 25);
  color: white;
}

#contact {
  padding: 10em 0;
}
#contact__p {
  padding: 0 3em;
  font-size: 1.5rem;
}
#contact h2 {
  margin-bottom: 0.5em;
}

#ueberUns {
  padding: 10em 0;
  min-height: 93vh;
}
#ueberUns ul h4 {
  text-align: left;
}
#ueberUns h3 {
  margin-bottom: 2rem;
  font-size: 1.3em;
  font-weight: 300;
}
#ueberUns div {
  max-width: 95%;
}

#datenschutz {
  padding: 10em 0;
  text-align: left;
  min-height: 93vh;
}
#datenschutz__p {
  padding: 2em 4em 0 4em;
  font-size: 1.5rem;
}

#impressum {
  padding: 10em 0;
  text-align: left;
  min-height: 93vh;
}
#impressum__div {
  padding: 2em 4em 0 4em;
  font-size: 1.5rem;
}
#impressum__div li {
  margin-left: 1em;
}

.contact-container {
  padding-top: 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.contact-container .contact-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* Выравнивание по левому краю */
  text-align: left;
  /* Выравнивание текста по левому краю */
  padding-left: 2em;
}
.contact-container .contact-details div {
  font-size: 18px;
}

.contact-elem {
  display: flex;
  align-items: center;
  /* Выровняет элементы по вертикали */
  justify-content: flex-start;
  /* Выровняет элементы по левому краю */
  gap: 15px;
  white-space: nowrap;
  margin-bottom: 10px;
}

.contact-elem img {
  width: 48px;
  height: 48px;
}

#map {
  width: 550px;
  height: 450px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.footer {
  background: linear-gradient(to bottom, #E6C992, #F2E8B8);
  text-align: center;
  padding: 1.5em 0;
}
.footer .adona-logo {
  width: 100px;
}

main {
  position: relative;
  /* Для того чтобы псевдоэлемент позиционировался относительно родителя */
}

main::after {
  content: "";
  /* Псевдоэлемент должен иметь контент для отображения */
  position: absolute;
  bottom: 0;
  left: 50%;
  /* Позиционируем центр псевдоэлемента относительно середины */
  transform: translateX(-50%);
  /* Сдвигаем линию на 50%, чтобы она была по центру */
  width: 40%;
  /* Линия будет занимать 60% ширины */
  border-bottom: 1px dotted black;
  /* Стиль линии (можно изменить цвет и толщину) */
}

.section {
  padding: 25px 0;
  flex-direction: column;
}
.section__div {
  display: flex;
  flex-flow: row wrap;
  column-gap: 100px;
  justify-content: center;
}
.section__div div {
  text-align: center;
  max-width: 31em;
}
.section h2 {
  font-size: 2.5em;
  font-weight: 700;
}
.section h3 {
  font-size: 1.6666666667em;
  margin: 5px 0px;
}
.section h4 {
  font-size: 1.4705882353em;
  margin: 5px 0px;
}
.section p {
  font-size: 1.1904761905em;
  margin: 5px 0px;
}

.section:nth-of-type(1) {
  background: linear-gradient(to bottom, #F2E8B8, #E6C992);
  text-align: center;
}

.section:nth-of-type(1) img:first-of-type {
  width: 60%;
  padding-bottom: 10px;
}

.section:nth-of-type(1) img:last-of-type {
  width: 35%;
  padding-top: 10px;
}

.section:nth-of-type(2) {
  background: linear-gradient(to bottom, #E6C992, #D6B88C, #E6C992);
}
.section:nth-of-type(2) img {
  width: 10rem;
}

#leisungnen img {
  width: 60%;
}

.leistungen__ul {
  padding-left: 0;
}
.leistungen__ul li {
  padding: 10px 0 10px 40px;
  background-image: url("../img/icons/star_icon.svg");
  background-repeat: no-repeat;
  background-position: 0;
  text-align: left;
  font-size: 1.2em;
}

.project-table {
  margin: 2em 0;
  width: 100%;
  box-shadow: 0 5px 25px rgba(1, 1, 1, 0.15);
  border-radius: 10px;
  overflow: hidden;
}
.project-table th,
.project-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.project-table th {
  background-color: rgb(93, 65, 25);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.project-table tr:nth-child(even) {
  background-color: #f8f8f8;
}

.header__top--mini {
  box-shadow: 0px 0px 29px -11px rgb(0, 0, 0);
  padding: 3px 0 !important;
}

.no-scroll {
  overflow-y: hidden;
}

.hidden {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-100%);
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

@media screen and (max-width: 1000px) {
  #header .header__maintitle,
  #header-index .header__maintitle {
    color: #3A4A5A;
    font-size: 7.5em;
  }
  #header .header__subtitle,
  #header-index .header__subtitle {
    font-size: 1.5em;
  }
  #header .header__nav-hamburger,
  #header-index .header__nav-hamburger {
    display: block;
  }
  #header .header__nav-hamburger.active .bar:nth-child(1),
  #header-index .header__nav-hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  #header .header__nav-hamburger.active .bar:nth-child(2),
  #header-index .header__nav-hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  #header .header__nav-hamburger.active .bar:nth-child(3),
  #header-index .header__nav-hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #header .header__ul,
  #header-index .header__ul {
    top: var(--header-top-height);
    position: fixed;
    right: -100%;
    flex-direction: column;
    backdrop-filter: blur(20px);
    height: 100vh;
    width: 45%;
    text-align: center;
    transition: 0.3s;
  }
  #header .header__ul li,
  #header-index .header__ul li {
    padding: 25px 0;
    border-bottom: 0.5px solid black;
  }
  #header .header__ul li:last-of-type,
  #header-index .header__ul li:last-of-type {
    margin-bottom: 50px;
  }
  #header .header__ul.active,
  #header-index .header__ul.active {
    display: block;
    right: 0;
  }
  .contact-container {
    padding-top: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .contact-container .map {
    width: 100%;
    max-width: 550px;
  }
  .contact-container .contact-details {
    width: 100%;
    max-width: 550px;
  }
  #impressum, #datenschutz, #contact {
    padding-top: 7em;
  }
}
@media screen and (max-width: 770px) {
  #map {
    width: 450px;
    height: 350px;
  }
  #header-index .header__maintitle {
    color: #3A4A5A;
    font-size: 6em;
  }
  #header-index .header__subtitle {
    font-size: 1.2em;
  }
  #header-index .project-table {
    font-size: 14px;
  }
  #header-index .project-table th,
  #header-index .project-table td {
    padding: 8px 10px;
  }
  .project-table thead,
  .project-table tbody,
  .project-table th,
  .project-table td,
  .project-table tr {
    display: block;
  }
  .project-table thead tr {
    display: none;
  }
  .project-table tr {
    margin-bottom: 15px;
  }
  .project-table td {
    text-align: left;
    position: relative;
    padding-left: 50%;
    border-bottom: 1px solid #ddd;
  }
  .project-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
  .project-table td:last-child {
    border-bottom: 0;
  }
  #scroll-btn {
    --scroll-height: 5em;
    --scroll-border-size: .5em;
    position: absolute;
    height: var(--scroll-height);
    width: calc(var(--scroll-height) / 1.6);
  }
  #scroll-btn:before {
    top: calc(var(--scroll-height) / 8.5);
    height: calc(var(--scroll-height) / 7.5);
    width: calc(var(--scroll-height) / 7.5);
  }
  .contact-container .map {
    width: 100%;
    max-width: 450px;
  }
  .contact-container .contact-details {
    width: 100%;
    max-width: 450px;
  }
  #contact h2 {
    font-size: 2em;
  }
  #contact__p {
    font-size: 1rem;
  }
  #leistungen h3 {
    font-size: 1.6129032258em;
  }
  #gruessung h3 {
    font-size: 1.4285714286em;
  }
  #datenschutz__p, #impressum__div {
    padding: 1em 1em 0 1em;
  }
}
@media screen and (max-width: 520px) {
  #header-index .header__maintitle {
    color: #3A4A5A;
    font-size: 4.2em;
  }
  #header-index .header__subtitle {
    font-size: 0.84em;
  }
  #header-index .header__ul {
    width: 100%;
  }
  #main p {
    font-size: 0.9em;
  }
  #leistungen img {
    width: 7.1428571429rem;
  }
  #leistungen h2 {
    font-size: 1.8em;
  }
  #leistungen h3 {
    font-size: 1.1612903226em;
  }
  #leistungen li {
    font-size: 0.8571428571em;
  }
  #gruessung h3 {
    font-size: 1.0285714286em;
  }
  #contact h2 {
    font-size: 1.8em;
  }
  #contact__p {
    font-size: 1rem;
  }
  .project-table {
    font-size: 12px;
  }
  .project-table th,
  .project-table td {
    padding: 6px 8px;
  }
  .project-table tr {
    margin-bottom: 15px;
  }
  .project-table td {
    padding-left: 50%;
    border-bottom: 1px solid #ddd;
  }
  .project-table td:before {
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-weight: bold;
    text-align: left;
  }
  .project-table td:last-child {
    border-bottom: 0;
  }
  #map {
    width: 350px;
    height: 250px;
  }
  .contact-container .map {
    width: 100%;
    max-width: 350px;
    /* Уменьшение карты для маленьких экранов */
  }
  .contact-container .contact-details {
    width: 100%;
    max-width: 350px;
    /* Контактные данные привязаны к карте */
  }
}
@keyframes move-down {
  80% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(calc(var(--scroll-height) * 0.42));
    opacity: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
