/* ===========================================================
   Radiantor Hands Vintage Retro Style - style.css
   Responsive, Only Flexbox, No CSS Grid, No Columns
   Typography: Playfair Display (display), Roboto (body)
   Color Palette: Primary #943244, Secondary #22282f, Accent #F7E7C2
   ============================================================ */
    
/* ----------------------
   0. Fonts Import & Reset
------------------------- */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');

/* Reset and Normalize */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #22282f;
  background-color: #F7E7C2;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #943244;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.85,.24,.33,.78);
}
a:hover, a:focus {
  color: #22282f;
  text-decoration: underline;
}
button {
  font-family: inherit;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Selection color */
::selection {
  background: #943244;
  color: #F7E7C2;
}

/* ----------------------
   1. Typography
------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #943244;
  word-spacing: 2px;
  margin-bottom: 0.5em;
}
h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #F7E7C2, 4px 4px 0 #22282f44;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}
h4, h5, h6 {
  font-size: 1.12rem;
  font-weight: 700;
}
p, li, blockquote {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.25rem;
  color: #22282f;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 24px;
}
.legal h1, .legal h2, .legal h3 {
  color: #943244;
}
strong {
  font-weight: 700;
  color: #943244;
}

/* Retro accent text styles */
.retro-accent {
  font-family: 'Playfair Display', serif;
  color: #943244;
  background: #F7E7C2;
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: 1px 2px 0 #fff6e6;
}

/* ----------------------
   2. Layout Containers
------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Card containers and cards
   (Using only flexbox, never grid/columns) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-card, .feature-card {
  margin-bottom: 20px;
  background: #fffdfa;
  border: 2px solid #eeddb7;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #00000014, 0 6px 28px 0 #9432440c;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  max-width: 340px;
  gap: 16px;
}
.card:hover, .service-card:hover, .feature-card:hover {
  box-shadow: 0 4px 20px 0 #94324433, 0 12px 36px 0 #22282f20;
  transform: translateY(-4px) scale(1.02);
}
.feature-grid, .service-cards, .testimonial-cards, .category-list ul, .tag-list ul, .workshop-list, .workshop-benefits, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

/* Testimonial card special styling */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdfa;
  border: 2px solid #eeddb7;
  border-radius: 12px;
  min-width: 230px;
  max-width: 400px;
  box-shadow: 0 3px 12px #22282f0f;
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card blockquote {
  color: #22282f;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-name {
  font-size: 0.96rem;
  color: #943244;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0;
}

/* Feature item (by instruction) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 12px 0;
}

/* General grid for spacing (only flex) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/************************************
 * 3. Header, Navigation & Logo     *
 ************************************/
header {
  background: #fffdfa;
  box-shadow: 0 2px 16px 0 #22282f14;
}
header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-right: 24px;
}
.main-nav a {
  color: #943244;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #F7E7C2;
  border-radius: 2px;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 80%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  min-width: 130px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px #22282f12;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  margin-left: 8px;
  padding: 12px 28px;
}
.btn-primary {
  background: #943244;
  color: #F7E7C2;
  border: 2px solid #943244;
}
.btn-primary:hover, .btn-primary:focus {
  background: #22282f;
  color: #F7E7C2;
  border-color: #22282f;
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: #F7E7C2;
  color: #943244;
  border: 2px solid #943244;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #943244;
  color: #F7E7C2;
  border-color: #943244;
  transform: translateY(-2px) scale(1.03);
}

/*******************************************
 * 4. MOBILE NAVIGATION (Hamburger/Menu)  *
 *******************************************/
.mobile-menu-toggle {
  background: #943244;
  color: #F7E7C2;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 45;
  transition: background 0.2s;
  margin-left: 18px;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #22282f;
  color: #F7E7C2;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: #F7E7C2;
  box-shadow: 0 2px 44px #22282f22;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.82,.41,.2,.98);
  z-index: 9999;
  padding-top: 32px;
  padding-bottom: 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #22282f;
  color: #F7E7C2;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-right: 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #943244;
  color: #F7E7C2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #943244;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Playfair Display', serif;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #943244;
  color: #F7E7C2;
}

/***************************************
 * 5. HERO, CTA, FEATURES, ETC.        *
 ***************************************/
.hero {
  background: repeating-linear-gradient(135deg,#eeddb7 0 24px,#F7E7C2 24px 48px);
  border-bottom: 4px dotted #94324455;
}
.hero .container {
  min-height: 230px;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}

.cta {
  background: #943244;
  color: #F7E7C2;
  border-radius: 32px;
  box-shadow: 0 2px 28px #94324412;
}
.cta .content-wrapper h2,
.cta .content-wrapper p {
  color: #F7E7C2;
}

.features {
  background: #fffdfa;
  border-top: 2px dotted #eeddb7;
  border-bottom: 2px dotted #eeddb7;
}
.feature-card img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #F7E7C2;
  background: #fffdfa;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px #22282f11;
}

