/* --- LuciDron Lichtkonzepte: Creative Artistic Style CSS --- */

/* CSS RESET & GENERAL 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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FCFCFA;
  color: #23313D;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 1rem;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { padding-left: 24px; }
button { font-family: inherit; font-size: 1rem; cursor: pointer; background: none; border: none; }

/* BRAND COLORS */
:root {
  --ld-primary: #23313D;
  --ld-secondary: #8AA3B8;
  --ld-accent: #FFD56A;
  --ld-bg: #FCFCFA;
  --ld-card: #fff;
  --ld-text: #23313D;
  --ld-grey: #EFF3F7;
  --ld-shadow: rgba(35, 49, 61, 0.10);
  --ld-radius: 18px;
  --ld-transition: 0.25s cubic-bezier(.44,1.11,.71,1.07);
}

/* CREATIVE ARTISTIC FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--ld-primary);
}
h1 { font-size: 2.2rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 1.7rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p, li, blockquote, address {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--ld-text);
  font-size: 1rem;
}
blockquote {
  background: var(--ld-accent);
  border-left: 6px solid var(--ld-secondary);
  border-radius: 12px;
  padding: 18px 24px;
  font-style: italic;
  margin-bottom: 32px;
  margin-top: 20px;
  color: var(--ld-primary);
}

/* --- CONTAINER AND LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--ld-card);
  border-radius: var(--ld-radius);
  box-shadow: 0 6px 32px var(--ld-shadow);
  padding: 32px 26px;
  transition: transform var(--ld-transition), box-shadow var(--ld-transition);
  position: relative;
  min-width: 240px;
  flex: 1 1 250px;
}
.card:hover {
  transform: translateY(-5px) scale(1.02) rotate(-1.5deg);
  box-shadow: 0 10px 36px rgba(35,49,61,.15);
}

/* FLEXBOX ALIGNMENT PATTERNS */
.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;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .feature-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--ld-card);
  border-radius: var(--ld-radius);
  box-shadow: 0 2px 24px var(--ld-shadow);
  margin-bottom: 20px;
  min-width: 290px;
  max-width: 400px;
  transition: box-shadow var(--ld-transition), transform var(--ld-transition);
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px rgba(138,163,184,0.12), 0 1.5px 4px var(--ld-shadow);
  transform: scale(1.025) rotate(0.5deg);
  background: #FBF6EC;
}
.testimonial-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--ld-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.customer-name {
  font-size: 0.97rem;
  color: var(--ld-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  background: var(--ld-card);
  border-radius: var(--ld-radius);
  box-shadow: 0 3px 18px var(--ld-shadow);
  padding: 24px 18px 18px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--ld-transition), transform var(--ld-transition);
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 3px rgba(35,49,61,.11));
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(255,213,106,0.13);
  background: #FEFBF3;
  transform: scale(1.01) rotate(-1.5deg);
  z-index: 2;
}

