/* ====================================================================
   CSS RESET & NORMALIZE
==================================================================== */
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;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  background: #F6F4F0;
  font-family: 'Lato', Arial, sans-serif;
  color: #453E35;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #5E7C48;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #92C182;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* ====================================================================
   BRAND COLORS & FONTS (nature_organic)
==================================================================== */
:root {
  --color-primary: #2C2B3C;
  --color-secondary: #D1BFA3;
  --color-accent: #92C182; /* organic green accent for contrast */
  --color-bg: #F6F4F0;  /* light, natural background */
  --color-surface: #FFFFFF;
  --color-shade: #D9D7C8;
  --color-earth: #796D55;
  --color-text-dark: #2C2B3C;
  --color-text: #453E35;
  --color-text-light: #FFFFFF;
  --shadow-soft: 0 2px 18px rgba(60,60,40,0.09);
  --shadow-strong: 0 6px 36px rgba(89,99,56,0.14);
  --radius-btn: 32px;
  --radius-card: 18px;
  --radius-section: 28px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', Arial, sans-serif;
}

/* ====================================================================
   TYPOGRAPHY
==================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; line-height: 1.16; margin-bottom: 24px;}
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 14px;}
h4 { font-size: 1.15rem; margin-bottom: 10px;}

p, ul, ol {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1em;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}
.text-section > h1, .text-section > h2, .text-section > h3 {text-align: left;}

@media (max-width: 500px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}

/* ====================================================================
   LAYOUT: CONTAINER, SECTION & SPACING
   All critical spacing/alignment patterns are included.
==================================================================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: var(--radius-section);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) {
  .section { padding: 32px 8px; }
}
@media (max-width: 600px) {
  .section { padding: 18px 2px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

/* ====================================================================
   FLEX PATTERNS & CRITICAL LAYOUTS - NATURE ORGANIC DESIGN
==================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  flex: 1 1 280px;
}
.card-content {
  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: 16px;}
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-shade);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
}

.feature-grid, .team-list, .event-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--color-shade);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 30px 20px;
  flex: 1 1 238px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 20px;
}
.feature:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-strong);
}

.team-member {
  background: var(--color-shade);
  border-radius: 22px;
  padding: 20px 20px 18px 20px;
  box-shadow: var(--shadow-soft);
  flex: 1 1 270px;
  margin-bottom: 20px;
}

.event-highlights > div {
  background: var(--color-shade);
  border-radius: 20px;
  padding: 22px 18px;
  min-width: 250px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

.benefits-list {
  background: var(--color-bg);
  border-left: 6px solid var(--color-accent);
  border-radius: 10px;
  margin-top: 16px;
  padding: 16px 22px 10px 16px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.faq-item {
  flex: 1 1 240px;
  background: var(--color-shade);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.2s;
}
.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.faq-item:hover {
  box-shadow: var(--shadow-strong);
  border-left: 5px solid var(--color-accent);
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
  flex-direction: row;
}
.testimonial-card {
  background: #f2eee6;
  color: #2C2B3C;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  min-width: 255px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
}
.testimonial-card p {
  color: var(--color-text-dark);
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--color-earth);
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .01em;
}

/* BLOG FILTERS/BLOG LIST */
.blog-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.07em;
  color: var(--color-earth);
}
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
  margin-bottom: 24px;
}
.blog-post-list li {
  border-bottom: 1px solid var(--color-shade);
  padding-bottom: 14px;
}

/* MISC LISTS */
ul, ol {
  margin-bottom: 14px;
}
ul img, ol img { margin-right: 8px; vertical-align: middle;}

