/* CSS RESET & BASE ---------------------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAFF;
  color: #234;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #23789b;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus, a:hover {
  color: #62B98A;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #23304B;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 9px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
p {
  margin-bottom: 1.1em;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* COLOR PALETTE ------------------------------------------------------- */
:root {
  --primary: #23304B;
  --secondary: #62B98A;
  --accent: #F3F5F7;
  --pastel-pink: #FFD6E7;
  --pastel-mint: #C8F1DC;
  --pastel-blue: #D1EBFF;
  --pastel-lilac: #EBE4FD;
  --text-dark: #23304B;
  --text-soft: #527;
  --white: #FFF;
  --gray: #807a7a;
  --shadow: 0 2px 16px 0 rgba(80, 104, 148, 0.09), 0 1.5px 6px 0 rgba(193, 212, 234, 0.07);
}

body {
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--accent) 100%);
  min-height: 100vh;
}

/* TYPOGRAPHY ----------------------------------------------------------- */
.display {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.body {
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section,
.content-wrapper.text-section {
  max-width: 660px;
  margin: 0 auto 32px auto;
  text-align: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* GENERAL LAYOUT & RESPONSIVE ----------------------------------------- */
main {
  margin-top: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-grid,
.product-cards,
.benefit-points ul,
.category-tiles,
.product-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.product-cards > div,
.product-teasers > li,
.category-tiles > li {
  background: var(--pastel-mint);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  min-width: 180px;
  transition: transform 0.13s, box-shadow 0.14s;
}
.product-cards > div:hover,
.product-teasers > li:hover,
.category-tiles > li:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 6px 18px 0 rgba(98, 185, 138, 0.19);
}

/* FEATURE GRID -------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid > div {
  background: var(--pastel-pink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 20px 24px 20px;
  flex: 1 1 235px;
  min-width: 180px;
  text-align: center;
  margin-bottom: 20px;
  transition: transform 0.12s, box-shadow 0.12s;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 20px 0 rgba(255, 214, 231, 0.16);
}
.feature-grid img {
  display: block;
  margin: 0 auto 10px auto;
  width: 44px;
  height: 44px;
}

/* TESTIMONIAL CARD ---------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 32px;
}
.testimonial-card > div,
.testimonial-card blockquote {
  background: var(--pastel-lilac);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 28px 18px 28px;
  flex: 1 1 316px;
  margin-bottom: 20px;
  min-width: 230px;
  color: var(--text-dark);
  font-size: 1.04rem;
  position: relative;
  transition: box-shadow 0.12s;
}
.testimonial-card > div:hover,
.testimonial-card blockquote:hover {
  box-shadow: 0 8px 32px 0 rgba(160, 134, 255, 0.11);
}
.testimonial-name,
.testimonial-card blockquote footer {
  display: block;
  color: #527;
  font-size: 1rem;
  margin-top: 10px;
  font-style: italic;
  opacity: 0.90;
}
.star-rating {
  color: #FDB436;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-left: 4px;
}

/* BUTTONS ------------------------------------------------------------- */
.btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(90deg, var(--secondary) 60%, var(--pastel-mint) 100%);
  color: var(--text-dark);
  border: none;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 12px 36px;
  display: inline-block;
  box-shadow: 0 2px 16px rgba(80, 220, 205, 0.06);
  cursor: pointer;
  margin: 18px 0 8px 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--pastel-mint) 60%, var(--secondary) 100%);
  color: var(--primary);
  outline: none;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(98, 185, 138, 0.20);
}

/* CARDS & LISTS ------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-blue);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 18px;
  min-width: 220px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 30px 0 rgba(209, 235, 255, 0.13);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/**** OTHER CONTENT WRAPPERS & PATTERNS ******/
