/* --------------------------------------------------
 AUSZEIT FRANKFURT - CREATIVE ARTISTIC CSS
-----------------------------------------------------
  - Modern, creative, artistic, vibrant
  - Mobile-first (responsive)
  - Flexbox layouts only
  - All class selectors match HTML
  - No grid or columns, no clamp()
  - Typography & colors per brand guidelines
-----------------------------------------------------*/

/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F1F6EF;
  color: #2C4C36;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.2em;
}
a {
  color: #E29525;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B3701B;
  text-decoration: underline;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #2C4C36;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 9px;
}
h3 {
  font-size: 1.15rem;
}
.subheadline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  color: #B3701B;
  margin-bottom: 22px;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.95em;
  color: #888;
}

/* === CONTAINER & SECTION SPACING === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 36px 0 rgba(44,76,54,0.10);
  position: relative;
}
@media (max-width: 600px) {
  .section {
    margin-bottom: 38px;
    padding: 26px 8px;
    border-radius: 16px;
  }
  .container {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #2C4C36;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 30;
  min-height: 74px;
  box-shadow: 0 1px 10px rgba(44,76,54,0.08);
  justify-content: center;
}
header .container {
  flex-direction: row;
  align-items: center;
}
.logo {
  margin: 12px 0 12px 12px;
  padding: 0;
  display: flex;
  align-items: center;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-left: 35px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F1F6EF;
  padding: 7px 10px;
  transition: color 0.2s, background 0.18s;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E29525;
  color: #fff;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 26px;
  background: #E29525;
  color: #fff;
  border: none;
  border-radius: 22px;
  margin-left: auto;
  box-shadow: 0 2px 12px 0 rgba(226,149,37,0.09);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, transform 0.18s;
  letter-spacing: 0.04em;
}
.cta.primary {
  background: #2C4C36;
  color: #fff;
  border: 2px solid #E29525;
  margin-left: 24px;
  margin-right: 12px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #E29525;
  color: #2C4C36;
  border-color: #2C4C36;
  transform: translateY(-2px) scale(1.035);
}
.cta:not(.primary):hover, .cta:not(.primary):focus {
  background: #B3701B;
  color: #fff;
  transform: scale(1.04);
}

button, .mobile-menu-toggle, .mobile-menu-close {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* == MOBILE NAVIGATION TOGGLE == */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #E29525;
  background: none;
  border: none;
  margin-right: 14px;
  margin-left: 12px;
  z-index: 40;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(226,149,37,0.15);
  color: #B3701B;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* == MOBILE MENU DRAWER == */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px 0 rgba(44,76,54,0.15);
  z-index: 1111;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.8,.2,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: flex;
  align-self: flex-end;
  margin: 16px 18px 0 0;
  font-size: 2.1rem;
  color: #2C4C36;
  background: none;
  border: none;
  transition: background 0.15s, color 0.15s;
  border-radius: 9px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F1F6EF;
  color: #E29525;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 26px 22px 26px;
  flex: 1 1 auto;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  color: #2C4C36;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  width: 100%;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E29525;
  color: #fff;
}
@media (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    justify-content: flex-start;
    height: auto;
  }
}

/* === HERO SECTIONS === */
section:first-of-type {
  background: linear-gradient(135deg, #E29525 0%, #F1F6EF 100%);
  color: #2C4C36;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 54px 54px;
  box-shadow: 0 2px 22px 0 rgba(226,149,37,0.06);
}
section:first-of-type .content-wrapper {
  align-items: flex-start;
  margin: 38px 0 28px 0;
}
section:first-of-type h1, 
section:first-of-type .subheadline {
  color: #2C4C36;
  text-shadow: 0 2px 0 #fff4;
}

@media (max-width: 600px) {
  section:first-of-type {
    border-radius: 0 0 28px 28px;
  }
  section:first-of-type .content-wrapper {
    margin: 20px 0 12px 0;
  }
}

/* === FLEX LAYOUTS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
  list-style: none;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #F1F6EF;
  border-radius: 22px;
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(44,76,54,0.05);
  min-width: 220px; max-width: 300px;
  flex: 1 1 240px;
  position: relative;
  transition: background 0.22s, box-shadow 0.21s;
  border: 2.5px solid transparent;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  background: #fffbe4;
  border: 2.5px solid #E29525;
  box-shadow: 0 8px 24px rgba(226,149,37,0.07);
  z-index: 3;
}
.feature-grid img {
  height: 38px; width: 38px;
  margin-bottom: 2px;
  filter: saturate(1.8) contrast(1.1);
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #B3701B;
  margin-bottom: 2px;
}
.feature-grid span {
  font-size: 0.98rem;
  color: #E29525;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* === SERVICES LIST === */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 33px 0 10px 0;
}
.service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 2px 12px rgba(44,76,54,0.09);
  min-width: 200px; max-width: 290px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, border 0.21s, background 0.19s;
  border: 2px solid #FFF8F1;
}
.service-list li:hover, .service-list li:focus-within {
  background: #F1F6EF;
  border: 2px solid #E29525;
  box-shadow: 0 7px 20px rgba(226,149,37,0.10);
  z-index: 2;
}
.service-list .price {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #2C4C36;
  font-size: 1.08rem;
  margin-top: 8px;
  background: #F6EAD5;
  border-radius: 9px;
  padding: 4px 10px 4px 10px;
  align-self: flex-end;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fffbe4;
  border-left: 7px solid #E29525;
  border-radius: 16px;
  box-shadow: 0 3px 17px 0 rgba(226,149,37,0.09);
  color: #262D21;
  max-width: 690px;
  position: relative;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.08rem;
  color: #2C4C36;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #B3701B;
  font-size: 1.01rem;
}
/* High contrast for testimonial text on light background! */