/* HERO STYLES */
.hero {
  display: flex;
  background: linear-gradient(90deg, #FFD56A 0%, #8AA3B8 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease-in-out infinite alternate;
  border-radius: 0 0 60px 60px;
  margin-bottom: 50px;
  min-height: 340px;
  position: relative;
  box-shadow: 0 10px 54px rgba(255,213,106,0.06);
}
@keyframes heroGradient {
  0% { background-position: 0% 10%; }
  100% { background-position: 50% 90%; }
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 295px;
  z-index: 2;
  position: relative;
  padding: 48px 0 24px 0;
}
.hero h1, .hero p {
  color: var(--ld-primary);
  text-shadow: 0 1px 4px rgba(255,255,255,0.19),0 2px 16px rgba(35,49,61,0.07);
}
.hero p {
  margin-bottom: 18px;
  font-size: 1.17rem;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  background: var(--ld-accent);
  color: var(--ld-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  padding: 14px 34px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 2px 20px rgba(255,213,106,0.14);
  margin-top: 18px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background var(--ld-transition), color var(--ld-transition), box-shadow var(--ld-transition);
  text-shadow: 0 2px 8px #FFFFFF50;
}
.cta-button:hover, .cta-button:focus {
  background: var(--ld-secondary);
  color: var(--ld-accent);
  box-shadow: 0 6px 28px rgba(35,49,61,0.13);
  outline: none;
}

/* --- NAVIGATION --- */
header {
  background: var(--ld-card);
  box-shadow: 0 3px 16px var(--ld-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--ld-primary);
  font-size: 1.02rem;
  padding: 6px 16px;
  border-radius: 18px;
  transition: background var(--ld-transition), color var(--ld-transition);
}
header nav a:hover, header nav a[aria-current="page"] {
  background: var(--ld-accent);
  color: var(--ld-secondary);
}

/* Hide main nav and cta btn on mobile */
@media (max-width: 920px) {
  header nav, .cta-button {
    display: none !important;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--ld-accent);
  color: var(--ld-primary);
  border: none;
  border-radius: 50%;
  font-size: 2.05rem;
  padding: 7px 12px;
  position: absolute;
  right: 24px;
  top: 19px;
  z-index: 101;
  box-shadow: 0 2px 20px rgba(255,213,106,0.18);
  transition: background var(--ld-transition), color var(--ld-transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--ld-primary);
  color: var(--ld-accent);
}
@media (max-width: 920px) {
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,49,61,0.98);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.92,0,.13,1);
  z-index: 999;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--ld-accent);
  background: transparent;
  border: none;
  align-self: flex-end;
  font-size: 2.3rem;
  margin: 24px 28px 12px 0;
  cursor: pointer;
  z-index: 1003;
  transition: color var(--ld-transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
  padding: 34px 34px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 11px 22px;
  margin-bottom: 5px;
  border-radius: 26px;
  min-width: 220px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--ld-accent);
  color: var(--ld-primary);
  text-decoration: none;
}

/* --- FEATURE GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
}
.feature-icons {
  display: flex;
  gap: 26px;
  margin-top: 16px;
}

/* --- QUICK TIPS, NOTES --- */
.quick-tips, .note {
  background: var(--ld-accent);
  color: var(--ld-primary);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin: 14px 0 12px 0;
}

/* --- TESTIMONIAL SLIDER --- */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* --- CONTACT BLOCKS --- */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  flex-direction: row;
}
.contact-block > div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ld-grey);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--ld-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: var(--ld-secondary);
  color: #fff;
  padding: 38px 20px 16px 20px;
  border-radius: 52px 52px 0 0;
  margin-top: 58px;
  box-shadow: 0 -3px 30px rgba(35,49,61,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  padding: 7px 18px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.18s, color 0.12s;
}
footer nav a:hover {
  background: var(--ld-accent);
  color: var(--ld-primary);
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.98rem;
  color: #fff;
  align-items: center;
}
.contact-footer > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* --- LISTS --- */
ul {
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 2px;
  line-height: 1.7;
}
ol {
  margin-bottom: 16px;
  padding-left: 30px;
}
ol li {
  margin-bottom: 9px;
}

/* --- FORMS, INPUTS (for contact) --- */
input, textarea, select {
  border: 1.4px solid var(--ld-secondary);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  background: #FCFCFA;
  box-shadow: 0 1px 7px var(--ld-shadow);
  transition: border-color var(--ld-transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--ld-accent);
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ld-secondary);
  margin-bottom: 6.5px;
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFD56A 90%, #8AA3B8 100%);
  box-shadow: 0 -3px 26px rgba(35,49,61,0.09);
  color: var(--ld-primary);
  padding: 26px 20px 30px 26px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieSlideIn 0.9s cubic-bezier(.81,1.31,0,.93);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100vh); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: var(--ld-primary);
  color: var(--ld-accent);
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 10px 26px;
  box-shadow: 0 1px 5px var(--ld-shadow);
  transition: background var(--ld-transition), color var(--ld-transition), transform 0.13s;
  cursor: pointer;
  outline: none;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--ld-primary);
  border: 1.2px solid var(--ld-secondary);
}
.cookie-banner button:active {
  transform: scale(0.97);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--ld-accent);
  color: var(--ld-primary);
}

