/* ============================================================
   2maler.at – CoffeeBean-Look Stylesheet
   Stylt die bestehenden Klassen/Tags der index.html neu.
   Markup wird NICHT verändert – nur Stil (Theme CoffeeBean).
   ============================================================ */

:root {
  --coffee: #947b61;        /* CoffeeBean Akzent (::selection) */
  --coffee-dk: #6f5b45;
  --coffee-lt: #b29c84;
  --ink: #2b2b2b;           /* Überschriften / dunkle Flächen */
  --text: #555;
  --muted: #888;
  --line: #eee;
  --paper: #faf8f5;         /* leicht warmer Papier-Ton */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }

body {
  font-family: Arial, 'DM Sans', Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

::selection { background-color: var(--coffee); color: #fff; }
::-moz-selection { background-color: var(--coffee); color: #fff; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--coffee); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--coffee-dk); }

/* ------------------------------------------------ */
/* Header & Contacts                                 */
/* ------------------------------------------------ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 22px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.logo img { height: 56px; width: auto; }

.header-contact {
  text-align: right;
  font-size: .85rem;
  letter-spacing: .02em;
}
.header-contact a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: .03em;
}
.header-contact a:hover { color: var(--coffee); }
.header-hours { color: var(--muted); font-size: .8rem; }

/* ------------------------------------------------ */
/* Main / Typografie                                 */
/* ------------------------------------------------ */
main {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}

h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--ink);
  margin: 3rem 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: .01em;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 3px;
  background: var(--coffee);
}

p { margin-bottom: 1.15rem; }

.intro, .hsw-lead { font-size: 1.08rem; color: #4a4a4a; }
.intro { font-weight: 500; }

ul { padding-left: 1.4rem; margin-bottom: 1.2rem; }
li { margin-bottom: .5rem; }
li::marker { color: var(--coffee); }

/* ------------------------------------------------ */
/* Bilder (WP Featured-Image Optik)                  */
/* ------------------------------------------------ */
figure { margin: 1.8rem 0; }
.content-photo {
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(43, 43, 43, .12);
}

/* ------------------------------------------------ */
/* CTA-Bar                                           */
/* ------------------------------------------------ */
.cta-bar {
  background: linear-gradient(135deg, var(--coffee), var(--coffee-dk));
  color: #fff;
  border-radius: 6px;
  padding: 36px 28px;
  margin: 2.6rem 0;
  text-align: center;
  box-shadow: 0 12px 34px rgba(111, 91, 69, .25);
}
.cta-bar p { margin-bottom: 18px; color: rgba(255,255,255,.92); }
.cta-bar strong { font-size: 1.15rem; }

.btn-call {
  display: inline-block;
  background: #fff;
  color: var(--coffee-dk) !important;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .03em;
  padding: 15px 32px;
  border-radius: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: var(--coffee) !important;
}

/* ------------------------------------------------ */
/* Reviews                                           */
/* ------------------------------------------------ */
.reviews {
  font-style: italic;
  color: #5a5147;
  background: var(--paper);
  border-left: 3px solid var(--coffee);
  padding: 16px 20px;
  border-radius: 0 4px 4px 0;
}

/* ------------------------------------------------ */
/* Footer                                            */
/* ------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 44px 20px;
  text-align: center;
  font-size: .92rem;
  line-height: 1.9;
}
.site-footer strong { color: #fff; }
.site-footer a { color: var(--coffee-lt); font-weight: 600; }
.site-footer a:hover { color: #fff; }

/* ------------------------------------------------ */
/* Responsive                                        */
/* ------------------------------------------------ */
@media (max-width: 768px) {
  .site-header { padding: 16px 18px; }
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .header-contact { text-align: center; }
  .logo img { height: 48px; }

  main { padding: 36px 18px 56px; }
  h2 { margin-top: 2.4rem; }
}

@media (max-width: 480px) {
  body { line-height: 1.7; }
  .logo img { height: 42px; }
  .header-contact a { font-size: 1rem; }

  main { padding: 28px 15px 44px; }
  .intro, .hsw-lead { font-size: 1rem; }

  .cta-bar { padding: 28px 18px; }
  .btn-call { font-size: 1rem; padding: 13px 22px; }
  .reviews { padding: 14px 16px; }
  .site-footer { padding: 34px 16px; }
}
