* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&family=Source+Sans+Pro&display=swap");

body {
  font-family: "Playfair Display", serif;
  font-family: "Source Sans Pro", sans-serif;
  overflow-x: hidden;
  background-color: var(--Cream);
}

:root {
  --background_texture: linear-gradient(
    135deg,
    #f4efe6 25%,
    #e8e2d9 25%,
    #e8e2d9 50%,
    #f4efe6 50%,
    #f4efe6 75%,
    #e8e2d9 75%,
    #e8e2d9
  );

  --Ivery_sand: #e4d6c5;
  --Burnt_sieanna: #984216;
  --Stormy_sky: #78898f;
  --Cream: #f4efe6;
  --Dark_blue: #0e2540;
  --Light_blue: #d1d9e2;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-family: "Playfair Display";
  color: var(--Cream);
  font-weight: lighter;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  color: var(--Cream);
  font-family: "Playfair Display";
  font-weight: lighter;
}

h3 {
  padding-bottom: 1rem;
  font-family: "Source Sans Pro";
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--Cream);
}

h4 {
  margin-bottom: 0.5rem;
  font-family: "Source Sans Pro";
  font-size: clamp(1rem, 2vw, 1.5rem);
}

h5 {
  font-family: "Source Sans Pro";
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: lighter;
  margin-bottom: 2%;
  color: var(--Dark_blue);
}

h6 {
  font-family: "Source Sans Pro";
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  font-weight: lighter;
  margin-bottom: 2%;
  color: var(--Dark_blue);
}

p {
  font-family: "Source Sans Pro";
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.5rem;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: 100%;
  background-color: var(--Dark_blue);
  color: var(--Cream);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar_left {
  display: flex;
  align-items: center;
  width: auto;
  cursor: pointer;
}

.logo {
  height: 35px;
  width: auto;
}

.menu_toggle {
  background: none;
  border: none;
  color: var(--Cream);
  font-size: 2rem;
  cursor: pointer;
  display: block;
  z-index: 1100;
}

.navbar_center {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: var(--Dark_blue);
  flex-direction: column;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.menu_list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu_list li a {
  color: var(--Cream);
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  padding: 10px 20px;
  display: block;
}

.menu_list li a:hover {
  text-decoration: underline;
}

.navbar_center.open {
  display: flex;
}

@media (min-width: 768px) {
  .navbar {
    padding: 20px 40px;
    justify-content: flex-start;
  }

  .menu_toggle {
    display: none;
  }

  .navbar_center {
    flex-basis: 100%;
    position: static;
    display: flex !important;
    width: auto;
    height: 0;
    flex-direction: row;
    justify-content: 0;
    gap: 15px;
    margin-left: 20%;
  }

  .menu_list {
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }

  .menu_list li a {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

@media (min-width: 1024px) {
  .navbar_center {
    margin-left: 50%;
  }
}

/**/
.Kontakt_headline {
  background-color: var(--Dark_blue);
  padding: 2rem 1rem 1.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.Kontakt_headline article {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.Kontakt_headline article.visible {
  opacity: 1;
  transform: translateY(0);
}

.Kontakt_headline article {
  width: 90%;
  display: flex;
  flex-direction: column;
}

.Kontakt_headline article h1 {
  font-size: 2rem;
  color: var(--Cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.Kontakt_headline article h2 {
  font-size: 1.1rem;
  color: var(--Cream);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .Kontakt_headline {
    padding: 3rem 1rem 2rem;
    text-align: left;
  }

  .Kontakt_headline article {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  .Kontakt_headline article h1 {
    color: #a07d57;
    margin-bottom: 1.5rem;
  }

  .Kontakt_headline article h2 {
    max-width: 700px;
  }
}

@media (min-width: 1200px) {
  .Kontakt_headline {
    padding: 4rem 2rem 3rem;
  }
}

/* Kontakt section */
.kontakt_wrap {
  padding: 2rem 1rem;
  background-color: var(--Cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kontakt_point {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.kontakt_point.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.kontakt_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.2rem;
  width: 100%;
  max-width: 300px;
  min-height: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: var(--Cream);
  text-align: center;
}

.icon {
  width: 25px;
  height: 25px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.text_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.kontakt_box h4 {
  color: var(--Dark_blue);
  margin: 0;
}

.kontakt_box p {
  line-height: 1.4;
  margin: 0;
}

.kontakt_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .kontakt_wrap {
    display: flex;
    justify-content: center;
  }

  .kontakt_point {
    width: 90%;
    flex-direction: row;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .Kontakt_headline article {
    padding: 2rem;
  }

  .kontakt_wrap {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1200px) {
  .Kontakt_headline article {
    width: 50%;
    padding: 0;
  }

  .kontakt_wrap {
    padding: 5rem 2rem;
  }

  .kontakt_box {
    max-width: 300px;
  }
}

/* maps */
.maps {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Footer*/
.site_footer {
  background-color: var(--Dark_blue);
  color: var(--Cream);
  padding: 40px 20px 20px;
  font-family: "Arial", sans-serif;
}

.footer_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer_info,
.footer_links,
.footer_social {
  flex: 1 1 200px;
}

.footer_info h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.footer_links ul {
  list-style: none;
  padding: 0;
}

.footer_links li {
  margin-bottom: 8px;
}

.footer_links a {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--Cream);
  line-height: 1.4;
  margin: 0.5rem 0;
  text-decoration: none;
}

.footer_links a:hover {
  text-decoration: underline;
}
footer p {
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  color: var(--Cream);
  line-height: 1.4;
  margin: 0.5rem 0;
}

.footer_social a img {
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.footer_bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 10px;
  font-size: 0.9rem;
}

.footer_bottom a {
  color: var(--Cream);
  text-decoration: none;
}
