/* Pioneer Returns – Warm Friendly Style – style.css */
/* --- CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F5F3;
  color: #222C3A;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B16F3A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AE4A17;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  color: #B16F3A;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #222C3A;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #B16F3A;
  margin-bottom: 14px;
}
.hero p, h1 + p {
  font-size: 1.18rem;
  margin-bottom: 28px;
  color: #222C3A;
}
p, li, label, input, button {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.75;
}

/* --- Spacing Patterns/Sections --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(177,111,58,0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- Flexbox Layouts and Card Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(177,111,58,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px 24px 28px;
  min-width: 260px;
}

.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;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background: #FDF6F0;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(177,111,58,0.09);
  margin-bottom: 20px;
  color: #222C3A;
}
.testimonial-card p {
  color: #222C3A;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #8B5424;
  font-size: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}

.feature-grid li, .service-list li {
  flex: 1 1 260px;
  background: #FFF6E9;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(214,144,80,0.07);
  padding: 28px 22px 20px 22px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 10px 40px rgba(177,111,58,0.13);
  transform: translateY(-6px) scale(1.025);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(105deg, #FDF2E8 55%, #C9D2D9 100%);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 24px 0 rgba(177,111,58,0.10);
  padding: 56px 0 46px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* --- CTA Button --- */
.cta-btn {
  display: inline-block;
  background: #B16F3A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  border: none;
  border-radius: 22px;
  padding: 14px 36px;
  box-shadow: 0 2px 9px rgba(177,111,58,0.13);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #AE4A17;
  box-shadow: 0 8px 24px rgba(177,111,58,0.19);
  transform: translateY(-2px) scale(1.03);
}