/* --- COOKIE PREFERENCE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,49,61, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.45s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--ld-card);
  border-radius: 30px;
  box-shadow: 0 12px 48px rgba(35,49,61,0.17);
  padding: 36px 28px 26px 28px;
  min-width: 320px;
  max-width: 98vw;
  color: var(--ld-primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  animation: cookieModalPop .37s cubic-bezier(.92,1.81,.24,1);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.73) translateY(36px); opacity: 0.1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 21px;
  right: 20px;
  font-size: 1.7rem;
  color: var(--ld-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--ld-transition);
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--ld-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ld-grey);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--ld-primary);
}
.cookie-toggle {
  display: inline-flex;
  width: 48px;
  height: 28px;
  border-radius: 18px;
  background: var(--ld-secondary);
  position: relative;
  margin-left: 12px;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle label {
  display: block;
  width: 48px;
  height: 28px;
  cursor: pointer;
  position: absolute;
  top: 0; left: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 4px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px var(--ld-shadow);
  transition: left 0.23s cubic-bezier(.34,1.19,.41,.99), background 0.14s;
}
.cookie-toggle input:checked + label .slider {
  left: 24px;
  background: var(--ld-accent);
}
.cookie-category[data-essential='true'] .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.card, .testimonial-card, .feature-item {
  will-change: transform, box-shadow;
}
a, button, .cta-button, .feature-item, .testimonial-card {
  transition: background 0.22s, color 0.20s, transform 0.21s, box-shadow 0.26s;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 1000px) {
  .container { max-width: 96vw; }
}
@media (max-width: 920px) {
  .container { max-width: 98vw; }
  .hero { min-height: 220px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  .hero .content-wrapper { padding: 32px 0 14px 0; }
  .section, .about .section { padding: 26px 4px; }
  .footer .container { gap: 4px; }
}
@media (max-width: 540px) {
  .feature-item, .testimonial-card, .card {
    min-width: 93vw;
    padding: 18px 7vw;
  }
  .feature-grid, .testimonial-slider, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid, .contact-block {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner {
    font-size: 0.98rem;
    padding: 19px 6vw 23px 6vw;
  }
}

/* --- ARTISTIC/UNIQUE TOUCHES --- */
.section {
  background: linear-gradient(92deg, #fff 70%, #FFD56A 105%);
  border-radius: 28px;
  box-shadow: 0 3px 22px var(--ld-shadow);
  margin-bottom: 60px;
  overflow-x: hidden;
}
.about .section {
  background: linear-gradient(98deg, #fff 73%, #8AA3B820 120%);
}

/* Slight hand-drawn-style edges for cards (SVG mask fallback for broad browser support) */
.card::before, .testimonial-card::before, .feature-item::before {
  content: "";
  display: block;
  position: absolute;
  left: -7px; top: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  background: none;
  border: 2.5px dashed var(--ld-secondary);
  border-radius: calc(var(--ld-radius) * 1.12);
  pointer-events: none;
  opacity: 0.11;
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--ld-grey);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--ld-secondary);
  border-radius: 6px;
}

/* Selection highlight */
::selection { background: var(--ld-accent); color: var(--ld-primary); }

/* Accessibility: high contrast on testimonials */
.testimonial-card {
  color: var(--ld-primary); /* override if coming from a dark bg */
  background: #FFFAF5;
}
.testimonial-card p {
  color: var(--ld-primary);
  font-size: 1rem;
}

/* --- END LuciDron Creative Artistic CSS --- */
