/* CSS RESET & BASES */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181A1B;
  color: #F8F7F1;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #F8F7F1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8C6F4A;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 700;
  color: #CDBB8E;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  color: #F8F7F1;
  font-weight: 700;
  margin-bottom: 12px;
}
h1 { font-size: 2.125rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 1.625rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }
p { font-size: 1rem; margin-bottom: 12px; color: #e5e2cd; }

@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section, .about, .team, .features, .services, .services-list, .services-overview,
.faq-section, .cookie-richtlinie, .nutzungsbedingungen-section, .gdpr-section, .datenschutz, .confirmation, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,33,36,0.96);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(25,25,25,0.08), 0 1px 1.5px rgba(60,60,60,0.04);
}

/* FLEX, GAP, PATTERNS */
.card-container, .card-grid, .features ul, .services ul, .packages ul, .price-categories ul, .core-competencies ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222527;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(13,13,13,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 350px;
  padding: 24px 20px;
  border: 1.5px solid #35383b;
  transition: transform 0.13s cubic-bezier(.45,1.5,.5,1), box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 8px 24px rgba(140,111,74,0.17);
  border-color: #8C6F4A;
}
.card-content, .services li, .services-overview ul li, .feature-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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) {
  .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;
}

/* HEADER & NAVIGATION */
header {
  background: #232526;
  box-shadow: 0 2px 8px rgba(20,20,20,0.09);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}
header nav {
  display: flex;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F8F7F1;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.18s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #8C6F4A;
  border-bottom: 2.5px solid #8C6F4A;
}
header img {
  height: 38px;
  width: auto;
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
}

