/* Grundlayout */
body {
  margin: 20px;
  font-family: Leelawadee;color: rgb(102,51,0);
  font-size: 14pt;
  line-height: 1.5;
background-color: rgb(255,255,255);
}

h1{
color: #D2691E;
}

table{
background-color: #f2f2f2;
text-align: left; width: 90%;margin-left:50px;

        cellspacing:2px; padding:2px;border:1px solid;
}

/* Header : volle Breite */
.div1 img,
.full-width-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.div2 img,
.exact-img{
  width: 680px; 
  height: 630px;
  margin-left:200px;
}
/* Kleine Bilder (z. B. in Textabschnitten) */
.small-img {
  width: 300px;
  height: auto;
  float: left;
  margin: 0 16px 12px 0; /* Abstand zum Text */
  border: 1px solid #ddd; /* feiner Rahmen */
  border-radius: 8px;     /* leicht abgerundete Ecken */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* weicher Schatten */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* sanfte Animation */
}

/* Hover-Effekt (leichtes Heben bei Mausüberfahrt) */
.small-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Geräteabhängige Anzeige */
.desktop-only,
.mobile-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}



.whatsapp-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color:#D2B48C;
  color: black;
  font-style:italic;
font-size: 1.3rem;      /* 🔹 Schriftgröße */
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 20px 0;            /* 🔹 Abstand nach oben & unten */
}

.whatsapp-btn:hover {
  background-color: #f5c400;
  transform: translateY(-2px);
}

.scroll-button{
display: inline-block;
padding:12px 24px;
background-color:#D2B48C;
color:white;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
trnsition: background-color: 0,3s ease;
}
.scroll-button: hover{
background-color: #f5c400;
cursor: pointer;
}
