@charset "UTF-8";
@font-face {
  font-family: "Dr Sugiyama";
  src: url("/fonts/DrSugiyama-Regular-fix.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Creato";
  src: url("/fonts/CreatoDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/** ROOT **/
/**colours**/
/** fonts **/
/* slideshow.css */
.slideshow {
  position: relative;
  /**max-width: 400px;**/
  max-width: 100%;
  margin: 1em 0;
  pointer-events: none;
}

.slide {
  display: none;
  /**height: 200px;**/
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  border-radius: 10px;
  overflow: hidden;
}

.slide.active {
  display: block;
}

.slide img {
  max-width: 100%;
  max-height: 250px;
  object-fit: cover;
  z-index: 2;
  pointer-events: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: transparent;
  border: none;
  z-index: 3;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  transform: scale(1.2);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

/* Lightbox active image sizing */
.lightbox img,
.lightbox-active img,
.lightbox-content img {
  max-width: 95vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

nav {
  display: flex;
  justify-content: center;
}

li {
  list-style: none;
  padding-left: 1em;
}

li:first-child {
  padding-left: 0em;
}

a {
  text-decoration: none;
}

ul li a {
  color: #cb3234;
}

ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-family: "Creato", sans-serife;
  padding-left: 0;
  color: #cb3234;
}

header img {
  max-width: 300px;
  height: auto;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #d3efde;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 2em;
}

/** for small screens **/
.burger {
  display: none;
}

@media (max-width: 979px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5em 1em;
    padding-top: 2em;
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #cb3234;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
  .burger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #d3efde;
    z-index: 999;
  }
  .menu.open {
    display: block;
  }
  .menu ul {
    flex-direction: column;
    align-items: center;
    padding: 1em 0;
    gap: 0.5em;
  }
  .menu li {
    padding-left: 0;
  }
}
h1 {
  text-align: center;
}

.news {
  display: flex;
  padding: 1.5em;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
}

.news-item {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  border: 0.15rem solid #ccc;
  padding: 2%;
  margin-bottom: 2%;
  gap: 2%;
  border-radius: 10px;
}

.news-link a {
  color: #cb3234;
}

.news-item:nth-child(odd) {
  flex-direction: row;
}

.news-item:nth-child(even) {
  flex-direction: row-reverse;
}

.news-item .news-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-item h2 {
  margin: 0 0 0.5em 0;
}

.news-item p {
  margin: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2%;
}

.links .link {
  flex: 1 1 200px;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1.5em;
}

/** making responsive **/
@media (max-width: 970px) {
  .links {
    flex-direction: column;
  }
}
@media (max-width: 800px) {
  .news-item,
  .news-item:nth-child(odd),
  .news-item:nth-child(even) {
    flex-direction: column !important;
  }
  .news-item .news-text {
    order: 1;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .news-item .foto {
    order: 2;
    align-self: center;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .news-item .foto img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }
  .news-item p,
  .news-item h2 {
    text-align: center;
  }
}
@media (max-width: 399px) {
  header img {
    max-width: 250px;
  }
}
/** image as background for general desc**/
/* Full-screen hero section */
.general-desc {
  min-height: 100vh;
  background-image: url("/images/geschichte/innen-4.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.general-desc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* Text stays above overlay */
.general-desc p {
  position: relative;
  color: white;
  max-width: 60ch;
  text-align: center;
  padding: 2rem;
}

/* Container: responsive grid */
.sorten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  padding-top: 1.5em;
}

/* Individual item frame */
.sorte-item {
  border: 0.15rem solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

/* Title on top */
.sorte-item h2 {
  margin: 0 0 0.5rem 0;
  text-align: center;
}

/* Description under title */
.sorte-item p {
  margin: 0 0 1rem 0;
}

/* Slideshow/images at bottom */
.sorte-item .slideshow {
  margin-top: auto;
}

.sorte-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  text-align: center;
  font-family: "Creato", sans-serife;
}

.content {
  padding-bottom: 1.5em;
  padding-top: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  display: flex;
  flex-direction: column;
}

/** gilt auch für brot, patisserie, epritifs, menu, und events **/
.content p {
  max-width: 90%;
  align-self: center;
  text-align: center;
}

.sorten p {
  max-width: 100%;
  align-self: start;
}

/* Container: responsive grid */
.auswahl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  padding-top: 1.5em;
}

/* Individual item frame */
.auswahl-item {
  border: 0.15rem solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

/* Title on top */
.auswahl-item h2 {
  margin: 0 0 0.5rem 0;
  text-align: center;
}

/* Description under title */
.auswahl-item p {
  margin: 0 0 1rem 0;
}

.auswahl p {
  max-width: 100%;
  align-self: start;
}

/* Slideshow/images at bottom */
.auswahl-item .slideshow {
  margin-top: auto;
}

.auswahl-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  text-align: center;
}

/* Container: responsive grid */
.auswahl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  padding-top: 1.5em;
}

/* Individual item frame */
.auswahl-item {
  border: 0.15rem solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

/* Title on top */
.auswahl-item h2 {
  margin: 0 0 0.5rem 0;
}

/* Description under title */
.auswahl-item p {
  margin: 0 0 1rem 0;
}

/* Slideshow/images at bottom */
.auswahl-item .slideshow {
  margin-top: auto;
}

.auswahl-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  text-align: center;
}

/** Temporary slideshow **/
.tempSlideshow {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.tempSlideshow .slideshow {
  position: relative;
  display: inline-block;
}
.tempSlideshow .slide {
  display: none;
}
.tempSlideshow .slide.active {
  display: block;
}
.tempSlideshow .slide img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}
.tempSlideshow {
  /* Override global button positioning ONLY here */
}
.tempSlideshow .prev,
.tempSlideshow .next {
  position: absolute;
  top: 50%;
}
.tempSlideshow .prev {
  left: 0;
}
.tempSlideshow .next {
  right: 0;
}

/* Container: responsive grid */
.essen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  padding-top: 1.5em;
}

/* Individual item frame */
.essen-item {
  border: 0.15rem solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

/* Title on top */
.essen-item h2 {
  margin: 0 0 0.5rem 0;
}

/* Description under title */
.essen-item p {
  margin: 0 0 1rem 0;
}

/* Slideshow/images at bottom */
.essen-item .slideshow {
  margin-top: auto;
}

.essen-item img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  text-align: center;
}

.essen p {
  max-width: 100%;
  align-self: start;
}

/** Menu pdf **/
.menu-card {
  display: flex;
  justify-content: center;
}

.menu-card a {
  color: #cb3234;
  text-decoration: underline;
}

/* Container: responsive grid */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  padding-top: 1.5em;
}

/* Individual item frame */
.event-item {
  border: 0.15rem solid #ccc;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
}

/* Link wrapper - remove default link styling */
.event-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

/* Title on top */
.event-item h2 {
  margin: 0 0 0.5rem 0;
  text-align: center;
}

/* Description under title */
.event-item p {
  margin: 0 0 1rem 0;
}

/* Last paragraph - remove bottom margin */
.event-item p:last-child {
  margin-bottom: 0;
}

.events p {
  max-width: 100%;
  align-self: center;
}

footer {
  background-color: #d3efde;
  padding: 1.5rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.25rem;
  text-align: center;
}

footer p,
footer h3,
footer a {
  color: #cb3234;
}

/* Title full width */
.footerTitel {
  grid-column: 1/-1;
}

/* Desktop: 3 columns */
@media (min-width: 800px) {
  footer {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
  footer .openHours {
    grid-column: 1;
  }
  footer .adresse {
    grid-column: 2;
  }
  footer .kontakt {
    grid-column: 3;
  }
}
/* Remove default margins */
footer p,
footer h3 {
  margin: 0;
  line-height: 1.4;
  color: #cb3234;
}

/* Respect manual line breaks */
footer .openHours p,
footer .adresse p {
  white-space: pre-line;
}

/* Kontakt stacked tightly */
footer .kontakt {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ========================= */
/* Bottom middle boring row */
/* ========================= */
footer .boring {
  grid-column: 1/-1;
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Remove list styling */
footer .boring ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
}

/* Social containers inline */
footer .boring > div {
  display: flex;
}

/* Links */
footer .boring a {
  text-decoration: none;
  color: #cb3234;
}

/* Optional: tighter vertical footprint */
footer .boring li {
  margin: 0;
  padding: 0;
}

.map {
  height: 500px; /* or 100vh for full viewport */
  width: 100%;
}

gmp-map {
  height: 100%;
  width: 100%;
}

/* Title + date */
.event-title,
.event-date {
  text-align: center;
  padding-top: 1em;
}

.event-title h1 {
  margin: 0;
}

.event-date p {
  margin: 0.25rem 0 2rem;
}

/* Main layout */
.event-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 1em;
  padding-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

/* Desktop: text + image */
@media (min-width: 48rem) {
  .event-content {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  .event-content:not(:has(.event-foto img)) {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
/* Text */
.event-text p {
  margin: 0;
  line-height: 1.6;
  white-space: pre-line;
  text-align: center;
}

/* Image */
.event-foto img {
  width: auto;
  max-height: 70vh;
  height: auto;
  display: block;
  object-fit: contain;
}

.event-foto {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.kontakt-page {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
  padding: 2rem 1rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.kontakt-page .titel {
  grid-column: 1/-1;
}
.kontakt-page .titel h3 {
  margin: 0;
}

.kontakt-page .openHours p,
.kontakt-page .adresse p {
  white-space: pre-line;
  margin: 0.25rem 0;
  text-align: center;
}

.kontakt-page .kontakt {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.kontakt-page .kontakt a {
  text-decoration: none;
  color: inherit;
}
.kontakt-page .kontakt a:hover {
  text-decoration: underline;
}

.kontakt-page .socialMedia {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.kontakt-page .socialMedia div {
  display: flex;
  align-items: center;
}
.kontakt-page .socialMedia div a {
  text-decoration: none;
  color: inherit;
}
.kontakt-page .socialMedia div a:hover {
  text-decoration: underline;
}

.kontakt-page .mapouter {
  grid-column: 1/-1;
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.kontakt-page .mapouter .gmap_canvas,
.kontakt-page .mapouter iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 48rem) {
  .kontakt-page {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    text-align: left;
  }
  .kontakt-page .titel {
    grid-column: 1/-1;
    text-align: center;
  }
  .kontakt-page .openHours {
    grid-column: 1;
  }
  .kontakt-page .adresse {
    grid-column: 2;
  }
  .kontakt-page .telefon,
  .kontakt-page .email,
  .kontakt-page .socialMedia {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .kontakt-page .telefon .socialMedia,
  .kontakt-page .email .socialMedia,
  .kontakt-page .socialMedia .socialMedia {
    flex-direction: row;
    justify-content: flex-start;
  }
  .kontakt-page .mapouter {
    grid-column: 1/-1;
  }
}
.kontakt-page .kontakt p {
  margin: 0;
}

.movie {
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.movie iframe {
  width: 100%;
  height: 100%;
}

.geschichte-content {
  padding-bottom: 1.5em;
  padding-top: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

/** geschichte slideshow **/
.geschichte-fotos {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-left: 1em;
  padding-right: 1em;
}
.geschichte-fotos .slideshow {
  position: relative;
  display: inline-block;
}
.geschichte-fotos .slide {
  display: none;
}
.geschichte-fotos .slide.active {
  display: block;
}
.geschichte-fotos .slide img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}
.geschichte-fotos {
  /* Override global button positioning ONLY here */
}
.geschichte-fotos .prev,
.geschichte-fotos .next {
  position: absolute;
  top: 50%;
}
.geschichte-fotos .prev {
  left: 0;
}
.geschichte-fotos .next {
  right: 0;
}

.SMfoto img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
  max-height: 300px;
}

.team-content {
  padding: 1.5em;
}

.mitglied img {
  max-width: 100%;
  object-fit: contain;
  height: auto;
  max-height: 300px;
}

.informationen {
  padding-bottom: 1.5em;
  padding-top: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.content .paragraph .absatz p {
  text-align: left;
}

html, body {
  margin: 0;
  padding: 0;
}

img {
  height: 300px;
  border-radius: 10px;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1.15rem;
}

body p {
  line-height: 1.5em;
}

a {
  font-family: "Creato", sans-serife;
  font-size: 1.15rem;
  color: black;
}

main {
  display: flex;
  flex-direction: column;
  padding-bottom: 2em;
}

p {
  font-family: "Creato", sans-serife;
  color: black;
  white-space: pre-line;
}

h1,
h2,
h3 {
  font-family: "Dr Sugiyama";
  color: #cb3234;
}

h1 {
  font-size: clamp(3rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.9rem, 3vw, 2rem);
}

.map {
  height: 400px;
}

/*# sourceMappingURL=main.css.map */
