body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f4f4f4;
  color: #333;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("images/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  background: rgba(0,0,0,0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-logo {
  width: 160px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 50px;
  margin: 10px 0;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* BUTTON */
.button {
  display: inline-block;
  margin: 20px;
  padding: 12px 22px;
  background: #2c7a7b;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

/* TABS */
.tabs {
  display: flex;
  gap: 10px;
}

.tab {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: #ddd;
  border-radius: 6px;
}

.tab.active {
  background: #2c7a7b;
  color: white;
}

.tab-content {
  display: none;
  margin-top: 30px;
}

.tab-content.active {
  display: block;
}

.gallery img {
  width: 100%;
  max-width: 350px;
  margin: 10px;
  border-radius: 6px;
}

/* FOOTER */
footer {
  background: #2c7a7b;
  color: white;
  text-align: center;
  padding: 30px;
}
/* NAVIGATION */
.main-nav {
  background: #e5e5e5;
  padding: 12px 20px;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

.nav-links {
  display: flex;
  gap: 12px;
}

.nav-btn {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f0f0f0;
  color: #333;
  font-weight: 600;
  transition: 0.3s;
}

.nav-btn:hover,
.nav-btn.active {
  background: #2c7a7b;
  color: white;
}

/* COMPACT */
.compact {
  padding-top: 40px;
}

.compact-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* MINI SLIDER */
.mini-slider {
  position: relative;
  max-width: 420px;
  margin: 20px auto;
}

.mini-slider img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  display: none;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: white;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.slide-btn.left { left: 10px; }
.slide-btn.right { right: 10px; }

/* MODERN BUTTON */
.btn-modern {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background: linear-gradient(135deg,#2c7a7b,#1e4f50);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
/* LOGO HERO (ERSATZ FÜR GRAUEN BEREICH) */
.logo-hero {
  background: #f2f2f2;        /* sehr helles Grau oder #ffffff */
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-hero img {
  max-width: 700px;           /* LOGO GROSS */
  width: 90%;
  height: auto;
}
.logo-hero {
  background: linear-gradient(180deg, #f7f7f7, #ffffff);
}

.top-nav a {
  margin-left: 18px;
  padding: 10px 22px;
  background: #ffffff;
  color: #2c7a7b;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}


/* LOGO FULL WIDTH HERO */
.logo-hero {
  width: 100%;
  background: #e0e0e0;   /* KEIN weißer Balken */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-hero img {
  width: 100%;
  max-width: 1600px;     /* begrenzt – NICHT größer als Logo */
  height: auto;
  display: block;
}

/* KONTAKTSEITE */
.page-header {
  text-align: center;
  padding: 50px 20px;
}

.contact-section {
  max-width: 900px;
  margin: auto;
  padding-bottom: 60px;
}

.contact-box,
.address-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.mail-info {
  margin-top: 15px;
}

.mail-info a {
  color: #2c7a7b;
  font-weight: 600;
  text-decoration: none;
}

/* LINK-TAB (Anfahrt) – exakt wie normale Tabs */
.link-tab {
  color: #333 !important;        /* entfernt blau */
  text-decoration: none !important;
}

.link-tab:visited {
  color: #333 !important;
}

.link-tab:hover {
  background: #2c7a7b;
  color: white !important;
  text-decoration: none;
}
.success-msg {
  background:#e6fffa;
  color:#065f5b;
  padding:15px;
  text-align:center;
  margin:20px;
  border-radius:6px;
}

.error-msg {
  background:#ffe6e6;
  color:#7a1c1c;
  padding:15px;
  text-align:center;
  margin:20px;
  border-radius:6px;
}
