@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
:root{
  --primary-color: #FFFFE6;
  --hover-color: #FFFFE6;
  --accent-color: #FFFFE6;
  --text-color: black;
}
*{
  margin: 1;
  padding: 0;
  box-sizing: border-box;
}
html{
  font-family: Courier New;
  color: var(--text-color);
  scroll-behavior: smooth; /*For bookmark links*/
}
body{
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
}
main{
  padding: min(5em, 7%);
}
.headerlogo {
    width: 120px;
    height: auto;
    margin: 0.5em;
  
  background-color: unset !important;
  color: unset !important;
  font-family:Courier New
}

main p{
  margin-top: .35em;
}
nav{
  background-color: var(--primary-color);
  border-bottom: 1px solid var(--hover-color);
}
nav ul{
  list-style: none;
  display: flex;
}
nav .home-li{
  margin-right: auto;
}
nav li{
  display: flex;
}
nav a{
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  padding: 1em 2em;
  transition: background-color 150ms ease;
}
nav a:hover{
  background-color: var(--hover-color);
}
nav a.active-link{
  border-bottom: 2px solid var(--text-color);
}
nav a.accent-link{
  background-color: var(--accent-color);
}
#open-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
#close-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}
@media screen and (max-width: 700px) {
  #open-sidebar-button, #close-sidebar-button{
    display: block;
  }
  nav{
    position: fixed;
    top: 100px;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 10;
    border-left: 1px solid var(--hover-color);
    transition: right 300ms ease-in-out;
  }
  nav.show{
    right: 0;
  }
  nav.show ~ #overlay{
    display: block;
  }
  nav ul{
    width: 100%;
    flex-direction: column;
  }
  nav a{
    width: 100%;
    padding-left: 2.5em;
  }
  nav a.active-link{
    border-bottom: none;
  }
  nav .home-li{
    margin-right: unset;
  }
}
.footer {
  background-color: var(--primary-color);
  padding: 1em; /* vorher 2em → kompakter */
  text-align: center;
  font-family: Courier New;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em; /* vorher 2em → weniger Abstand */
}

.footer-block {
  flex: 1 1 200px;
  max-width: 300px;
  margin-bottom: 0.5em; /* neu: kontrollierter Abstand nach unten */
}

.footer-block p,
.footer-block a {
  margin: 0.2em 0;
  line-height: 1.4;
}

.footer-icon {
  width: 40px;
  height: auto;
  margin: 0.3em;
}

@media screen and (max-width: 700px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
  }

  .footer-block {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
.logo-wrapper {
  text-align: center;
  padding: 1em;
  z-index: 15;
  background-color: var(--primary-color);
}


/* Nur mobil sichtbares Logo */
.mobile-logo-link {
  display: none;
}

@media screen and (max-width: 700px) {
  .mobile-logo-link {
    display: block;
    padding: 1em 1em;
  }

  .mobile-headerlogo {
    width: 100px;
    height: auto;
  }

  /* Damit das Logo und der Button nebeneinander sind */
  #open-sidebar-button {
    float: right;
    margin-top: -70px; /* leicht anpassen je nach Logo-Höhe */
  }
}
.mobile-topbar {
  display: none;
}

@media screen and (max-width: 700px) {
  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0em 1em;
    padding-left: 0em;
    background-color: var(--primary-color);
    position: fixed;         /* ← neu */
    top: 0;                  /* ← neu */
    left: 0;
    right: 0;
    z-index: 1000;           /* ← sicher über allem */
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }

  .mobile-headerlogo {
    width: 100px;
    height: auto;
  }

  #open-sidebar-button {
    margin: 0;
  }
  main {
    margin-top: 100px; /* je nach tatsächlicher Höhe der Topbar anpassen */
  }
}
.kontakt-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.kontakt-info {
  flex: 1 1 300px;
}

.kontakt-map {
  flex: 1 1 300px;
}

