
@font-face {
  font-family: FunnelSans;
  src: url('fonts/Funnel_Sans/FunnelSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap; }


@font-face {
  font-family: FunnelSans;
  src: url('fonts/Funnel_Sans/FunnelSans-VariableFont_wght.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-size: 1.1rem ;
  line-height: 1.4;
}


h1 {
  font-family: FunnelSans;
  font-size: 3rem;
  letter-spacing: 1px;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding-bottom: 40px;
  color: #333 !important;
}

/*HEADER / BILDER */

header img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.logo {
  width: 70%;
}

.komd {
  width: 20%;
}

/* BACKGROUNDS */

.bg-primary {
  background-color: #7bb3eb !important;
}

.section-0 {
  height: 100vh;
  background-image: url(media/zeitung_scroll-over.png);
  background-attachment: fixed;
  background-size: cover;
}



.rotate {
  animation: 22s linear infinite spin;
  display: block;
  margin: 70px auto 0;
}

@keyframes spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* BUTTONS & CARDS */

.btn,
.card {
  border-radius: 1.7rem !important;
}

.btn {
  background-color: #5d4336 !important;
  color: white !important;
  border: #5d4336 !important;
}

/* NAVBAR */

.navbar {
  background-color: #ddcab2 !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}


@media (min-width: 768px) {
  .navbar-nav {
    flex-direction: row !important;
  }
}

/* ACCORDION */

.accordion-button {
  background-color: #5d4336 !important;
  color: white;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:not(.collapsed) {
  color: black;
  box-shadow: none;
}

/* MODAL*/

.modal-body {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

/* Footer */

.footer {
  background-color: #ddcab2 !important;
  padding: 5px 0;
}

.footer-spacing {
  height: 40px;
}

footer a {
  color: black;
  text-decoration: none;
}

footer a:hover,
footer a:focus,
footer a:active {
  color: black;
  text-decoration: none;
}


/* Größere Monitore */
@media only screen and (min-width: 570px) {
  #mobil {
    display: none;
  }
}

@media (min-width: 576px) {
  #mobil {
    display: none;
  }
}

/* Kleinere Monitore */
@media only screen and (max-width: 600px) {

  #desktop,
  #spinner,
  .box {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }
}

body {
  background: #f5f5f5;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.pro-gallery {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.pro-gallery .item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pro-gallery .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.pro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pro-gallery .item:hover img {
  transform: scale(1.08);
}

#bilder {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Spalten */
  gap: 10px;
  padding: 10px;
}

#bilder .item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

/* Mobile Anpassung */
@media (max-width: 600px) {
  #bilder {
    grid-template-columns: repeat(2, 1fr); 
  }
}