/* ====================================================================
   BUTTONS & LINKS
==================================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 34px;
  box-shadow: 0 2px 16px 0 rgba(115, 165, 85, 0.15);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}
.cta-btn:focus,
.cta-btn:active,
.cta-btn:hover {
  background: #719F5A;
  color: #fff;
  transform: translateY(-1px) scale(1.018);
  box-shadow: 0 4px 24px 0 rgba(115, 165, 85, 0.26);
  text-decoration: none;
  outline: none;
}
nav.main-nav a,
nav.footer-main-menu a,
nav.footer-menu-legal-links a,
.mobile-nav a {
  line-height: 2.3;
  margin-right: 18px;
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
  letter-spacing: .02em;
  padding: 2px 8px;
}
nav.main-nav a:last-child, nav.footer-main-menu a:last-child, nav.footer-menu-legal-links a:last-child { margin-right: 0; }
nav.main-nav a:after,
nav.footer-main-menu a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-accent);
  transition: width .22s;
}
nav.main-nav a:hover:after,
nav.footer-main-menu a:hover:after {
  width: 100%;
}
nav.main-nav a.active { color: var(--color-accent); font-weight: 700;}
nav.footer-menu-legal-links a { font-size: 0.93rem; color: var(--color-earth); }
nav.footer-menu-legal-links a:hover { color: var(--color-accent); }

a:not(.cta-btn):hover { color: var(--color-accent); text-decoration: underline; }

/* ====================================================================
   HEADER & FOOTER (nature_organic)
==================================================================== */
header {
  width: 100%;
  background: var(--color-bg);
  box-shadow: 0 2px 12px rgba(110,102,84,0.03);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 16px 12px 16px;
}
header img[alt="Shimmering Gleam Hochzeiten"] { height: 54px; margin-right: 25px;}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
header .cta-btn {
  margin-left: 18px;
}

/* MOBILE NAVIGATION BURGER */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
  margin-left: 10px;
  border: none;
  transition: background .18s, box-shadow .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #6e9458;
}

/* mobile menu overlay */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,243,237,0.98);
  z-index: 1020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 35px;
  padding-left: 14vw;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.7,.1,.32,1.1), opacity .2s;
  box-shadow: 0 7px 44px 0 rgba(110,102,84,0.04);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  transition: transform .42s cubic-bezier(.26,.95,.3,1), opacity .19s;
}
.mobile-menu-close {
  background: none;
  color: var(--color-text-dark);
  border: none;
  font-size: 2rem;
  margin-bottom: 22px;
  align-self: flex-end;
  margin-right: 24px;
  cursor: pointer;
  z-index: 1100;
  transition: color .15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.24rem;
  font-weight: 500;
  padding: 12px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
  min-width: 160px;
  transition: background .12s;
}
.mobile-nav a:focus,
.mobile-nav a:active,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: var(--color-text-light);
}
@media (max-width: 1100px) {
  nav.main-nav { gap: 6px; }
  header .cta-btn { margin-left: 6px; font-size: 1.01em; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; flex-wrap: wrap;}
  nav.main-nav { font-size: 0.98em; }
  header img[alt="Shimmering Gleam Hochzeiten"] { height: 44px; }
}
@media (max-width: 820px) {
  nav.main-nav, header .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }
}

/* HEADER LOGO MOBILE */
@media (max-width: 480px) {
  header .container { padding: 15px 4vw 8px 4vw; }
  header img[alt="Shimmering Gleam Hochzeiten"] { height: 35px; }
}