/* --- Header/Main Nav --- */
header {
  background: #fff;
  box-shadow: 0 4px 30px 0 rgba(177,111,58,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 22px 22px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
}
.main-nav {
  display: flex;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #222C3A;
  padding: 8px 12px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: #FAE1D1;
  color: #B16F3A;
}
header img, footer img {
  height: 38px;
  width: auto;
  border-radius: 13px;
}

/* --- Footer --- */
footer {
  background: #fff7f3;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -3px 20px 0 rgba(177,111,58,0.06);
  margin-top: 40px;
  font-size: 0.97rem;
  color: #444;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 26px;
  justify-content: space-between;
  padding: 38px 20px 22px 20px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B16F3A;
  transition: color 0.22s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #AE4A17;
  text-decoration: underline;
}
.footer-contact {
  max-width: 300px;
  color: #554B42;
}
footer p {
  margin-top: 18px;
  font-size: 0.94rem;
  color: #988471;
}

/* --- Blog & Misc Lists --- */
.blog-beitragsliste ul, .blog-kategorien ul,
.trend-highlights ul, .outfit-ideen ul, .event-bonus ul {
  list-style: disc inside;
  padding-left: 16px;
  margin-bottom: 12px;
}

/* --- Cards, Blocks & Misc. --- */
.confirmation-message, .event-bonus {
  background: #FDF6F0;
  padding: 30px 28px 20px 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-info-block img {
  width: 32px;
  height: 32px;
}

.price-summary {
  margin-top: 24px;
  font-weight: 600;
  color: #AE4A17;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- Unique Points on About --- */
.unique-points-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.unique-points-grid ul {
  background: #FDF6F0;
  padding: 22px 22px 14px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(177,111,58,0.06);
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  background: #FFF6E9;
  color: #B16F3A;
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  padding: 4px 22px 4px 14px;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 210;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(177,111,58,0.11);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FAE1D1;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFF6E9;
  transform: translateX(-105%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(0.8,0.2,0.3,1), opacity 0.18s;
  z-index: 300;
  box-shadow: 8px 0 22px 0 rgba(177,111,58,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 20px 0 0;
  font-size: 2.2rem;
  background: #FAE1D1;
  color: #B16F3A;
  border: none;
  border-radius: 12px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.19s;
  z-index: 312;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD7BA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 44px 38px 24px 38px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #222C3A;
  background: none;
  border-radius: 10px;
  padding: 12px 10px;
  width: 100%;
  transition: background 0.23s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF4E2;
  color: #B16F3A;
}

/* Only show hamburger on mobile, hide main-nav */
@media (max-width: 970px) {
  .main-nav,
  header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 971px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF6E9;
  color: #222C3A;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  box-shadow: 0 -6px 24px 0 rgba(177,111,58,0.07);
  padding: 24px 16px;
  z-index: 400;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookieBannerFadeIn 0.6s ease;
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0;
  color: #7a4d28;
}
.cookie-banner button {
  background: #B16F3A;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 24px;
  margin-left: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(177,111,58,0.09);
  transition: background 0.16s, transform 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #AE4A17;
  transform: scale(1.06);
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #B16F3A;
  border: 2px solid #B16F3A;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FAE1D1;
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(34,44,58,0.19);
  z-index: 410;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieBackdropFade 0.3s;
}
@keyframes cookieBackdropFade {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 30px 0 rgba(177,111,58,0.13);
  min-width: 320px;
  max-width: 95vw;
  padding: 34px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: cookieModalUp 0.35s;
  position: relative;
}
@keyframes cookieModalUp {
  from { opacity: 0; transform: translateY(70px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  margin-bottom: 0.5em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B16F3A;
}
.cookie-category {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-toggle-label {
  font-size: 1rem;
  color: #222C3A;
  margin-right: 10px;
}
.cookie-modal input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #B16F3A;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  color: #AE4A17;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 12px;
  padding: 2px 8px;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #FDF6F0;
}

/* --- Utility: Remove Scroll When Menu/Modal Open --- */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 970px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .section {
    margin-bottom: 32px;
    padding: 28px 8px;
    border-radius: 16px;
  }
  .hero {
    padding: 38px 0 29px 0;
    margin-bottom: 28px;
    border-radius: 0 0 16px 16px;
  }
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1rem; }
  .content-wrapper {
    gap: 10px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li {
    max-width: 100%;
    min-width: unset;
    padding: 18px 13px 14px 13px;
    border-radius: 12px;
  }
  .testimonial-card,
  .confirmation-message,
  .event-bonus {
    padding: 18px 12px 11px 12px;
    border-radius: 12px;
  }
  .card {
    padding: 21px 14px 15px 14px;
    border-radius: 12px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .card-container, .content-grid, .unique-points-grid { flex-direction: column; gap: 18px; }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer .container {
    padding: 18px 10px 9px 10px;
    border-radius: 16px 16px 0 0;
  }
  .footer-nav, .footer-contact { max-width: 100%; }
  .cookie-modal { min-width: 90vw; padding: 22px 10px 13px 10px; border-radius: 14px; }
}

@media (max-width: 620px) {
  h1, .hero h1 { font-size: 1.4rem; }
  h2 { font-size: 1.05rem; }
  .hero { padding: 23px 0 12px 0; }
  .feature-grid li, .service-list li, .testimonial-card, .card { font-size: 0.97rem; }
  .hero .cta-btn { font-size: 1rem; }
  .mobile-nav a { font-size: 1.05rem; }
  .cookie-banner { font-size: 0.93rem; padding: 14px 4px; border-radius: 9px 9px 0 0; gap: 12px; }
}

/* --- Misc: Form Styles (If Present) --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #C9D2D9;
  border-radius: 12px;
  padding: 10px 16px;
  outline: none;
  transition: border 0.13s;
  font-size: 1rem;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border-color: #B16F3A;
}

button:focus {
  outline: 2px solid #B16F3A;
  outline-offset: 1px;
}

/* --- Micro-animations for cards --- */
.card, .testimonial-card, .feature-grid li, .service-list li {
  transition: box-shadow 0.23s cubic-bezier(0.7,0.15,0.2,1), transform 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(177,111,58,0.14);
  transform: scale(1.02) translateY(-3px);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FFD7BA;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #FDF6F0;
  border-radius: 12px;
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0 !important;
  }
}

/* End of style.css for Pioneer Returns */
