/*-----------------------------------
CSS RESET & BASE NORMALIZATION
-----------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1rem;
  color: #232628;
  background: #FDF7F2;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1F2937;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
p, ul, ol {
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 1.2em;
}
a {
  color: #30859C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1F2937;
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
}
strong {
  font-weight: 700;
  color: #1F2937;
}

/*-----------------------------------
SPACING & CONTAINERS
-----------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFCF6;
  border-radius: 26px;
  box-shadow: 0 2px 12px 0 #eee2cf60;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .section { padding: 32px 6px; }
  .container { padding: 0 10px; }
  .content-wrapper { gap: 18px; }
}

/*-----------------------------------
HEADER & NAVIGATION
-----------------------------------*/
header {
  width: 100%;
  background: #fff8f3;
  box-shadow: 0 2px 16px 0 #e2d7c840;
  border-bottom: 1px solid #f4e6d6;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 18px;
}
.main-navigation {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #30859C;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 8px 16px;
  transition: background 0.14s, color 0.14s;
}
.main-navigation a:hover,
.main-navigation a:focus {
  background: #FAE3D1;
  color: #1F2937;
}
.cta-primary {
  background: #FF9642;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 11px 28px;
  box-shadow: 0 2px 8px -2px #fae2cf60;
  transition: background 0.16s, transform 0.18s, box-shadow 0.23s;
  font-size: 1.06rem;
  cursor: pointer;
  margin-left: 12px;
  outline: none;
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFB977;
  color: #fff;
  box-shadow: 0 4px 18px 0 #F0933644;
  transform: translateY(-2px) scale(1.025);
}
.cta-secondary {
  background: #fff;
  border: 2px solid #FF9642;
  color: #FF9642;
  border-radius: 22px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, border-color 0.14s;
  font-size: 1rem;
  box-shadow: 0 2px 8px -2px #fae2cf33;
  outline: none;
  display: inline-block;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #FF9642;
  color: #fff;
  border-color: #FF9642;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #FF9642;
  background: none;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  border-radius: 12px;
  padding: 4px 12px;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #fde6cd;
}

@media (max-width: 1024px) {
  .main-navigation {
    gap: 14px;
  }
  header .container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-navigation { gap: 8px; }
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  .cta-primary {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/*-----------------------------------
MOBILE BURGER MENU
-----------------------------------*/
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff8f3ee;
  transform: translateX(-102vw);
  transition: transform 0.34s cubic-bezier(.67,.04,.23,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: 0 4px 38px 0 #F1C28433;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #FF9642;
  margin: 24px 28px 0 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 5px 12px;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fde6cd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 44px 0 0 0;
  align-items: flex-start;
  padding: 0 32px 32px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1F2937;
  font-size: 1.18rem;
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 600;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FAE3D1;
  color: #FF9642;
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
}

/*-----------------------------------
HERO SECTIONS
-----------------------------------*/
.hero {
  background: #FFFAF5;
  border-radius: 34px;
  margin-bottom: 48px;
  box-shadow: 0 4px 26px 0 #fde6cd40;
  padding: 60px 0 42px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #1F2937;
  margin-bottom: 10px;
}
.hero p {
  color: #472C19;
  font-size: 1.18rem;
  margin-bottom: 16px;
  max-width: 540px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 18px 0;
    border-radius: 18px;
  }
  .hero h1 { font-size: 1.62rem; }
}

/*-----------------------------------
FEATURES & CARDS
-----------------------------------*/
.features {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFCF6;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 #f7ab5c14;
  padding: 32px 24px 24px 24px;
  max-width: 340px;
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 4px;
  background: #fff;
  box-shadow: 0 1px 6px 0 #ffe3cc49;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 4px 24px 0 #f7b36a55;
  transform: translateY(-3px) scale(1.015);
}
.feature-item h3 {
  font-size: 1.14rem;
  color: #FF9642;
}
.feature-item p {
  color: #432a10;
  font-size: 1rem;
}

/* USPs on 'Über uns' */
.usp-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  background: #fff5ec;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 #ffe3cc37;
  padding: 18px 24px;
}
.usp-icon img {
  width: 38px;
  height: 38px;
}
.usp-desc {
  font-size: 1.06rem;
  color: #39311d;
}
@media (max-width: 600px) {
  .feature-grid, .tips-grid { flex-direction: column; }
  .feature-item, .tip-category, .blog-preview {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* Tips Grid (Outfit Tipps) */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 23px;
}
.tip-category {
  background: #fff8f3;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 #fae0b640;
  padding: 26px 18px 18px 18px;
  flex: 1 1 240px;
}
.tip-category h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #30859C;
  font-size: 1.18rem;
}
.tip-category ul {
  margin-top: 9px;
  margin-bottom: 0;
  color: #48351b;
}