.faq h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.faq p {
  margin-bottom: 17px;
}
.benefit-points ul li,
.product-filter-list ul li,
.category-tiles li,
.product-teasers li {
  background: var(--pastel-mint);
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 12px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.benefit-points ul li img,
.product-filter-list ul li img {
  vertical-align: middle;
  margin-right: 10px;
}

/**** BLOG ARTICLES & TAGS ********/ 
.article-list {
  list-style: none;
  margin-bottom: 24px;
}
.article-list li {
  background: var(--pastel-lilac);
  border-radius: 15px;
  padding: 18px 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.popular-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 20px;
}
.popular-tags li {
  background: var(--pastel-pink);
  color: #8a7fa6;
  border-radius: 22px;
  font-size: .96rem;
  padding: 8px 16px;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/***** MAP PLACEHOLDER (Kontakt) ******/
.map-placeholder {
  background: var(--pastel-blue);
  color: var(--primary);
  font-style: italic;
  border-radius: 10px;
  padding: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

/***** FOOTER **********************************************************/
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 80%, var(--pastel-pink) 100%);
  padding: 50px 0 32px 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 32px;
  font-size: .97rem;
  color: #23304B;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: var(--text-dark);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  opacity: .8;
  margin-bottom: 8px;
  transition: color .12s;
}
.footer-menu a:hover {
  color: var(--secondary);
  text-decoration: underline;
  opacity: 1;
}
.footer-contact p,
.footer-contact img {
  vertical-align: middle;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-brand img {
  width: 54px;
  margin-bottom: 4px;
}

/***** HEADER & NAV  ***************************************************/
header {
  background: #FFF6FA;
  padding: 0;
  box-shadow: 0 2px 18px 0 rgba(187, 210, 240, 0.05);
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  position: relative;
  z-index: 1001;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header img[alt="Lumina Touch"] {
  max-height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 17px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.07rem;
  color: #467087;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 16px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-mint);
  color: var(--primary);
}
.mobile-menu-toggle {
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1102;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.13s;
  box-shadow: 0 2px 16px rgba(80, 220, 205, 0.16);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #47CFA0;
  color: #FAFAFF;
}

/***** MOBILE MENU + SLIDE EFFECT *****/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(120deg, var(--pastel-mint) 60%, var(--pastel-pink) 100%);
  box-shadow: 0 6px 22px 0 rgba(80, 104, 148, 0.12);
  z-index: 2000;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.7,.26,.24,1);
  padding-top: 24px;
  opacity: 0.99;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--primary);
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.17s;
  padding: 4px 10px;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 60px;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  color: var(--primary);
  background: var(--accent);
  padding: 15px 24px;
  border-radius: 20px;
  margin-bottom: 9px;
  box-shadow: var(--shadow);
  transition: background .16s, color .13s, box-shadow .18s;
  min-width: 190px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 2px 19px 0 rgba(80, 185, 155, 0.18);
}

/***** MOBILE FIRST: HIDE DESKTOP NAV, SHOW HAMBURGER ******************/
@media (max-width: 1100px) {
  header .container {
    gap: 8px;
  }
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 910px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 5px 7px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 801px) {
  .mobile-menu {
    display: none !important;
  }
}