/* CTA BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  background: #2A5548;
  color: #F8F7F1;
  box-shadow: 0 2px 15px rgba(25,25,25,0.05);
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.19s, color 0.14s, box-shadow 0.17s, transform 0.13s;
}
.cta.primary {
  background: linear-gradient(90deg,#2A5548 40%,#35383b 100%);
  box-shadow: 0 4px 16px rgba(42,85,72,0.15);
  color: #F8F7F1;
}
.cta.primary:hover, .cta.primary:focus {
  background: #8C6F4A;
  color: #F8F7F1;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 40px rgba(140,111,74,0.22);
}
.cta.secondary {
  background: transparent;
  color: #8C6F4A;
  font-weight: 700;
  border: 2px solid #8C6F4A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #8C6F4A;
  color: #181A1B;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 18px rgba(140,111,74,0.19);
}

/* BURGER/MOBILE MENU */
.mobile-menu-toggle {
  background: #232526;
  color: #F8F7F1;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  padding: 6px 18px 4px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s;
  display: flex;
  align-items: center;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #8C6F4A;
  color: #181A1B;
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 33, 36, 0.99);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 20px 0 20px;
  /* Animations */
  transform: translateX(-100%);
  transition: transform 0.43s cubic-bezier(.68,-0.5,0.58,1.45);
  box-shadow: 8px 0 32px rgba(140,111,74,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F8F7F1;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8C6F4A;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.mobile-nav a {
  color: #F8F7F1;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 16px 8px 12px 0px;
  letter-spacing: 0.02em;
  border-left: 4px solid transparent;
  transition: border-color 0.14s, color 0.2s, background 0.16s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #8C6F4A11;
  color: #8C6F4A;
  border-left: 4px solid #8C6F4A;
}

/* HERO & SECTIONS */
.hero {
  background: linear-gradient(104deg,#232526 50%,#181A1B 100%);
  border-bottom: 2px solid #35383b;
  padding: 52px 0 60px 0;
  margin-bottom: 0;
}
.hero .content-wrapper {
  max-width: 650px;
  margin: 0 auto;
  align-items: flex-start;
}
.hero h1,
.cta h2 {
  color: #F8F7F1;
  text-shadow: 0 2px 10px #2a55483c, 0 1px #8C6F4A2e;
}
.hero p,
.cta p {
  font-size: 1.18rem;
  color: #ecdfc9;
  margin-bottom: 26px;
}

.features ul, .services ul, .packages ul {
  gap: 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.features li, .services li, .packages li, .about ul li, .core-competencies ul li, .price-categories ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  min-width: 220px;
  background: #232526;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 1px 6px rgba(90,90,90,0.11);
  font-size: 1rem;
  color: #eee8d9;
  border: 1px solid #2A554833;
}
.features li img, .services li img, .contact ul li img, .about ul li img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2) contrast(1.2) drop-shadow(0 3px 6px #0001);
}

/* CARDS & PACKAGES */
.card-container, .card-grid, .packages ul {
  flex-wrap: wrap;
  gap: 24px;
}

.price, .services .price {
  color: #CDBB8E;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 14px;
  display: block;
}

.infographic, .customization-steps {
  background: #232526;
  border-radius: 13px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(42,85,72,0.07);
  margin-top: 24px;
}
.infographic h3 {
  color: #CDBB8E;
  font-weight: 600;
}
.infographic ol, .customization-steps ol {
  margin: 14px 0 0 18px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F7F1;
  color: #222527;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 3px 24px #2A554814;
  border-left: 8px solid #8C6F4A;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-card p {
  color: #232526;
  font-style: italic;
}
.testimonial-card span {
  color: #2A5548;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
	font-weight: 700;
}

/* FAQ / ACCORDION STYLE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 12px;
}
.faq-item {
  padding: 22px 18px;
  border-radius: 11px;
  background: #222527;
  box-shadow: 0 2px 12px #2A554814;
  border-left: 6px solid #8C6F4A;
  margin-bottom: 8px;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  color: #CDBB8E;
}
.faq-item p {
  color: #F8F7F1;
  margin-bottom: 0;
}

/* CONTACT & MAP */
.contact .text-section, .map-snippet {
  background: #232526;
  color: #F8F7F1;
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 18px;
}
.contact .text-section ul, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info p, .contact-info a {
  font-size: 0.97rem;
  color: #D8D5BC;
}
footer .contact-info a {
  color: #CDBB8E;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #181A1B;
  padding: 38px 0 22px;
  border-top: 2px solid #35383b;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #CDBB8E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial,sans-serif;
  font-weight: 600;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #8C6F4A;
}
footer img {
  height: 44px;
  width: auto;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  footer nav {
    flex-direction: row;
    gap: 18px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #232526;
  color: #F8F7F1;
  box-shadow: 0 -4px 24px #8C6F4A22;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px 22px 20px;
  font-size: 1rem;
  border-top: 2.5px solid #8C6F4A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-text { flex: 1 1 auto; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  border: none;
  margin-left: 3px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 1px 6px #181A1B66;
}
.cookie-btn.accept {
  background: #2A5548;
  color: #F8F7F1;
  border: 1.5px solid #2A5548;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #8C6F4A;
  color: #181A1B;
}
.cookie-btn.reject {
  background: #232526;
  color: #CDBB8E;
  border: 1.5px solid #8C6F4A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F8F7F1;
  color: #8C6F4A;
}
.cookie-btn.settings {
  background: transparent;
  border: 1.5px solid #8C6F4A;
  color: #8C6F4A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #8C6F4A;
  color: #181A1B;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,33,36,0.94);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #222527;
  color: #F8F7F1;
  border-radius: 15px;
  padding: 38px 26px 26px;
  min-width: 340px;
  max-width: 96vw;
  box-shadow: 0 8px 44px #23252633;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  font-size: 1rem;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #F8F7F1;
  font-size: 2rem;
  position: absolute;
  top: 12px;
  right: 18px;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-category input[type='checkbox'] {
  accent-color: #2A5548;
  width: 22px;
  height: 22px;
}
.cookie-category input[disabled] {
  opacity: 0.38;
  pointer-events: none;
}

/* CONFIRMATION PAGE STYLE */
.confirmation h1 {
  color: #8C6F4A;
}
.confirmation .cta {
  margin-top: 28px;
}

/* TEXT SECTIONS & LISTS */
.text-section {
  background: #232526;
  color: #F8F7F1;
  border-radius: 13px;
  padding: 22px 22px;
}
.text-section ul {
  margin-top: 6px;
  margin-bottom: 8px;
  list-style: disc;
  color: #beb393;
}
.text-section li {
  margin-bottom: 7px;
}
address {
  font-style: normal;
  color: #CDBB8E;
  font-size: 0.97rem;
}

/* VISUAL & METALLIC TOUCHES (DECORATION) */
.section, .card, .feature-item, .services li {
  border-top: 3px solid #2A554855;
  box-shadow: 0 2px 11px #2A554813, 0 1.5px 0 #8C6F4A1c;
}
.features li, .testimonial-card {
  border-left: 6px solid #8C6F4A;
}
.cta.primary, .cookie-btn.accept {
  box-shadow: 0 4px 20px #8C6F4A22;
}

/* URBAN FEEL & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 700px) {
  header .container, .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 6px;
  }
  section, .section, .about, .features, .faq-section, .services, .services-list,
  .services-overview, .cta, .confirmation, .team, .contact {
    padding: 38px 6px;
    margin-bottom: 44px;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1rem; }
  .hero {
    padding-top: 22px;
    padding-bottom: 36px;
  }
  .card, .features li, .services li, .packages li, .testimonial-card, .infographic, .core-competencies ul li {
    padding: 16px 10px;
    min-width: unset;
    font-size: 1rem;
  }
}

/* ANIMATIONS */
.cta, .card, .cta.primary, .cta.secondary, .features li, .testimonial-card, .card {
  transition: 
    transform 0.18s cubic-bezier(.4,1.6,.31,1),
    box-shadow 0.19s,
    background 0.2s,
    color 0.13s;
}
.cta:active {
  transform: scale(0.97);
}
.card:active, .features li:active {
  transform: scale(0.97) translateY(2px);
}

/* SCROLLBARS (URBAN FEEL) */
::-webkit-scrollbar {
  width: 8px;
  background: #232526;
}
::-webkit-scrollbar-thumb {
  background: #8C6F4A66;
  border-radius: 7px;
}

/* HIDE OUTLINES ON MOUSE ONLY */
:focus:not(:focus-visible) {
  outline: none;
}

/* SPECIAL: ENSURE NO OVERLAPS & RIGHT FLEX SPACING */
.card-container, .card-grid, .features ul, .services ul, .packages ul {
  gap: 24px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* ACCENT TEXT */
.accent {
  color: #8C6F4A;
}

/* NO ABSOLUTE FOR CARDS (for decorative: allowed) */

/* FONT IMPORT (for demo purposes - fallback provided in css above) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

