/* ================== CSS RESET & NORMALIZATION ================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #f6f8fa;
  color: #2C3531;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
a {
  color: #116466;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #0e423f;
  text-decoration: underline;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ================== TYPOGRAPHY ================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2C3531;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  h1 {
    font-size: 2.8rem;
  }
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444c47;
  line-height: 1.4;
  margin-bottom: 18px;
}
p, ul, ol, table {
  margin-bottom: 18px;
}
strong {
  color: #116466;
  font-weight: 700;
}
.price {
  background: #EFF5F7;
  color: #2C3531;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 500;
  padding: 2px 12px;
  margin-left: 7px;
  display: inline-block;
}

/* ================== CONTAINERS & LAYOUT ================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(44,53,49,0.04);
}
@media (max-width: 650px) {
  .section {
    padding: 22px 7px;
    margin-bottom: 32px;
    border-radius: 0;
  }
}

/* ================== HEADER & NAV ================== */
header {
  background: #2C3531;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(44,53,49,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
}
nav a img {
  height: 44px;
  margin-right: 20px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  align-items: center;
  margin-right: 24px;
}
nav ul li a {
  color: #f6f8fa;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
  letter-spacing: 0.03em;
}
nav ul li a:hover,
nav ul li a.active {
  color: #FFCB9A;
}
nav .btn-primary {
  margin-left: 16px;
}

