/* ===================================
   Global Styles
=================================== */
:root {
  --color-primary: #d2b48c; /* Sandbraun */
  --color-accent: #d2691e; /* Kupfer */
  --color-text: #4a2c00;   /* Dunkles Braun */
  --color-bg: #fffaf5;     /* Sanftes Cremeweiß */
  --color-light: #f7efe8;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Leelawadee", "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 16px;
  line-height: 1.7;
  padding: 0;
}

/* ===================================
   Headings & Text
=================================== */
h1, h2, h3 {
  color: var(--color-accent);
  margin-top: 1.5rem;
}

h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

p, li {
  color: var(--color-text);
  margin-bottom: 1rem;
}

ul li {
  line-height: 1.4;
}

/* ===================================
   Layout
=================================== */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

hr {
  border: none;
  border-top: 2px solid var(--color-light);
  margin: 2rem 0;
}

/* ===================================
   Images
=================================== */
.full-width-img {
  width: 100%;
  height: auto;
  display: block;
}

.exact-img {
  width: 680px;
  height: auto;             /* erlaubt flexible Höhe */
  display: block;           /* nötig, um margin:auto zu zentrieren */
  margin: 20px auto;        /* zentriert horizontal */
  max-width: 90%;           /* sorgt für responsives Verhalten */
  border-radius: 8px;       /* optional: leicht abgerundet */
}


.small-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  float: left;
  margin: 0 1.2rem 1rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.small-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Buttons
=================================== */
.whatsapp-btn,
.scroll-button {
  display: inline-block;
  padding: 12px 20px;
  margin-top: 1rem;
  background-color: var(--color-primary);
  color: var(--color-text);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition), transform var(--transition);
  box-shadow: var(--shadow-soft);
}

.whatsapp-btn:hover,
.scroll-button:hover {
  background-color: var(--color-accent);
  color: white;
  transform: translateY(-3px);
}

/* ===================================
   Tables
=================================== */
table {
  width: 100%;
  background: var(--color-light);
  border-collapse: collapse;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin: 2rem 0;
}

table td, table th {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0d6cc;
}

table tr:last-child td {
  border-bottom: none;
}

/* ===================================
   Responsive Design
=================================== */
.desktop-only,
.mobile-only {
  display: none;
}

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

  main {
    padding: 0 2rem 4rem;
  }

  .small-img {
    max-width: 350px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  padding-left: 20px; /* etwas Luft am linken Rand */
  padding-right: 20px; /* optional, für symmetrische Abstände */
  box-sizing: border-box;
}



  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .small-img {
    float: none;
    margin: 1rem auto;
    display: block;
  }

  .whatsapp-btn,
  .scroll-button {
    width: 100%;
    text-align: center;
  }
}
footer {
  background-color: var(--color-light);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--color-text);
  border-top: 2px solid var(--color-primary);
  font-size: 0.9rem;
  margin-top: 4rem;
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}


/* ===================================
   Extras & Animations
=================================== */
.image-text::after {
  content: "";
  display: block;
  clear: both;
}
/* Abstand und Layout für Bild/Text-Bereiche */
.image-text {
  overflow: hidden; /* sorgt dafür, dass Text schön neben dem Bild bleibt */
}

/* Abstand der Listen zum Bild */
.image-text ul {
  margin-top: 0.5rem;
  margin-left: 1.5rem; /* Standardabstand zum Bild */
  padding-left: 1rem;  /* etwas Platz für die Bullets */
  list-style-position: outside;
}

/* Wenn das Bild links schwebt, gib extra Raum */
.image-text .small-img {
  margin-right: 2rem; /* mehr Abstand zum Text, auch zu Listen */
}

/* Optional: etwas mehr Platz, wenn man mit der Maus über das Bild fährt */
.image-text:hover ul {
  margin-left: 1.7rem; /* leichter Effekt, bleibt aber ruhig */
}


blockquote {
  font-style: italic;
  color: #654321;
  border-left: 4px solid #D2B48C;
  padding-left: 16px;
  margin: 20px 40px;
  background-color: #faf6f2;
  border-radius: 6px;
}

/* Sanfter Fade-In beim Scrollen */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section, .image-text, table {
  animation: fadeInUp 0.6s ease forwards;
}