/* Service List (Leistungen) */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 24px;
}
.service-list li {
  background: #FFFCF6;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 #ffd8a93b;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list h3 {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 1.18rem;
}
.service-price {
  color: #30859C;
  font-weight: 700;
  font-size: 1rem;
  background: #fce1c8;
  border-radius: 9px;
  padding: 4px 12px;
}
.service-list a.cta-secondary {
  margin-top: 9px;
  width: fit-content;
}

/* Advantage List */
.advantage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 23px;
  justify-content: flex-start;
}
.advantage-item {
  background: #FFF8F3;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 #fae0b640;
  padding: 22px 14px 18px 14px;
  flex: 1 1 220px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.advantage-item img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

/* Blog Previews */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.blog-preview {
  background: #fff8f3;
  border-radius: 20px;
  box-shadow: 0 1px 8px 0 #fae0b640;
  padding: 30px 18px 22px 18px;
  flex: 1 1 300px;
  max-width: 340px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.blog-preview:hover,
.blog-preview:focus-within {
  box-shadow: 0 4px 18px 0 #f7b36a55;
  transform: translateY(-3px) scale(1.013);
}
.blog-preview h3 {
  color: #1F2937;
  font-size: 1.12rem;
}
.blog-tag {
  background: #FF9642;
  color: #fff;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 2.5px 14px;
  display: inline-block;
  margin-bottom: 3px;
}
.blog-preview a {
  color: #30859C;
  margin-top: 7px;
  font-weight: 600;
  font-size: 1.015rem;
}

/* Season Section cards (Trends) */
.season-section {
  background: #FFFCF6;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 #f7ab5c26;
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.season-section ul {
  margin-top: 7px;
  color: #48351b;
}
.season-section a {
  margin-top: 10px;
  color: #FF9642;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
}
.season-section a:hover{
  color: #30859C;
}

/*-----------------------------------
TESTIMONIALS
-----------------------------------*/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 #ffd8a97c;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
  color: #1F2937;
}
.testimonial-card p {
  margin: 0;
  font-size: 1.12rem;
  color: #1F2937;
  flex: 1;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #FF9642;
  background: #FFF8F3;
  border-radius: 6px;
  padding: 4px 11px;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 #ffd8a98a;
  transform: translateY(-2px) scale(1.012);
}

/*-----------------------------------
ABOUT (INFORMATION SECTIONS)
-----------------------------------*/
.about {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.team-intro h3 {
  margin-bottom: 8px;
  color: #30859C;
  font-size: 1.14rem;
}

/*-----------------------------------
CONTACT
-----------------------------------*/
.contact .content-wrapper a.cta-primary {
  margin-top: 16px;
}
.contact .content-wrapper p > a {
  color: #30859C;
  font-weight: 600;
  text-decoration: underline;
}
.contact .content-wrapper p > a:hover { color: #FF9642; }

/*-----------------------------------
FOOTER
-----------------------------------*/
footer {
  background: #1F2937;
  color: #fff;
  padding: 36px 0 20px 0;
  width: 100%;
  box-shadow: 0 -2px 18px 0 #ecd39e2b;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 46px;
  border-radius: 12px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-navigation a {
  color: #FF9642;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
  border-radius: 10px;
  padding: 4px 0;
}
.footer-navigation a:hover {
  color: #FFB977;
}
.footer-contact {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #FAE3D1;
  font-weight: 600;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-brand, .footer-navigation, .footer-contact {
    margin-bottom: 14px;
  }
}

/*-----------------------------------
CONTENT LAYOUTS & FLEXBOX UTILS
-----------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 #fae0b640;
  padding: 28px 18px;
  flex: 1 1 230px;
}
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

/*-----------------------------------
FORMS (Contact Form, etc.)
-----------------------------------*/
input, textarea, select {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  padding: 10px 12px;
  border-radius: 11px;
  border: 1.5px solid #FF9642;
  background: #fff;
  color: #1F2937;
  font-size: 1rem;
  transition: border 0.13s, box-shadow 0.17s;
  margin-bottom: 16px;
  outline: none;
  box-shadow: 0 1px 3px 0 #fde8bc36;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #FF9642;
  box-shadow: 0 3px 13px 0 #ffd8a974;
}
label {
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 7px;
  color: #30859C;
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
}

/*-----------------------------------
COOKIE CONSENT BANNER & MODAL
-----------------------------------*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FF9642;
  color: #fff;
  box-shadow: 0 -3px 24px 0 #f7ab5c42;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 900;
  transition: transform 0.23s;
  font-size: 1.07rem;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.cookie-buttons button {
  border: none;
  border-radius: 18px;
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.13s, color 0.13s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 #fae0b630;
  cursor: pointer;
}
.cookie-accept {
  background: #fff;
  color: #FF9642;
}
.cookie-accept:hover { background: #FAE3D1; color: #1F2937;}
.cookie-reject {
  background: #fff8f3;
  color: #FF9642;
  border: 1.5px solid #FF9642;
}
.cookie-reject:hover { background: #FFB977; color: #fff; }
.cookie-settings {
  background: #30859C;
  color: #fff;
}
.cookie-settings:hover {
  background: #1F2937; color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1f2937cc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal {
  background: #fff;
  color: #1F2937;
  border-radius: 22px;
  max-width: 92vw;
  width: 420px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 4px 28px 0 #f7ab5c83;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: cookie-modal-in 0.35s cubic-bezier(.62,.02,.24,.97);
}
@keyframes cookie-modal-in {
  from { transform: scale(0.88) translateY(24px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  color: #FF9642;
  font-size: 1.35rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 3px 10px;
  transition: background 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #fde6cd;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #30859C;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.cookie-category label {
  margin-bottom: 0;
  font-size: 1rem;
  color: #1F2937;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FF9642;
  width: 20px;
  height: 20px;
}
.cookie-essential {
  font-size: 1.02rem;
  color: #30859C;
  font-weight: 700;
}

@media (max-width: 538px) {
  .cookie-modal {
    width: 98vw;
    padding: 24px 6px 20px 8px;
  }
}

/*-----------------------------------
TYPOGRAPHY/UTILS & MICRO-INTERACTIONS
-----------------------------------*/
::-webkit-input-placeholder { color: #9d784d; opacity: 1; }
::-moz-placeholder { color: #9d784d; opacity: 1; }
:-ms-input-placeholder { color: #9d784d; opacity: 1; }
::placeholder { color: #9d784d; opacity: 1; }

hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #ffe3cc;
}

/* Subtle fade-in animation to all sections */
.section, .hero, .testimonial-card, .feature-item, .advantage-item, .tip-category, .season-section {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-in-up 0.66s cubic-bezier(.57,.17,.21,.98) 0.05s forwards;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/*-----------------------------------
RESPONSIVE BREAKPOINTS
-----------------------------------*/
@media (max-width: 1024px) {
  .features .feature-grid,
  .advantage-list,
  .tips-grid,
  .blog-list,
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-item, .advantage-item, .tip-category, .blog-preview, .card, .season-section {
    max-width: 100%;
    min-width: 120px;
  }
  .features .feature-grid, .advantage-list, .tips-grid, .blog-list, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .hero { border-radius: 10px; }
  .footer-brand img {
    height: 36px;
  }
  .footer-navigation a {
    font-size: 0.98rem;
    padding: 3px 0;
  }
  h1 { font-size: 1.29rem; }
  h2 { font-size: 1.07rem; }
  h3 { font-size: 1rem; }
}

/*-----------------------------------
PRINT OPTIMIZATION
-----------------------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container, .section {
    padding: 0;
    margin: 0;
  }
}

/*-----------------------------------
END CSS
-----------------------------------*/