/* ================== HERO ================== */
.hero {
  background: linear-gradient(120deg, #F6F8FA 72%, #eaf5f5 100%);
  padding: 40px 0 0 0;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
.hero .btn-primary {
  margin-top: 18px;
}

/* ================== BUTTONS ================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  background: #116466;
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 12px 0 rgba(44,53,49,0.06);
  cursor: pointer;
  margin: 0 8px 10px 0;
  outline: none;
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2C3531;
  color: #FFCB9A;
}
.btn-secondary {
  background: #fff;
  color: #2C3531;
  border: 2px solid #116466;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #116466;
  color: #fff;
  border: 2px solid #116466;
}

/* ================== MOBILE BURGER MENU ================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 201;
  width: 46px;
  height: 46px;
  background: #116466;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: none;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #FFCB9A;
  color: #2C3531;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2C3531;
  color: #fff;
  z-index: 222;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s;
  box-shadow: 0 0 0 0 transparent;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 34px 0 rgba(44,53,49,0.18);
}
.mobile-menu-close {
  margin: 24px 22px 8px auto;
  background: #116466;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus {
  background: #FFCB9A;
  color: #2C3531;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin: 0 0 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 8px 10px 0;
  transition: color 0.16s, background 0.16s;
  border-radius: 6px;
  min-width: 120px;
  min-height: 40px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:active, .mobile-nav a:focus {
  color: #FFCB9A;
  background: rgba(17,100,102,0.16);
}
@media (max-width: 1000px) {
  header nav > ul,
  header nav > .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* ================== FOOTER ================== */
footer {
  background: #2C3531;
  color: #fff;
  font-size: 0.98em;
  margin-top: 60px;
  padding: 36px 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  display: flex;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #f6f8fa;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 1.01em;
}
.footer-nav a:hover, .legal-links a:hover {
  color: #FFCB9A;
  background: rgba(255,203,154,0.08);
}
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.legal-links a {
  color: #b2c8c8;
  font-size: 0.95em;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.social-media img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
  transition: filter 0.22s;
  filter: grayscale(70%);
}
.social-media img:hover {
  filter: none;
  background: #FFCB9A;
}
footer p {
  color: #e7ecee;
  margin-bottom: 0;
}

/* ================== FEATURE GRIDS / CARDS / FLEX-LAYOUTS ================== */
/* Feature Grid Example: .feature_grid, Hobbybereiche: .category-grid, Service Cards, etc */
.feature_grid, .category-grid, .card-container, .content-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature_grid li,
.hobby-category,
.card {
  background: #F7F9FA;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(44,53,49,0.06), 0 0.5px 1px rgba(17,100,102,0.04);
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s, transform 0.19s;
  position: relative;
}
.feature_grid li:hover, .hobby-category:hover, .card:hover {
  box-shadow: 0 8px 28px 0 rgba(17,100,102,0.12);
  transform: translateY(-5px) scale(1.02);
}
.category-grid {
  gap: 24px;
}
.hobby-category img {
  width: 54px;
  height: 54px;
}
.hobby-category h3 {
  margin-bottom: 8px;
  font-size: 1.26em;
  color: #116466;
}

.card-container {
  gap: 24px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content grid used for e.g. 2 column layouts */
.content-grid {
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

.service-list, .detailed-service-list, .workshop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 26px;
}
.service-list li, .detailed-service-list li, .workshop-list li {
  background: #EFF5F7;
  border-radius: 7px;
  padding: 13px 16px 13px 18px;
  margin-bottom: 7px;
  color: #2C3531;
  box-shadow: 0 1.5px 5px 0 rgba(44,53,49,0.06);
  font-size: 1rem;
}
.service-list .price, .detailed-service-list .price {
  float: right;
  margin-left: 12px;
}

/* ================== TESTIMONIAL CARDS ================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7F9FA;
  border: 1px solid #dde7e9;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 220px;
  box-shadow: 0 2px 11px 0 rgba(44,53,49,0.06);
  color: #2C3531;
  position: relative;
}
.testimonial-card p {
  font-size: 1.02em;
  flex: 2;
  color: #23302e;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-size: 0.96em;
  font-weight: 500;
  color: #116466;
}
.star-rating {
  margin-left: 12px;
  font-size: 1.08em;
  color: #FFCB9A;
  letter-spacing: 0.1em;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
}

/* ================== TABLES (e.g. Pricing) ================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 1.5px 7px rgba(44,53,49,0.04);
  margin-bottom: 26px;
  background: #F7F9FA;
}
.pricing-table th, .pricing-table td {
  border: none;
  padding: 11px 18px;
  text-align: left;
  font-size: 1em;
}
.pricing-table th {
  background: #116466;
  color: #fff;
  font-weight: 600;
}
.pricing-table tr:nth-child(2n) td {
  background: #eaf5f5;
}

/* ================== ADDRESS MAP BLOCK ================== */
.address-map {
  background: #EAF5F5;
  padding: 14px 17px;
  border-radius: 7px;
  margin-top: 8px;
  color: #2C3531;
  box-shadow: 0 2px 6px 0 rgba(44,53,49,0.03);
}

/* ================== COOKIE CONSENT BANNER ================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2C3531;
  color: #fff;
  z-index: 3444;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 18px;
  box-shadow: 0 -2px 18px 0 rgba(44,53,49,0.20);
  gap: 32px;
  animation: bannerSlideUp 0.45s cubic-bezier(0.7,0,0.2,1);
}
@keyframes bannerSlideUp {
  from { transform: translateY(85px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  max-width: 730px;
  font-size: 1em;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner .btn-cookie {
  background: #116466;
  color: #fff;
  border-radius: 7px;
  border: none;
  padding: 8px 23px;
  margin-right: 6px;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 0.98em;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 5px 0 rgba(44,53,49,0.12);
}
.cookie-consent-banner .btn-cookie:hover, .cookie-consent-banner .btn-cookie:focus {
  background: #FFCB9A;
  color: #2C3531;
}
.cookie-consent-banner .btn-cookie-plain {
  background: #fff;
  color: #2C3531;
  border: 2px solid #116466;
}
.cookie-consent-banner .btn-cookie-plain:hover, .cookie-consent-banner .btn-cookie-plain:focus {
  background: #116466;
  color: #fff;
}

@media (max-width: 740px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 8px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,53,49,0.65);
  z-index: 4444;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn0 0.25s ease;
}
@keyframes fadeIn0 {
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #2C3531;
  border-radius: 14px;
  box-shadow: 0 6px 30px 0 rgba(44,53,49,0.12);
  min-width: 320px;
  max-width: 94vw;
  padding: 36px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: modalZoomIn 0.38s cubic-bezier(0.5,0.8,0.2,1);
}
@keyframes modalZoomIn {
  from{transform:scale(0.95);opacity:0;} to{transform:scale(1);opacity:1;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: #116466;
  width: 20px; height: 20px;
}
.cookie-category label {
  font-size: 1em;
  color: #2C3531;
  font-weight: 600;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: #116466;
  color: #fff;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cookie-modal .modal-close:hover {
  background: #FFCB9A;
  color: #2C3531;
}
.cookie-modal .btn-cookie {
  margin-top: 8px;
}

/* ================== RESPONSIVE QUERIES ================== */
@media (max-width: 1000px) {
  header .container, nav, nav > ul, nav > .btn-primary {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0;
  }
}
@media (max-width: 900px) {
  .feature_grid, .category-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
  .footer-nav, .legal-links, .social-media {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.06rem; }
  h3 { font-size: 1em; }
  .section {
    padding: 19px 2px;
  }
}

/* ================== UTILITIES ================== */
.mt16 {margin-top:16px;}
.mt32 {margin-top:32px;}
.mb16 {margin-bottom:16px;}
.mb32 {margin-bottom:32px;}
.text-center {text-align:center;}
.d-flex {display:flex;}
.flex-row {flex-direction: row;}
.flex-col {flex-direction: column;}
.align-center {align-items: center;}
.align-start {align-items: flex-start;}
.gap-10 {gap:10px;}
.gap-20 {gap:20px;}

/* ================== FORM ELEMENTS ================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border: 1px solid #b9c7c7;
  background: #F7F9FA;
  border-radius: 7px;
  padding: 9px 13px;
  font-size: 1em;
  transition: border 0.17s, box-shadow .15s;
  box-shadow: 0 1px 2px rgba(44,53,49,0.04);
}
input:focus, textarea:focus, select:focus {
  border-color: #116466;
  box-shadow: 0 1px 5px 0 rgba(17,100,102,0.11);
}
label { font-weight: 600; color: #116466; }

/* ================== MICRO-INTERACTIONS & EFFECTS ================== */
.btn-primary, .btn-secondary, .btn-cookie {
  will-change: background, color, box-shadow;
}
.card, .feature_grid li, .hobby-category {
  transition: box-shadow 0.19s, transform 0.18s;
  cursor: pointer;
}
.card:active, .feature_grid li:active, .hobby-category:active {
  transform: translateY(2px) scale(0.98);
}

/* ================== VISUAL HIERARCHY ================== */
.text-section ul,
.content-wrapper ul {
  margin: 0 0 12px 1.5em;
}
.text-section ul li,
.content-wrapper ul li {
  margin-bottom: 8px;
}
.text-section p,
.text-section h3 {
  margin-bottom: 9px;
}

/* ================== ACCESSIBILITY ================== */
:focus {
  outline: 2px solid #FFCB9A;
  outline-offset: 2px;
}

/* ================== BRAND COLORS ================== */
:root {
  --primary: #2C3531;
  --secondary: #116466;
  --accent: #FFCB9A;
  --gray-light: #F7F9FA;
  --gray-med: #eaf5f5;
}

/* ================ END OF CSS ================ */
