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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-heading {
  text-align: center;
  color: #4E8293;
  margin-bottom: 2rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 4rem 0;
}

.btn {
  background: #4E8293;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background: #A98D6F;
}
/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #f9f9f9;
}

.about-section .section-heading {
  text-align: center;
  color: #4E8293;
  margin-bottom: 2rem;
}

.about-section .intro-text {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about-block {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-block h3 {
  color: #4E8293;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.about-block ul {
  list-style: none;
  padding-left: 0;
}

.about-block ul li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 70px;
}

nav ul {
  display: flex;
  gap: 4.0rem;
  list-style: none;
  text-transform: uppercase;
}

nav a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}
nav a.active {
  color: #A98D6F;
}

nav a:hover {
  color: #A98D6F;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
/* ===== CONTACT ======*/
/* ===== CONTACT SECTION ===== */
.contact-section {
   height: auto;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-overlay {
  background: rgba(255, 255, 255, 0.512); /* heller Overlay für Lesbarkeit */
  padding: 3rem 1rem;
  border-radius: 12px;
  max-width: 1200px;
  margin: auto;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 45%;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4E8293;
}

.contact-info p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.contact-form {
  flex: 1 1 45%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form .btn {
  background: #4E8293;
  color: white;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: #A98D6F;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    flex: 1 1 100%;
  }
}

/* ===== HERO ===== */
#hero {
  height: auto;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 3rem;
  border-radius: 10px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ===== GALLERY ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.grid img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s ease;
  display: block;
}

.grid img:hover {
  transform: scale(1.05);
}
/* ===== PRICING ===== */
.section-heading {
  text-align: center;
  color: #4E8293;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subheading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.pricing-box {
  background: linear-gradient(to bottom, #f3eee9, #ffffff);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-4px);
}

.pricing-box h3 {
  margin-bottom: 1rem;
  color: #333;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #4E8293;
  font-size: 1.5rem;
  line-height: 1.1;
}

/* ===== SERVICES ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  list-style: none;
  text-align: center;
}

.services-list li {
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 5px;
}

/* ===== CONTACT ===== */
form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
}

textarea {
  min-height: 150px;
}

button.btn {
  border: none;
  cursor: pointer;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
#impressum-btn {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

#impressum-btn:hover {
  color: #A98D6F; /* Optional: dezente Hoverfarbe */
}
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  nav ul.showing {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }
}
/* ===== SLIDE-UP ANIMATION ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.slide-up.visible {
  animation: slideUp 0.6s ease-out forwards;
}
@media (max-width: 480px) {
  .btn {
    display: block;        /* ganze Zeile nutzen */
    width: 100%;            /* volle Breite auf Mobil */
    font-size: 1.1rem;      /* evtl. leicht größer für Lesbarkeit */
  }
}