footer {
  background: var(--color-bg);
  color: var(--color-earth);
  margin-top: 60px;
  padding: 44px 0 18px 0;
  box-shadow: 0 -2px 22px 0 rgba(145,140,120,0.07);
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
footer nav.footer-main-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
footer .footer-cta {
  margin-bottom: 15px;
}
footer .footer-info ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-bottom: 10px;
}
footer .footer-info li {
  color: var(--color-earth);
  font-size: 0.99em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
footer nav.footer-menu-legal-links {
  margin: 0 0 12px 0;
  font-size: 0.93em;
  text-align: left;
  color: var(--color-earth);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-copyright small {
  color: #aaa18f;
  font-size: .9em;
  letter-spacing: .01em;
}

@media (max-width: 700px) {
  footer { padding: 30px 0 10px 0; }
  footer .container { gap: 14px; }
  footer .footer-info ul { flex-direction: column; gap: 8px;}
}

/* ====================================================================
   ORGANIC DECORATIVE TOUCHES (organic shapes, accents)
==================================================================== */
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -44px; left: -34px;
  width: 110px; height: 80px;
  background: rgba(146,193,130,0.10);
  border-radius: 44% 66% 77% 42% / 33% 55% 66% 44%;
  z-index: 0;
  pointer-events: none;
}
.section:last-child:before { display: none; }
.feature:before {
  content: '';
  position: absolute;
  top: -18px; right: -22px;
  width: 42px; height: 36px;
  background: rgba(209,191,163, 0.16);
  border-radius: 70% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 1;
}
.feature:last-child:before { display: none; }

/* ====================================================================
   RESPONSIVE LAYOUTS (Mobile-first)
==================================================================== */
@media (max-width: 1200px) {
  .container { max-width: 96vw;}
}
@media (max-width: 850px) {
  .feature-grid, .team-list, .event-highlights {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .faq-list { flex-direction: column; gap: 15px;}
  .content-grid { flex-direction: column; gap: 14px;}
}
@media (max-width: 650px) {
  .card-container, .feature-grid, .team-list, .event-highlights { gap: 10px;}
  .section { margin-bottom: 36px; padding: 11px 2px; }
  .testimonial-card, .feature, .team-member, .event-highlights > div,
  .faq-item { min-width: 0; width: 99%; }
}

/* ====================================================================
   COOKIE CONSENT BANNER & MODAL
==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  width: 100vw;
  background: #ECE6D6;
  color: var(--color-primary);
  box-shadow: 0 -3px 21px rgba(60,60,26,0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 22px 24px 20px 24px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  transition: transform .33s cubic-bezier(.35,.9,.18,1), opacity .15s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 222px;
  margin-bottom: 10px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-btn, .cookie-btn-primary {
  font-family: inherit;
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 25px;
  min-width: 110px;
  border: none;
  cursor: pointer;
  margin-right: 3px;
  transition: background .17s, color .15s, box-shadow .16s;
  box-shadow: 0 1px 8px 0 rgba(210,185,160,0.08);
}
.cookie-btn-primary {
  background: var(--color-accent);
  color: var(--color-text-light);
  font-weight: 700;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #719F5A;
  color: #fff;
}
.cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-shade);
  color: var(--color-earth);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-48%) scale(0.96);
  z-index: 2200;
  min-width: 310px;
  max-width: 90vw;
  background: #fffbe8;
  border-radius: 22px;
  box-shadow: 0 6px 46px rgba(60,80,35,0.18);
  padding: 32px 22px 28px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .19s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-52%) scale(1);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px; top: 16px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.5em;
  cursor: pointer;
}
.cookie-modal h2 {
  margin: 0 0 12px 0;
  font-size: 1.3rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 18px; height: 18px;
}
.cookie-modal .cookie-category .cookie-category-label {
  font-size: 1.08em;
}
.cookie-modal .cookie-category .cookie-category-essential {
  color: #543e24; font-weight: bold;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 17px 5vw 13px 5vw; }
}

/* ====================================================================
   INTERACTIVE/EFFECTS
==================================================================== */
section, .section, .feature, .testimonial-card, .faq-item, .card, .team-member, .event-highlights > div {
  transition: box-shadow 0.19s, transform 0.17s;
}
.section:focus-within, .feature:focus-within, .card:focus-within, .testimonial-card:focus-within {
  box-shadow: var(--shadow-strong);
}
a, .cta-btn, .cookie-btn, .cookie-btn-primary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .12s, color .13s, box-shadow .13s, transform .13s;
}

/* Micro-animations for elements on hover */
.feature:hover, .card:hover, .team-member:hover, .event-highlights > div:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-strong);
}
.testimonial-card:hover {
  box-shadow: 0 5px 28px 0 rgba(135,175,110,0.13);
  transform: translateY(-2.5px) scale(1.012);
}

/* ====================================================================
   ACCESSIBILITY & FOCUS
==================================================================== */
a:focus, .cta-btn:focus, button:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
  z-index: 5;
}

/* ====================================================================
   FORM (if needed later)
==================================================================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  padding: 10px;
  border: 1.5px solid var(--color-shade);
  border-radius: 8px;
  margin-bottom: 16px;
  background: #faf9f6;
  color: var(--color-primary);
  width: 100%;
  box-sizing: border-box;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  background: #fff;
}
label {
  font-size: 1em;
  font-family: var(--font-body);
  color: var(--color-earth);
  margin-bottom: 4px;
}

/* ====================================================================
   CUSTOM CLASSES FROM HTML STRUCTURE
==================================================================== */
.no-form-box {
  background: #f3f3eb;
  border-radius: 16px;
  padding: 24px 15px;
  margin: 12px 0 10px 0;
  color: var(--color-text-dark);
  font-size: 1.05em;
  box-shadow: 0 1px 7px 0 rgba(190,175,144,0.08);
}

/* ====================================================================
   UTILITIES
==================================================================== */
.hide { display: none; }
.flex { display: flex !important; }
.align-center { align-items: center !important; justify-content: center !important;; }
.col { flex-direction: column !important; }
.w100 { width: 100%; }
.mt20 { margin-top: 20px; }

/* ====================================================================
   END
==================================================================== */
