@font-face {
  font-family: Monserrat;
  src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Roboto;
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Roboto;
  src: url('fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Montserrat;
  src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

h1 {
  font-family: Montserrat;
  font-size: 3rem;
  letter-spacing: 1px;
}
h2 {
  font-family: Montserrat;
  font-size: 3rem;
  letter-spacing: 1px;
}

main {
  color: #333 !important;
}


.logo {
  width: 70%;
}

.bg-primary {
  background-color: #a39b93 !important;
}

.rotate {
  animation: 22s linear infinite spin;
  display: block;
  margin: 70px auto 0
}


@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.btn,
.card {
  border-radius: 0rem !important;
}

.section-0 {
  height: 100vh;
  background-image: url(media/zeitung_scroll-over.png);
  background-attachment: fixed;
  background-size: cover;
}

.komd {
  width: 20%;
}
/** Größere Monitore **/
@media only screen and (min-width: 570px) {
  #mobil {
    display: none;
  }
}

/** Kleinere Monitore **/
@media only screen and (max-width: 600px) {

  #desktop,
  #spinner,
  .box
  {
    display: none;
    text-align: center;
  }
  #mobil{
    margin-top: 100px;
  }
}

  h1 {
    font-size: 2rem;
  }

.btn {

background-color:#a39b93 ;
border: #a39b93;
}
.accordion-button{

  background-color:#a39b93;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: white;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)
1px
) 0 var(--bs-accordion-border-color);}

.accordion {--bs-accordion-active-bg:#a39b93 ;}

.accordion-collapse {

  --bs-accordion-active-bg:#a39b93 ;
}

.btn, .card { 
  border-radius: 1.75rem !important;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--bs-primary-bg-subtle);
  background-color: var(--bs-primary-bg-subtle);
  border-color: var(--bs-primary-bg-subtler);

}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}
.col-lg-2 img {
  border-radius: 12px;   /* Stärke der abgerundeten Ecken */
  object-fit: cover;     /* sorgt für sauberes Zuschneiden */
  display: block;        /* verhindert kleine Lücken */
}

body
{background-color: #eceae4;}
  


