/* CSS RESET & BASE STYLES */
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, main, 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;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F3F0;
  color: #232933;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B58E41;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #2D3845;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #2D3845;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 28px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  color: #B58E41;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.4rem;
  color: #2D3845;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #232933;
}
p, .content-wrapper ul, .content-wrapper ol {
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
}

/* LAYOUT & SPACING */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 rgba(45,56,69,0.08),0 1.5px 2.5px 0 rgba(181,142,65,0.06);
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(45,56,69,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  height: 44px;
  margin-right: 24px;
}
.brand-logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #232933;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  background: #B58E41;
}
.btn.btn-primary {
  font-family: 'Oswald', Arial, sans-serif;
  background: #B58E41;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 11px 32px;
  box-shadow: 0 2px 10px 0 rgba(181,142,65,0.12);
  margin-left: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: #2D3845;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px 0 rgba(45,56,69,0.1);
}
.btn.btn-secondary {
  background: #2D3845;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  margin-top: 16px;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.18s, transform 0.13s, box-shadow 0.16s;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
  background: #B58E41;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px 0 rgba(181,142,65,0.09);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #B58E41;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  margin-left: 8px;
  transition: border 0.18s, color 0.15s;
  z-index: 60;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fff;
  background: #B58E41;
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45,56,69,0.98);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.65,0,.17,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: -12px 0 28px 0 rgba(45,56,69,0.12);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin: 22px 22px 0 auto;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 40px 0 0 32px;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  padding: 10px 6px 10px 0;
  border-radius: 8px;
  transition: background 0.13s, color 0.16s;
  text-transform: uppercase;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B58E41;
  color: #fff;
}

/* Hide main-nav on mobile */
@media(max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media(min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  background: linear-gradient(98deg, #B58E41 0%, #2D3845 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
  padding: 64px 0 64px 0;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 26px rgba(0,0,0,0.09);
}
.hero p {
  color: #FADEB7;
  font-size: 1.2rem;
}
.hero .btn {
  margin-top: 24px;
}

/* --- FEATURES / CARDS --- */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 36px 0 rgba(45,56,69,0.08),0 1.5px 2.5px 0 rgba(181,142,65,0.06);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F3E1B5;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(181,142,65,0.09);
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  transition: transform 0.20s cubic-bezier(.5,2,0,1), box-shadow 0.18s;
  margin-bottom: 20px;
}
.feature-icon img {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}
.feature-icon h3 {
  text-transform: uppercase;
  color: #2D3845;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-icon p {
  color: #232933;
  font-size: 1rem;
}
.feature-icon:hover,
.feature-icon:focus {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 6px 36px 0 rgba(181,142,65,0.14);
}

/* --- CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(45,56,69,0.08);
  padding: 22px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover,
.card:focus {
  box-shadow: 0 6px 24px 0 rgba(181,142,65,0.12);
  transform: translateY(-4px) scale(1.03);
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex: 1 1 300px;
  background: #fff;
  color: #1a1b1f;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(181,142,65,0.09);
  font-size: 1.08rem;
  min-width: 220px;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 36px 0 rgba(181,142,65,0.16);
}
.testimonial-card strong {
  display: block;
  color: #2D3845;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  margin-top: 9px;
  letter-spacing: 0.2px;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  margin-top: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #B58E41;
  font-size: 1.17rem;
}
.star-rating img {
  width: 24px;
  height: 24px;
}

/* --- CTA Section, About, Legal, etc. --- */
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #2D3845;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 2px 24px 0 rgba(45,56,69,0.09);
}
.cta-section .btn {
  margin-bottom: 14px;
}
.cta-section p, .cta-section a {
  color: #FADEB7;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.about, .bartpflege-services, .maennerkosmetik-services, .faq, .workshop-list, .legal-section, .contact-info, .booking-info, .thank-you-section, .map-section, .services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(45,56,69,0.07);
}

/* Specific List Styles */
.about ul,
.features ul,
.services ul,
.bartpflege-tips ul,
.maennerkosmetik-services ul,
.workshop-list ul,
.legal-section ul,
.faq-list {
  margin-bottom: 10px;
  list-style: disc inside;
}

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

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.faq-list strong {
  font-family: 'Oswald', Arial, sans-serif;
  color: #2D3845;
}

