/* Leselicht Gradient Modern CSS (Flexbox only, Responsive, Cookie Banner, Mobile Nav) */

/* RESET & 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;
  scroll-behavior: smooth;
  background: #F8F7F3;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2A3B4C;
  background: linear-gradient(135deg, #F4E9D8 0%, #FFFFFF 100%);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: 6px;
}

ul, ol {
  padding-left: 20px;
}
a {
  color: #A77C3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9C6000;
  text-decoration: underline;
}

/* CONTAINERS AND FLEX LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* MANDATORY SPACING/ALIGNMENT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 8px rgba(42, 59, 76, 0.06);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(167, 124, 59, 0.14);
  transform: translateY(-3px) scale(1.01);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(42,59,76,.12);
  min-width: 250px;
  max-width: 360px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(167,124,59,0.13);
  transform: translateY(-5px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features, .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.features-grid .feature {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(42,59,76,0.065);
  padding: 28px 20px;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.28s, transform 0.25s;
}
.features-grid .feature:hover {
  box-shadow: 0 5px 20px rgba(167,124,59,0.11);
  transform: translateY(-4px) scale(1.014);
}
.features-grid .feature img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 10px;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, .hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2A3B4C;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #2A3B4C;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.16;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #2A3B4C;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-top: 0;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
}
.secondary-link {
  color: #A77C3B;
  font-weight: 500;
  border-bottom: 1px solid #E1CCA9;
  font-size: 1.05rem;
  margin-top: 12px;
  transition: color 0.21s, border 0.22s;
}
.secondary-link:hover {
  color: #9C6000;
  border-bottom: 2px solid #9C6000;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 0.85em 2.2em;
  background: linear-gradient(90deg, #A77C3B 0%, #2A3B4C 100%);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(167,124,59,0.09);
  cursor: pointer;
  margin-top: 10px;
  margin-right: 14px;
  transition: background 0.2s, box-shadow 0.21s, transform 0.18s;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,#9C6000 0%,#2A3B4C 100%);
  box-shadow: 0 5px 16px 0 rgba(42,59,76,.19);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.75em 2em;
  background: #fff;
  color: #A77C3B;
  border: 1.9px solid #A77C3B;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.14s, color 0.12s;
  cursor: pointer;
  margin-right: 12px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #A77C3B;
  color: #fff;
  border: 1.9px solid #A77C3B;
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #F4E9D8 65%, #E1CCA9 100%);
  box-shadow: 0 6px 32px 0 rgba(42,59,76,0.03);
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
  position: relative;
}
.logo-link img {
  max-height: 44px;
  height: 44px;
  min-width: 90px;
  margin-right: 18px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-right: 18px;
}
nav.main-nav a {
  color: #2A3B4C;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 8px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #2A3B4C;
  color: #fff;
}

/* MOBILE NAVIGATION (BURGER MENU) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2A3B4C;
  cursor: pointer;
  margin-left: 12px;
  z-index: 54;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg,#F4E9D8 70%,#2A3B4C 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 24px 10px 24px;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(0.61, 0.01, 0.44, 0.98);
  z-index: 1001;
  box-shadow: -2px 1px 38px 0 rgba(42,59,76,.08);
  overflow-y: auto;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #2A3B4C;
  font-size: 2.05rem;
  align-self: flex-end;
  margin-bottom: 14px;
  cursor: pointer;
  z-index: 1005;
  border-radius: 50%;
  padding: 8px 12px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E1CCA9;
  color: #9C6000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #2A3B4C;
  background: #fff;
  border-radius: 11px;
  padding: 14px 12px;
  font-size: 1.22rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 9px rgba(167,124,59,0.07);
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #2A3B4C;
  color: #fff;
}

@media (max-width: 1100px) {
  header .container {
    gap: 8px;
  }
  .features-grid .feature {
    flex: 1 1 220px;
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .features-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .section {
    padding: 24px 7px 28px 7px;
    margin-bottom: 34px;
  }
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
    min-width: 100px;
    padding: 0.68em 1.45em;
  }
  .features-grid, .features {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .container {
    padding: 0 5px;
  }
  .btn-primary,.btn-secondary {
    padding: 0.6em 1em;
  }
  .features-grid .feature {
    padding: 16px 8px;
    font-size: 0.95rem;
  }
}

/* HERO SECTION */
.hero {
  min-height: 400px;
  background: linear-gradient(105deg, #F4E9D8 60%, #2A3B4C 160%);
  padding: 56px 0 34px 0;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
  margin: 0 auto;
  max-width: 680px;
}
.hero h1 {
  color: #2A3B4C;
  background: linear-gradient(90deg, #A77C3B 0%, #2A3B4C 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero p {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.hero .btn-primary {
  margin: 12px auto 0 auto;
}

/* CTA SECTION */
.cta-section {
  margin: 42px 0 0 0;
  padding: 32px 0 40px 0;
  background: linear-gradient(90deg, #A77C3B 12%, #F4E9D8 90%);
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -2px 42px rgba(167,124,59,.09);
}
.cta-section h2 {
  color: #2A3B4C;
}
.cta-section .btn-primary {
  margin-bottom: 10px;
}

/* TESTIMONIALS */
.testimonials {
  margin: 30px 0 0 0;
  padding: 0 0 32px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card p {
  color: #2A3B4C;
  font-size: 1.06rem;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #69573B;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: #A77C3B;
}

/* ABOUT/LIST & FEATURES */
.text-section ul,
.text-section ol {
  margin: 0 0 20px 0;
  padding-left: 27px;
  font-size: 1.04rem;
  color: #2A3B4C;
}
.text-section li {
  margin-bottom: 11px;
}

.about-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 28px rgba(167,124,59,.07);
  margin-bottom: 38px;
}

/* LEGAL, THANK YOU, CONTACT, ETC. */
.legal {
  background: #fff;
  border-radius: 20px;
  padding: 40px 18px;
  margin-top: 30px;
  box-shadow: 0 2px 24px 0 rgba(42,59,76,.05);
}
.thankyou .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.contact-info .text-section a {
  color: #A77C3B;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #2A3B4C;
  color: #fff;
  padding: 32px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #F4E9D8;
  font-size: 1.02rem;
  transition: color 0.14s;
  opacity: 0.93;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A77C3B;
  opacity: 1;
}
footer span {
  font-size: 0.98rem;
}

@media (max-width: 650px) {
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #2A3B4C 60%, #A77C3B 100%);
  color: #fff;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 1050;
  box-shadow: 0 -2px 20px 0 rgba(42,59,76,.18);
  transition: transform 0.28s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1.05rem;
  flex: 1 1 auto;
  max-width: 560px;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 17px;
  font-size: 1.01rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-right: 3px;
  transition: background 0.15s, color 0.13s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #F4E9D8;
  color: #2A3B4C;
  box-shadow: 0 1px 8px 0 rgba(42,59,76,0.08);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A77C3B;
  color: #fff;
}
.cookie-btn.reject {
  background: #ffffff;
  color: #A77C3B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #2A3B4C;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.3px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #A77C3B;
  background: #fff;
  border-color: #A77C3B;
}

@media (max-width: 800px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 7px 15px 10px;
  }
  .cookie-banner__text {
    font-size: 0.99rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,59,76,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1111;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.26s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  color: #222;
  border-radius: 20px;
  max-width: 430px;
  width: 90vw;
  padding: 34px 20px 26px 20px;
  box-shadow: 0 8px 44px 0 rgba(167,124,59,0.11);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.cookie-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin: 0;
  color: #2A3B4C;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2A3B4C;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 50%;
  padding: 6px 11px;
  transition: background 0.17s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  background: #E1CCA9;
  color: #9C6000;
}
.cookie-modal__section {
  margin-top: 8px;
  margin-bottom: 8px;
}
.cookie-modal__section label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #2A3B4C;
}
.cookie-switch {
  width: 48px;
  height: 24px;
  border-radius: 16px;
  background: #E1CCA9;
  position: relative;
  transition: background 0.2s;
  margin-left: 8px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch__slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #A77C3B;
  border-radius: 50%;
  transition: left 0.2s, background 0.2s;
}
.cookie-switch input:checked + .cookie-switch__slider {
  left: 26px;
  background: #2A3B4C;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}

/* MICRO-INTERACTIONS & TRANSITIONS */
button, .btn-primary, .btn-secondary, a, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal__close {
  outline: none;
  transition: background 0.19s, color 0.13s, box-shadow 0.18s, transform 0.16s;
}

::-webkit-input-placeholder { color: #A77C3B; }
::-moz-placeholder { color: #A77C3B; }
:-ms-input-placeholder { color: #A77C3B; }
::placeholder { color: #A77C3B; }

/* ACCESSIBILITY: FOCUS STATES */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus, .cookie-btn:focus {
  outline: 2.5px solid #A77C3B;
  outline-offset: 1.5px;
}

/* Z-INDEX LAYERS */
header {
  z-index: 100;
}
.mobile-menu {
  z-index: 1001;
}
.cookie-banner {
  z-index: 1050;
}
.cookie-modal {
  z-index: 1111;
}

/* SCROLLBARS (modern look) */
body::-webkit-scrollbar {
  width: 10px;
  background: #F4E9D8;
}
body::-webkit-scrollbar-thumb {
  background: #A77C3B;
  border-radius: 10px;
}
body::-webkit-scrollbar-track {
  background: #F4E9D8;
  border-radius: 10px;
}

/* END OF CSS */