/***** RESPONSIVE ********************************************************/
@media (max-width: 768px) {
  h1 {
    font-size: 1.54rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .feature-grid, .product-cards, .testimonial-card, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .section, section {
    padding: 25px 0 10px 0;
    margin-bottom: 40px;
  }
  .footer-menu, .footer-contact, .footer-brand {
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .map-placeholder {
    padding: 18px;
  }
}
@media (max-width: 500px) {
  .feature-grid > div,
  .product-cards > div,
  .testimonial-card > div,
  .testimonial-card blockquote,
  .card,
  .article-list li {
    min-width: 0;
    padding: 16px 9px;
  }
  .btn-primary {
    font-size: 1rem;
    padding: 11px 18px;
  }
  .footer-brand img {
    width: 38px;
  }
}

/***** COOKIE CONSENT BANNER **********************************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96vw;
  max-width: 540px;
  background: linear-gradient(90deg, var(--pastel-mint) 80%, var(--pastel-pink) 100%);
  color: var(--text-dark);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 4px 38px 0 rgba(80, 104, 148, 0.14);
  padding: 25px 20px 22px 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  font-size: 1.07rem;
  opacity: 0.98;
  transition: transform .36s;
  animation: cookie-slidein 0.65s cubic-bezier(.5,1.46,.16,.94);
}
@keyframes cookie-slidein {
  0% { transform: translate(-50%, 150px) scale(0.98); opacity: 0; }
  82% { opacity: .97; }
  100% { transform: translateX(-50%); opacity: 1; }
}
.cookie-banner button {
  margin-top: 6px;
  margin-right: 8px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  padding: 9px 25px;
  margin-bottom: 0;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 3px 16px 0 rgba(98, 185, 138, 0.15);
  transition: background .15s, color .13s, transform .10s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #47CFA0;
  color: var(--primary);
  transform: scale(1.04);
}
.cookie-banner .btn-cookie.reject {
  background: #FFD6E7;
  color: #c64e72;
  box-shadow: 0 2px 12px 0 rgba(255, 214, 231, 0.18);
}
.cookie-banner .btn-cookie.reject:hover, .cookie-banner .btn-cookie.reject:focus {
  background: #f2bace;
  color: #fff;
}
.cookie-banner .btn-cookie.settings {
  background: var(--pastel-blue);
  color: var(--primary);
  box-shadow: 0 1.5px 8px rgba(209, 235, 255, 0.14);
}
.cookie-banner .btn-cookie.settings:hover, .cookie-banner .btn-cookie.settings:focus {
  background: #b9e4ff;
  color: var(--primary);
}

/***** COOKIE MODAL ******************************************************/
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 14px 38px 0 rgba(193, 212, 234, 0.22);
  z-index: 99999;
  min-width: 340px;
  max-width: 94vw;
  max-height: 85vh;
  padding: 28px 25px 22px 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  opacity: 1;
  transition: opacity 0.13s, transform 0.17s;
  animation: fadein .43s cubic-bezier(.5,1.46,.16,.94);
}
@keyframes fadein {
  0% { opacity: 0; transform: translate(-50%, -70%) scale(.95); }
  100% { opacity: 1; transform: translate(-50%, -54%) scale(1); }
}
.cookie-modal .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #23304B;
  margin-bottom: 3px;
}
.cookie-modal .modal-categories {
  margin-top: 5px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.07rem;
}
.cookie-modal input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--secondary);
  margin-right: 8px;
}
.cookie-modal .cookie-category.essential label {
  font-weight: 600;
  color: #23304B;
}
.cookie-modal .cookie-category.essential input[type=checkbox] {
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .btn-cookie {
  padding: 7px 18px;
  font-size: .99rem;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  color: #bdb;
  font-size: 2.1rem;
  position: absolute;
  top: 15px;
  right: 18px;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 50%;
  transition: background .14s, color .14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 520px) {
  .cookie-modal {
    min-width: 88vw;
    padding: 17px 8px 10px 17px;
  }
}

/* Z-INDEX LAYERING ----------------------------------------------------- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 9999;
}

/* MICRO-INTERACTIONS & TRANSITIONS ------------------------------------- */
button, .btn-primary, .btn-cookie {
  transition: background 0.18s, color 0.13s, box-shadow 0.15s, transform 0.13s;
}
section, .card, .feature-grid > div, .article-list li, .testimonial-card > div {
  transition: box-shadow 0.14s, transform 0.13s;
}

/* Hide visually but keep accessible */
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/***** SCROLLBAR BEAUTIFY ***********************************************/
::-webkit-scrollbar {
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-lilac);
  border-radius: 18px;
  border: 2px solid var(--accent);
}
::-webkit-scrollbar-track {
  background: var(--accent);
  border-radius: 18px;
}
