:root {
  --primary: #2c3e50;
  --secondary: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --gray: #95a5a6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.burger {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 2rem;
}

.sidebar.active {
  right: 0;
}

.sidebar ul {
  list-style: none;
  margin-top: 4rem;
}

.sidebar li {
  margin-bottom: 1.5rem;
}

.sidebar a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Section Styles */
section {
  padding: 6rem 5% 4rem;
  min-height: 100vh;
}

#hours {
  padding-left: 0;
  padding-right: 0;
  min-height: 60vh; /* Reduzierte Höhe für weniger Leerraum */
}

.fullscreen-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-text {
  text-align: center;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #c0392b;
}

/* Footer Styles */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 5%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Services Slider Styles */
.services-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.slider-btn {
  background: none;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.3s;
}

.slider-btn:hover {
  background-color: var(--secondary);
  color: white;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
  padding: 0 20px;
}

.slide p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--dark);
}

.service-card {
  border: 2px solid var(--primary);
  border-radius: 0;
  padding: 2rem;
  max-width: 300px;
  margin: 0 auto;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card i {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Payment Methods Styles */
.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.payment-method {
  text-align: center;
  padding: 2rem;
  border: 2px solid var(--primary);
  border-radius: 0;
  min-width: 250px;
}

.payment-method i {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.payment-method h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-types {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.card-types i {
  font-size: 2rem;
  color: var(--dark);
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
  color: var(--light);
  margin-bottom: 0.5rem;
  display: block;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 2.5rem;
  color: #0047ab; /* Marineblau */
  margin: 0 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .sidebar {
    display: block;
  }

  section {
    padding: 6rem 2rem 4rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  /* Design Button */
  .design-btn {
    color: #0047ab;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    white-space: nowrap; /* Verhindert Zeilenumbruch */
  }

  .design-btn:hover {
    color: #e74c3c;
    text-decoration: underline;
  }

  .map {
    width: 100%;
    height: 450px;
    margin-top: 2rem;
  }

  .map iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* Opening Hours Styles */
.opening-hours {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Button */
.contact-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #c0392b;
}

/* Contact Overlay */
.contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.contact-modal h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.opening-hours table {
  width: 100%;
  border-collapse: collapse;
}

.opening-hours table tr {
  width: 100%;
}

.opening-hours table td {
  padding: 12px;
  text-align: center;
}

.opening-hours table tr:nth-child(odd) {
  background-color: #f5f5f5;
}