/* --- PRICE TABLES --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 18px;
  background: #F3E1B5;
  border-radius: 14px;
  box-shadow: 0 1.5px 10px 0 rgba(181,142,65,0.06);
  overflow: hidden;
}
.price-table caption {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
  color: #2D3845;
  font-weight: 700;
  margin: 8px 0 16px 0;
}
.price-table th, .price-table td {
  padding: 12px 14px;
}
.price-table tr {
  border-bottom: 1.5px solid #E6D3AD;
}
.price-table th {
  background: #B58E41;
  color: #fff;
  text-align: left;
}
.price-table td {
  color: #232933;
}
.price-table tr:last-child {
  border-bottom: none;
}

/* --- SERVICE GRIDS --- */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 30px 0;
}
.service-grid > div {
  flex: 1 1 270px;
  background: #F3E1B5;
  border-radius: 16px;
  padding: 21px 18px;
  box-shadow: 0 1.5px 10px 0 rgba(181,142,65,0.10);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.12s;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-grid > div a {
  font-size: 0.99rem;
  font-family: 'Oswald', Arial, sans-serif;
  background: none;
  color: #2D3845;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 8px;
  transition: color 0.13s;
}
.service-grid > div a:hover,
.service-grid > div a:focus {
  color: #B58E41;
}
.service-grid > div:hover,
.service-grid > div:focus{
  box-shadow: 0 6px 24px 0 rgba(181,142,65,0.14);
  transform: scale(1.03);
}

/* --- CONTACT INFO --- */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  margin-left: 0;
  margin-top: 24px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  color: #2D3845;
}
.contact-info img {
  width: 28px;
  height: 28px;
  opacity: .95;
}

.map-section img {
  width: 38px;
  height: 38px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* --- FOOTER --- */
footer {
  background: #232933;
  color: #fff;
  padding: 36px 0 20px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #B58E41;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  text-transform: uppercase;
  transition: color 0.17s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.brand-footer {
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

/* --- THANK YOU SECTION --- */
.thank-you-section {
  text-align: center;
  margin-top: 40px;
}
.thank-you-section h1 {
  color: #B58E41;
}
.thank-you-section p {
  font-size: 1.15rem;
  margin-bottom: 28px;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  .hero .content-wrapper,
  .cta-section .content-wrapper,
  .about .content-wrapper,
  .content-wrapper {
    padding: 0;
    align-items: flex-start;
    width: 100%;
  }
  .hero .container {
    min-height: 180px;
    padding: 32px 10px;
  }
  .hero .content-wrapper {
    padding: 24px 0 24px 0;
  }
  .feature-grid, .testimonial-grid, .card-container, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-icon, .service-grid > div, .testimonial-card, .card {
    min-width: unset;
    width: 100%;
    border-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 16px;
    font-size: 1.01rem;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .btn.btn-primary, .btn.btn-secondary {
    font-size: 0.99rem;
    padding: 9px 16px;
  }
  .cta-section {
    padding: 22px 7px;
    border-radius: 10px;
  }
  .section, .about, .features, .bartpflege-services, .maennerkosmetik-services, .faq, .workshop-list, .legal-section, .contact-info, .booking-info, .thank-you-section, .map-section, .services {
    padding: 18px 7px;
    border-radius: 8px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff;
  color: #232933;
  box-shadow: 0 -2px 32px 0 rgba(45,56,69,0.17);
  padding: 24px 20px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 24px 24px 0 0;
  font-size: 1.01rem;
  animation: cookieSlideUp 0.52s cubic-bezier(.81,1.01,.45,1) both;
}
@keyframes cookieSlideUp {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  margin-right: 18px;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn {
  margin: 0 10px 0 0;
  background: #B58E41;
  color: #fff;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.13s, transform 0.13s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #2D3845;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cookie-banner .cookie-settings-btn {
  background: #2D3845;
  color: #fff;
  margin-left: 2px;
  padding: 10px 18px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #B58E41;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 374px;
  width: 96vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 70px 0 rgba(45,56,69,0.27);
  padding: 32px 22px 22px 22px;
  z-index: 250;
  transform: translate(-50%, -50%) scale(0.76);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.26s cubic-bezier(.94,1.51,.15,.95), opacity 0.22s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.cookie-modal h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.23rem;
  margin-bottom: 7px;
  color: #B58E41;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #B58E41;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 9px 20px;
  border-radius: 16px;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  top: 19px;
  right: 17px;
  font-size: 1.6rem;
  background: none;
  color: #B58E41;
  border: none;
  cursor: pointer;
}

@media(max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 8px 14px 8px;
    font-size: 0.96rem;
    border-radius: 11px 11px 0 0;
  }
  .cookie-modal {
    padding: 20px 8px 14px 8px;
    border-radius: 7px;
  }
}

/* --- UTILITIES & MICRO-ANIMATIONS --- */
.fade-in {
  animation: fadeIn 1.2s;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.scale-up {
  animation: scaleUp 0.7s cubic-bezier(.5,1.7,.3,1) both;
}
@keyframes scaleUp {
  from {transform: scale(0.92); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* --- SPACING COMMONS --- */
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- MISC & OVERRIDES --- */
::-webkit-scrollbar {
  width: 9px;
  background: #EDE6D9;
}
::-webkit-scrollbar-thumb {
  background: #B58E41;
  border-radius: 6px;
}
input:focus, button:focus, a:focus {
  outline: 2px solid #B58E41;
  outline-offset: 1.5px;
}

/* --- ELECTRIC / VIBRANT ENERGETIC ACCENTS (for style) --- */
.btn.btn-primary, .feature-icon, .service-grid > div, .price-table, .cta-section, .cookie-banner, .testimonial-card {
  box-shadow: 0 2.5px 20px 0 rgba(181,142,65,0.10);
}

/* --- END --- */