.category-list ul, .tag-list ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.category-list li, .tag-list li {
  background: #F7E7C2;
  border: 1.5px solid #94324444;
  color: #943244;
  font-family: 'Playfair Display', serif;
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 1.02rem;
  margin-bottom: 12px;
  transition: background 0.18s, color 0.18s;
}
.category-list li:hover, .tag-list li:hover {
  background: #943244;
  color: #F7E7C2;
  cursor: pointer;
}

/* Services Cards (dienstleistungen.html) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  min-width: 225px;
}

/************************************
 * 6. CONTACT, MAP, FOOTER          *
 ************************************/
.contact-details {
  background: #fffdfa;
  border: 2px solid #eeddb7;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px #9432440a;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-details strong {
  color: #943244;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background: #F7E7C2;
  padding: 18px;
  box-shadow: 0 1px 7px #94324410;
}
.map-caption {
  font-size: 0.92rem;
  color: #943244;
  margin-top: 8px;
}

footer {
  background: #22282f;
  color: #F7E7C2;
  padding: 48px 0 24px 0;
  font-size: 0.96rem;
  border-top: 6px dotted #94324422;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 40px;
}
.footer-nav a {
  color: #F7E7C2;
  font-family: 'Playfair Display', serif;
  transition: color 0.16s;
  letter-spacing: 0.5px;
}
.footer-nav a:hover {
  color: #943244;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-branding img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

/************************************
 * 7. LEGAL (Impressum/Cookie/GDPR) *
 ************************************/
.legal {
  background: #fffdfa;
}
.legal .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.28rem;
  margin-top: 24px;
}
.legal ul, .legal ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
.legal ul li, .legal ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/************************************
 * 8. COOKIES CONSENT BANNER + MODAL *
 ************************************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 12000;
  width: 100vw;
  background: #22282f;
  color: #F7E7C2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 34px 18px 28px;
  box-shadow: 0 -2px 24px #22282f44;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(.66,.22,.39,.88);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}

.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-consent-banner .btn {
  min-width: 120px;
  font-size: 1rem;
}
.cookie-settings-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(34,40,47, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 14000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-settings-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-settings-modal .modal-content {
  background: #fffdfa;
  color: #22282f;
  border-radius: 16px;
  padding: 36px 32px 24px 32px;
  box-shadow: 0 12px 48px 0 #94324422;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-settings-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 1.75rem;
  background: transparent;
  color: #943244;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.cookie-settings-modal .close-modal:hover {
  background: #943244;
  color: #fffdfa;
}
.cookie-settings-modal h3 {
  color: #943244;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 700;
  color: #22282f;
}
.cookie-toggle-switch {
  width: 42px;
  height: 24px;
  background: #eeddb7;
  border-radius: 14px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.18s;
  border: 1.5px solid #94324411;
}
.cookie-toggle-switch input { display: none; }
.cookie-toggle-switch span {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #943244;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.cookie-toggle-switch input:checked + span {
  transform: translateX(18px);
  background: #22282f;
}
.cookie-category .cookie-label-info {
  font-size: 0.92rem;
  color: #943244;
  margin-left: 8px;
}

/*****************************
 * 9. Responsive Design      *
 *****************************/
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .footer-nav {
    margin-right: 14px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-branding {
    align-items: flex-start;
  }
  .service-cards, .feature-grid, .testimonial-cards, .card-container, .content-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .hero .container {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 34px;
  }
  .card, .service-card, .feature-card, .testimonial-card {
    min-width: 96vw;
    max-width: 98vw;
    padding: 18px;
  }
  .content-grid, .feature-grid, .category-list ul, .tag-list ul, .service-cards, .testimonial-cards {
    flex-direction: column;
    gap: 14px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 15px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 8px 14px 8px;
    font-size: 0.93rem;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 10px;
  }
  .cookie-settings-modal .modal-content {
    min-width: 90vw;
    padding: 16px 4vw 12px 4vw;
  }
  .feature-card img {
    width: 40px;
    height: 40px;
  }
}

/*****************************
 * 10. Misc Micro-Animation  *
 *****************************/
.btn, .main-nav a, .category-list li, .tag-list li, .mobile-nav a {
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.16s;
}
.card, .service-card, .feature-card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
.mobile-menu, .cookie-consent-banner {
  will-change: transform, opacity;
}

/*****************************
 * 11. Utility classes       *
 *****************************/
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-4 { margin-bottom: 32px !important; }

/*****************************
 * 12. Print Friendly        *
 *****************************/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body, .container, .content-wrapper { background: #fff !important; color: #000 !important; }
}

/***********************
 * End of style.css    *
 **********************/
