/* ===== BASE STYLES ===== */ :root {
  --primary-color: #98877b; /* Braun (Holzoptik) */
  --secondary-color: #D2B48C; /* Hellbraun */
  --accent-color: #795c59; /* Goldbraun */
  --dark-color: #3A2E22; /* Dunkelbraun */
  --light-color: #F5F5F5; /* Hellgrau */
  --text-color: #333;
  --text-light: #666;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-color);
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.tx-h-aufbau {
  font-size: 1.8rem;
color: var(--accent-color);
}
p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}
/* ===== HEADER ===== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.hero .subtitle strong {
  color: white;
  font-weight: 700;
}
.logo {
  max-width: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.logo_02 {
  max-width: 300px;
  margin: 2rem auto 2rem auto;
  /*filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));*/
}




/* ===== KONTAKTSEKTION ===== */
.contact-section {
  padding: 80px 0;
  background-color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
}
.contact-info h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.contact-info h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}
.contact-info p {
  margin-bottom: 1.5rem;
}
.contact-info a {
  color: var(--primary-color);
  font-weight: 600;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s;
}
.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}
.contact-form {
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 8px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}
.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== BILD ===== */

.image-section_02 { display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.image-section_02 img 
{ max-width: 100%;
	height: auto;
}

/* ===== GALERIE ===== */
.gallery-section {
  padding: 80px 0;
  background-color: white;
}
.gallery-title {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.parallax-container {
  height: 600px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.parallax-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateZ(0);
  will-change: transform;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 200px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.03);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-overlay h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
/* ===== COUNTDOWN ===== */
.countdown-section {
  padding: 60px 0;
  background-color: var(--light-color);
  text-align: center;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}
.countdown-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  min-width: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.countdown-item span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}
.countdown-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 1rem;
}
.footer-links a {
  color: white;
}
.footer-links a:hover {
  color: var(--accent-color);
}
.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
/* ===== SUBPAGES (Impressum/Datenschutz) ===== */
.subpage {
  background-color: white;
}
.subpage-header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.subpage-header .logo {
  max-width: 150px;
}
main {
  padding: 40px 0;
}
.impressum-content, .datenschutz-content {
  max-width: 800px;
  margin: 0 auto;
}
.impressum-content h2, .datenschutz-content h2 {
  margin-top: 2rem;
  color: var(--primary-color);
}
.impressum-content p, .datenschutz-content p {
  margin-bottom: 1rem;
}
.impressum-content ul, .datenschutz-content ul {
  margin-left: 20px;
  margin-bottom: 1.5rem;
}
.impressum-content li, .datenschutz-content li {
  margin-bottom: 0.5rem;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .subtitle {
    font-size: 1.1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .countdown {
    flex-wrap: wrap;
  }
  .countdown-item {
    min-width: 80px;
    padding: 15px;
  }
  .countdown-item span {
    font-size: 2rem;
  }
}
/* ===== NEUE KONTAKTSEKTION ===== */
.contact-section {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}
.contact-section h2 {
  font-size: 2.2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}
.contact-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
/* Kontakt-Karten */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact-card {
  background-color: var(--light-color);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}
.contact-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.contact-card p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  transition: all 0.3s;
  text-decoration: none;
}
.contact-link:hover {
  background-color: var(--primary-color);
  color: white;
}
.link-icon {
  font-size: 1rem;
}
/* Adressen-Speziallayout */
.address-content {
  text-align: left;
  margin-top: 1rem;
}
.address-content p {
  margin-bottom: 1rem;
  text-align: center;
}
/* Zusätzliche Infos (Öffnungszeiten, Social Media) */
.contact-additional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  text-align: left;
}
.opening-hours h3, .social-media h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}
.opening-hours ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.opening-hours li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--text-color);
}
.hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}
.hint i {
  color: var(--accent-color);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.social-links a {
  width: 45px;
  height: 45px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s;
  font-size: 1.2rem;
}
.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}
/* Notfallkontakt */
.emergency-contact {
  background-color: #D8C9BE;
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 3rem;
  text-align: center;
}
.emergency-contact h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}
.emergency-contact p {
  margin-bottom: 1rem;
}
.emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.emergency-link:hover {
  background-color: #d68910;
  transform: translateY(-2px);
}
/* Responsive Anpassungen */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-additional {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .opening-hours ul {
    text-align: center;
  }
  .address-content p {
    text-align: center;
  }
}