/* ================================================================
   Zeitgeist Schätze: Vibrant Energetic Flexbox 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;
  color: #353535;
  background: #FAF8F3;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #353535;
  font-weight: 700;
}
h1 {font-size: 2.75rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 16px;}
h3 {font-size: 1.35rem; margin-bottom: 12px;}
.subheadline {font-size: 1.25rem; margin-bottom: 20px; color: #845800; letter-spacing: 0.5px; font-weight: 500;}

p, ul, ol, li, blockquote {
  font-size: 1rem;
  color: #43372B;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {margin-bottom: 8px;}

strong {color: #A4815A; font-weight: 700;}

blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: #EFE6DA;
  color: #353535;
  padding: 18px 28px;
  border-left: 5px solid #A4815A;
  margin: 0 0 12px 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}


/* === CONTAINER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}


/* === SPACING & FLEX LAYOUTS (MANDATORY PATTERNS) === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature_grid, .service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature_grid>div, .service_list>div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(164,129,90,0.13), 0 1.5px 6px rgba(166,166,166,0.07);
  padding: 26px 20px;
  flex: 1 1 250px;
  min-width: 230px;
  margin-bottom: 0;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.feature_grid>div:hover,
.service_list>div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 28px rgba(164,129,90,0.17), 0 4px 16px rgba(166,166,166,0.16);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(53,53,53,0.09), 0 0.5px 1.5px rgba(164,129,90,0.07);
  flex-direction: column;
  max-width: 570px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(53,53,53,0.13), 0 1.5px 6px rgba(164,129,90,0.12);
  transform: scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.contact-details {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}


/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(90deg, #FFCA4A 0%, #A4815A 100%);
  box-shadow: 0 12px 28px rgba(164,129,90,0.11);
  padding: 0;
  position:sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.main-nav a {
  color: #353535;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.07rem;
  transition: color .16s;
  padding: 4px 8px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A4815A;
  background: #EFE6DA;
}
.button-primary {
  background: #FF3D77;
  color: #fff !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  border: none;
  outline: none;
  border-radius: 14px;
  padding: 13px 32px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2.5px 12px rgba(255,61,119,0.10);
  position: relative;
  transition: transform .13s, background .18s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.button-primary:hover, .button-primary:focus {
  background: #6738FF;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 5px 16px rgba(103,56,255,0.13);
}
.button-secondary {
  background: #2AF2B4;
  color: #353535;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border: none;
  border-radius: 14px;
  padding: 11px 28px;
  margin-top: 4px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(42,242,180,0.08);
  transition: background .16s, color .16s, transform .13s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  background: #FFCA4A;
  color: #353535;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255,202,74,0.13);
}
.mobile-menu-toggle {
  display: none;
}


/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #FF3D77;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 2rem;
  padding: 6px 18px;
  margin-left: 8px;
  cursor: pointer;
  transition: background .17s, box-shadow .12s;
  z-index: 31;
}
.mobile-menu-toggle:active {
  background: #6738FF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #353535;
  color: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(0.68, -.6, 0.32, 1.6);
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #FF3D77;
  border: none;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 22px 28px 0 0;
  cursor: pointer;
  transition: color .17s;
  z-index: 1002;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #2AF2B4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9px;
  transition: background .12s, color .12s;
  min-width: 180px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFCA4A;
  color: #353535;
}


/* === FOOTER === */
footer {
  background: #A4815A;
  color: #fff;
  padding: 48px 0 26px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
footer img {
  height: 44px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.86;
  font-weight: 500;
  transition: color .14s, text-decoration .13s;
}
.footer-nav a:hover {
  color: #FF3D77;
  text-decoration: underline;
}
footer p {
  font-size: 1rem;
  opacity: 0.88;
  margin-top: 6px;
}


/* === CARD DESIGN & MISCELLANEOUS === */
.card,
.feature_grid>div,
.service_list>div,
.testimonial-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(164,129,90,0.10), 0 2px 10px rgba(255,61,119,0.06);
  margin-bottom: 20px;
  position: relative;
}
.card img { border-radius: 12px 12px 0 0; }