/* === TEXT/INFO SECTIONS === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 9px;
  margin-bottom: 12px;
}
.text-section ul
, .text-section ol {
  margin-top: 4px;
  margin-bottom: 18px;
  padding-left: 20px;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.text-section .notice {
  background: #E29525;
  color: #fff;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 1em;
  margin-top: 11px;
  margin-bottom: 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* === CARD CONTAINERS / FLEX GRIDS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(44,76,54,0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}
.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;
}

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

/* === FOOTER === */
footer {
  background: #2C4C36;
  color: #fff;
  width: 100%;
  padding: 38px 0 18px 0;
  position: relative;
  box-shadow: 0 -2px 12px rgba(44,76,54,0.05);
  border-radius: 28px 28px 0 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-menu a {
  color: #F1F6EF;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  padding: 5px 8px;
  transition: background 0.18s, color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #E29525;
  color: #fff;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 6px;
}
.social-icons img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,76,54,0.10);
  transition: background 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.social-icons img:hover {
  background: #F6EAD5;
  box-shadow: 0 4px 12px rgba(226,149,37,0.10);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .feature-grid,
  .service-list {
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-menu {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .feature-grid,
  .service-list {
    flex-direction: column;
  }
  .feature-grid li, .service-list li {
    min-width: 0; max-width: 100%;
    width: 100%;
  }
  .card-container, .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  h1 {font-size:1.3rem;}
  h2 {font-size:1.05rem;}
}

/* === BUTTONS, HOVER & MICRO-INTERACTIONS === */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.15s;
}
button:active, .cta:active {
  transform: scale(0.98);
}

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe4;
  color: #2C4C36;
  box-shadow: 0 -2px 16px rgba(226,149,37,0.13);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1700;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  gap: 14px;
  animation: cookieSlideUp 0.48s cubic-bezier(.7,.3,.2,1);
}
@keyframes cookieSlideUp {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 11px;
  margin-top:4px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 26px;
  margin: 0;
  border: none;
  border-radius: 19px;
  cursor: pointer;
  background: #E29525;
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-btn.settings {
  background: #2C4C36;
  color: #fff;
  border: 2px solid #E29525;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #B3701B;
  border: 2px solid #B3701B;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #B3701B;
  color: #fff;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; top:0; width: 100vw; height: 100vh;
  background: rgba(44,76,54,0.49);
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.32s;
}
@keyframes fadein {
  from {opacity:0;} to {opacity: 1;}
}
.cookie-modal-inner {
  background: #fffbe4;
  color: #2C4C36;
  padding: 34px 24px 28px 24px;
  border-radius: 18px;
  min-width:300px; max-width:430px;
  box-shadow: 0 7px 37px rgba(226,149,37,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-inner h3 {
  margin: 0 0 7px 0;
  font-size: 1.2rem;
  color: #E29525;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2C4C36;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E29525;
  width: 22px; height: 22px;
}
.cookie-category input[disabled] {
  filter: grayscale(80%);
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 13px;
  background: none;
  border: none;
  color: #2C4C36;
  font-size: 2rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F1F6EF;
  color: #E29525;
}
@media (max-width: 520px) {
  .cookie-modal-inner { min-width: 0; width: 95vw; }
}

/* === UTILITY / ARTISTIC ELEMENTS === */
/* Artistic brush effect for borders (SVG/Img elsewhere) */
.section:after {
  content: '';
  display: block;
  position: absolute;
  left: 38px; bottom: -23px;
  width: 80px; height: 22px;
  background: url('../assets/brush-art.svg') no-repeat center bottom / contain;
  opacity: 0.19;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .section:after {
    left: 8px; bottom: -13px; width: 54px;
  }
}

/* === ACCESSIBILITY/FOCUS === */
:focus-visible {
  outline: 3px solid #E29525;
  outline-offset: 1px;
}

/* === SPACING BETWEEN ELEMENTS === */
.section + .section {
  margin-top: 50px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 18px;
}
section {
  padding: 20px 0;
}
/* === NO ABSOLUTE ON CARDS/TEXTS, only for visuals (already handled above) === */


/* === END OF STYLES === */