.kontakt-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.oeffnungszeiten {
  margin: 2em 0;
  padding: 1em 1.5em;
  background-color: #fffef0; /* sanftes Gelb, passt zum Radstube-Stil */
  border-left: 4px solid black;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.oeffnungszeiten h3 {
  margin-top: 0;
  font-size: 1.3em;
}

.oeffnungszeiten p {
  margin: 0.4em 0;
}
.oeffnungszeiten h3::before {
  content: "🕒 ";
}
.startseite-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 1em;
}

.startseite-text {
  flex: 1 1 55%;
}

.startseite-insta {
  flex: 1 1 35%;
  min-width: 280px;
  max-width: 400px;
}

.startseite-insta h3 {
  margin-bottom: 0.5em;
  text-align: center;
}

.elfsight-app-138907d9-c0cb-4d5c-91c0-31d4fcc350ee {
  width: 100%;
}

/* Responsiv */
@media screen and (max-width: 700px) {
  .startseite-container {
    flex-direction: column;
  }

  .startseite-insta {
    margin-top: 2em;
  }
}
kontakt-fotos {
  margin-bottom: 2em;
}

.kontakt-fotos h3 {
  margin-bottom: 1em;
  text-align: center;
}

.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1em;
}

.foto-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.foto-grid img:hover {
  transform: scale(1.02);
}
.slideshow-container {
  cursor: zoom-in;
  max-width: 700px;
  max-height: 466.7px;
  margin: 2em auto;
  position: relative;
  text-align: center;
}
.slideshow-gt-container {
  cursor: zoom-in;
  max-width: 400px;
  margin: left;
  position: left;
  text-align: center;
}

.slideshow {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 45%;
  width: 2em;
  padding: 0.4em;
  color: white;
  font-weight: bold;
  font-size: 1.6em;
  background-color: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  user-select: none;
  z-index: 1;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  text-align: center;
  margin-top: 0.5em;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}
.service-block {
  padding: 1em 0;
 
}

.service-text p {
  margin: 0.5em 0;
}
.service-block {
  padding: 2em 0;
  
}

.service-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 0.5em;
}

.service-text p {
  margin: 0.5em 0;
}

.service-table h3 {
  margin-bottom: 0.5em;
  color: #222;
}
service-table {
  display: flex;
  flex-direction: column;
  gap: 3em; /* Abstand zwischen den Service-Blöcken */
  margin-top: 2em;
}

.service-block {
  padding-bottom: 0.5em;
 
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h3 {
  margin-bottom: 0.5em;
}

.service-list {
  list-style: disc;
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.service-text p {
  margin: 0.4em 0;
}
.preisliste-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.service-table {
  flex: 3;
}

.preisliste-insta {
  flex: 1;
  min-width: 300px;
}

.preisliste-insta h3 {
  margin-bottom: 1rem;
}
/* MOBILE OPTIMIERUNG */
@media screen and (max-width: 700px) {
  .preisliste-container {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .service-table, .preisliste-insta {
    width: 100%;
  }

  .service-table h3 {
    font-size: 1.2em;
    margin-top: 1.5rem;
  }

  .service-list {
    padding-left: 1.2rem;
  }

  .service-block {
    padding-bottom: 1em;
  }

  .preisliste-insta h3 {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
  }

  .footer-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-block {
    margin: 0 auto;
  }

  .mobile-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffeb;
    padding: 0.5rem 1rem;
  }

 

  nav#navbar ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  nav#navbar li {
    margin-bottom: 1rem;
  }
}.gepaecktraeger-slider {
  position: relative;
  max-width: 100%;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 8px;
}

.gt-slide {
  display: none;
  width: 100%;
  height: auto;
}

.gt-prev, .gt-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.7);
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  z-index: 10;
}

.gt-prev {
  left: 10px;
}

.gt-next {
  right: 10px;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px #000;
  cursor: zoom-out;
}
.image-copyright {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}