/* === HOVER INTERACTIONS & MICRO MOTION === */
a, .button-primary, .button-secondary, button {
  transition: background .13s, color .13s, box-shadow .14s, border .13s, transform .11s;
}
a:focus, button:focus {
  outline: 2px solid #FFCA4A;
  outline-offset: 2px;
}

/* Micro-interaction for cards */
.feature_grid>div:active, .service_list>div:active, .testimonial-card:active {
  transform: scale(.98);
  box-shadow: 0 1.5px 6px rgba(53,53,53,0.08);
}


/* === SECTION/TYPES === */
section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(164,129,90,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:nth-of-type(even) {
  background: #EFE6DA;
  box-shadow: 0 0px 0px rgba(0,0,0,0);
}


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #353535;
  color: #fff;
  box-shadow: 0 -2px 16px 0 rgba(53,53,53,0.14);
  z-index: 1003;
  padding: 24px 16px 20px 20px;
  animation: slideUpBanner .4s cubic-bezier(.65,-0.2,.6,1.45);
  font-size: 1rem;
}
@keyframes slideUpBanner {
  from {transform: translateY(100%);opacity:0;}
  to {transform: translateY(0);opacity:1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .button-primary,
.cookie-banner .cookie-btn-accept {
  background: #2AF2B4;
  color: #353535;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 8px;
}
.cookie-banner .cookie-btn-settings {
  background: #FF3D77;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
}
.cookie-banner .cookie-btn-reject {
  background: #fff;
  color: #353535;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 600;
  border: 2px solid #A4815A;
}
.cookie-banner .cookie-btn-accept:hover {
  background: #FFCA4A;
  color: #353535;
}
.cookie-banner .cookie-btn-settings:hover {
  background: #6738FF;
}
.cookie-banner .cookie-btn-reject:hover {
  background: #A4815A;
  color: #fff;
  border-color: #353535;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1004;
  top: 0; left: 0; right:0; bottom: 0;
  background: rgba(53,53,53,0.60);
  display: flex; justify-content: center; align-items: center;
  animation: fadeInModal .34s;
}
@keyframes fadeInModal {
  from {opacity: 0;}
  to   {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #353535;
  border-radius: 22px;
  max-width: 430px;
  width: 94%;
  box-shadow: 0 8px 32px rgba(164,129,90,0.16);
  padding: 34px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
  animation: popUpModal .32s cubic-bezier(.71,-0.18,.6,1.36);
}
@keyframes popUpModal {
  0% {transform: scale(.7); opacity:0;}
  100% {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #A4815A;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #FF3D77;
  width: 1.15rem;
  height: 1.15rem;
  margin-right: 0.5em;
}
.cookie-modal-ctas {
  margin-top: 20px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Essential cookies always enabled style */
.cookie-modal label[disabled],
.cookie-modal label[data-essential="true"]{
  opacity: .54;
  pointer-events: none;
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 1080px) {
  .container {max-width: 900px;}
  .feature_grid, .service_list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {gap: 18px;}
  .feature_grid>div, .service_list>div {
    min-width: 175px;
    flex: 1 1 160px;
    padding: 18px 9px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container { flex-direction: row; gap: 9px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 32;
  }
  .button-primary { margin-left: 0; }
  section {
    padding: 24px 5px;
    border-radius: 16px;
  }
  .feature_grid, .service_list, .card-container, .content-grid, .contact-details {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container {
    padding: 0 4px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem;}
  .button-primary, .button-secondary { font-size: 1rem; }
  .logo img, footer img { height: 36px; }
  .footer-nav {
    gap: 13px;
  }
}

/* Extra mobile-friendly for banner & modal */
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 7px 17px 9px;
    font-size: 0.95rem;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 7px 17px 6px;
  }
}

/* === UTILITIES === */
.text-section a, .content-wrapper a {
  color: #FF3D77;
  text-decoration: underline;
  transition: color .13s;
}
.text-section a.button-primary, .content-wrapper a.button-primary,
.text-section a.button-secondary, .content-wrapper a.button-secondary {
  text-decoration: none;
}
.text-section a:hover, .content-wrapper a:hover {
  color: #6738FF;
}

/* END OF FILE */