/* ==================================================
   CSS RESET & NORMALIZATION
   ================================================== */
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;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #1a2119;
  background-color: #F5F5F5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
button, input, textarea, select {
  font: inherit;
  color: inherit;
  outline: none;
  background: none;
  border: none;
  box-shadow: none;
  appearance: none;
}
button {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
/* ====================
   CUSTOM PROPERTIES
   ==================== */
:root {
  --primary: #2F5D3F;
  --primary-dark: #264930;
  --secondary: #A6C48A;
  --accent: #F5F5F5;
  --gold: #D4AF37;
  --gold-light: #F6EFD3;
  --black: #161714;
  --white: #fff;

  --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --text-dark: #23251E;
  --text-light: #F7F6F2;

  --border-radius: 18px;
  --card-radius: 18px;
  --btn-radius: 32px;
  --shadow-soft: 0 4px 24px rgba(34, 36, 24, 0.09);
  --shadow-card: 0 6px 32px rgba(47, 93, 63, 0.070);
  --shadow-strong: 0 6px 32px rgba(212, 175, 55, 0.09);

  --spacing-xxs: 8px;
  --spacing-xs: 12px;
  --spacing-s: 16px;
  --spacing-m: 20px;
  --spacing-l: 32px;
  --spacing-xl: 40px;
  --spacing-section: 60px;
  --spacing-section-pad: 40px 20px;
}

/* ====================
   TYPOGRAPHY
   ==================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
}
p, li, blockquote {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  background: var(--accent);
  color: var(--text-dark);
  border-left: 4px solid var(--gold);
  padding: 18px 24px 10px 22px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0px;
}
ul, ol {
  padding-left: 0;
}
li {
  margin-bottom: 12px;
}
strong {
  color: var(--primary-dark);
  font-weight: 700;
}
em {
  color: var(--secondary);
  font-style: italic;
}
.text-section em {
  color: var(--gold);
}
/* ====================
   LAYOUT: CONTAINER & SECTIONS
   ==================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: var(--spacing-section);
  padding: var(--spacing-section-pad);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.content-wrapper:last-child {
  margin-bottom: 0;
}
.text-section {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ====================
   FLEX LAYOUTS
   ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  flex: 1 1 340px;
  min-width: 280px;
  transition: transform 0.16s, box-shadow 0.18s;
  border: 1.5px solid var(--gold-light);
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 36px rgba(47,93,63,0.13);
  border-color: var(--gold);
}
.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;
    gap: 20px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-soft);
  border: 1.25px solid var(--gold-light);
  position: relative;
}
.testimonial-card blockquote {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-left: 3px solid var(--gold);
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.icon-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
}

/* ====================
   HERO SECTION
   ==================== */
.hero {
  background: linear-gradient(97deg, var(--accent) 86%, var(--gold-light) 100%);
  padding: 64px 0 38px 0;
  border-bottom: 2px solid var(--gold-light);
  margin-bottom: var(--spacing-section);
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 2.2rem;
}
.hero p {
  color: #353b30;
  font-size: 1.2rem;
  margin-bottom: 24px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .hero {
    padding: 80px 0 54px 0;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 40px 0 20px 0;
  }
  .hero h1 {
    font-size: 1.35rem;
  }
}

/* ====================
   HEADER & NAVIGATION
   ==================== */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(34, 36, 24, 0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 77px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--primary-dark);
  letter-spacing: .01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}
header .cta.primary {
  margin-left: 36px;
}
header img {
  height: 38px;
  width: auto;
  margin-right: 24px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 2rem;
  margin-left: 24px;
  cursor: pointer;
  display: none;
  z-index: 100;
  transition: color 0.16s, background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--gold);
  background: rgba(235, 223, 153, 0.09);
  border-radius: 50%;
}
/* ========= MOBILE NAVIGATION ========== */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: linear-gradient(98deg, var(--accent) 92%, #FFF 100%);
  box-shadow: 0 2px 24px rgba(34,36,24,0.19);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.9,.03,.06,1.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  opacity: 0.98;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--primary-dark);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 26px 28px 12px 0;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
  padding: 8px 0 8px 3px;
  border-left: 3px solid transparent;
  transition: border-color 0.16s, color 0.16s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 768px) {
  .mobile-menu {
    padding-top: 32px;
  }
  .mobile-nav {
    margin: 0 16px;
    gap: 24px;
  }
}

/* ====================
   CTA BUTTONS
   ==================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .01em;
  padding: 14px 30px;
  min-width: 140px;
  color: var(--white);
  background: linear-gradient(96deg, var(--primary) 90%, var(--gold) 100%);
  border-radius: var(--btn-radius);
  box-shadow: 0 6px 26px rgba(47, 93, 63, 0.08);
  border: none;
  transition: background 0.19s, color 0.15s, box-shadow 0.19s, transform 0.15s;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.cta:hover {
  background: linear-gradient(92deg, var(--gold) 80%, var(--primary) 100%);
  color: var(--primary);
  box-shadow: 0 12px 26px rgba(212,175,55,0.14);
  transform: translateY(-2px) scale(1.03);
}
.cta.primary {
  background: linear-gradient(96deg, var(--gold) 90%, var(--primary) 100%);
  color: var(--primary-dark);
  border: 1.25px solid var(--gold);
  box-shadow: 0 4px 18px rgba(212,175,55,0.14);
}
.cta.primary:hover {
  background: linear-gradient(92deg, var(--primary) 80%, var(--gold-light) 100%);
  color: var(--white);
  border-color: var(--primary);
}

/* ====================
   COURSE LIST STYLES (kurse.html)
   ==================== */
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  border: 1.6px solid var(--gold-light);
  padding: 24px 20px 20px 28px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.16s, border-color 0.18s, transform 0.15s;
  position: relative;
}
.course-card h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.course-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 42px rgba(212,175,55,0.13);
  transform: scale(1.018);
}

/* ====================
   FORMS (Contact Form, Disabled Notice)
   ==================== */
.contact-form-disabled {
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: var(--border-radius);
  padding: 18px 18px 14px 16px;
  font-size: 1rem;
  margin-top: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--primary);
}
.contact-form-disabled a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}
.contact-form-disabled a:hover {
  color: var(--gold);
}

/* ====================
   FOOTER
   ==================== */
footer {
  width: 100%;
  background: var(--primary);
  padding: 36px 0 26px 0;
  box-shadow: 0 -1px 16px rgba(34,36,24,0.07);
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.04rem;
  padding-bottom: 1.5px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.13s, color 0.13s;
}
.footer-nav a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-branding img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(212,175,55,0.10));
}
.footer-branding span {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 1rem;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ====================
   ICONS
   ==================== */
.icon-row img {
  height: 54px;
  width: 54px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(166,196,138,0.11);
  padding: 7px;
  border: 2px solid var(--gold-light);
  transition: box-shadow 0.13s;
}
.icon-row img:hover {
  box-shadow: 0 8px 22px rgba(212,175,55,0.11);
  border-color: var(--gold);
}

/* ========================
   COOKIE CONSENT BANNER & MODAL
   ======================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -6px 24px rgba(47,93,63,0.075);
  border-top: 2px solid var(--gold-light);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  z-index: 12000;
  padding: 20px 32px 18px 32px;
  font-size: 1rem;
  transition: transform 0.45s cubic-bezier(.8,.01,.36,1.1);
  transform: translateY(100%);
}
#cookie-banner.active {
  transform: translateY(0);
}
#cookie-banner p {
  margin-bottom: 0;
  color: var(--primary-dark);
  font-family: var(--font-body);
  max-width: 520px;
}
#cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 24px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 24px;
  border: 1px solid var(--gold-light);
  background: var(--accent);
  color: var(--primary-dark);
  transition: background 0.18s, border-color 0.18s, color 0.16s;
  box-shadow: 0 2px 10px rgba(166,196,138,.03);
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(212,175,55,0.08);
}
.cookie-btn.accept:hover {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: #e0e0e0;
  color: var(--primary-dark);
  border-color: var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    padding: 18px 10px 16px 10px;
    align-items: flex-start;
    gap: 12px;
  }
  #cookie-banner .cookie-btns {
    flex-direction: row;
    gap: 9px;
    margin-left: 0;
  }
}

#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41,48,23,0.39);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 13000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.27s cubic-bezier(.81,.07,.29,1.01);
}
#cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 14px 62px rgba(47, 93, 63, 0.12);
  padding: 36px 32px 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  font-family: var(--font-display);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 10px 0 10px 0;
  font-size: 1rem;
}
.cookie-category label {
  color: var(--primary-dark);
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E8EBE4;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--secondary);
  border: 1.5px solid var(--primary);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 28px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover {
  color: var(--gold);
}
@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 26px 10px 18px 10px;
    min-width: 95vw;
    max-width: 99vw;
  }
  .cookie-modal-actions {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    width: 100%;
  }
}

/* ====================
   MISC
   ==================== */
a {
  transition: color 0.17s, border-color 0.12s;
}
a:focus {
  outline: 2px dashed var(--gold);
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #909984; }
::-moz-placeholder          { color: #909984; }
:-ms-input-placeholder      { color: #909984; }
::placeholder              { color: #909984; }

/* ====================
   RESPONSIVE ADAPTATION
   ==================== */
@media (max-width: 1200px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-branding span {
    font-size: 0.95rem;
  }
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .container {
    max-width: 95vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 1.45rem;
  }
  h2, .h2 {
    font-size: 1.08rem;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 530px) {
  .card, .course-card {
    padding: 16px 6px 14px 14px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 13px 7px 8px 7px;
  }
  .cookie-modal-content {
    min-width: 98vw;
    max-width: 99vw;
  }
}

/* ====================
   LUXURY-PREMIUM MICRO-DETAILS
   ==================== */
.section h2, h2 {
  position: relative;
  padding-left: 16px;
}
.section h2:before, h2:before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 28px;
  background: var(--gold);
  border-radius: 4px;
  display: block;
}
@media (max-width: 530px) {
  .section h2:before, h2:before {
    height: 18px;
    width: 4px;
    top: 7px;
  }
  .section h2, h2 {
    padding-left: 8px;
  }
}

.cta::after {
  content: '';
  display: block;
  position: absolute;
  left: 18%; right: 18%; bottom: 8px;
  height: 3.5px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.14;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cta:hover::after { opacity: 0.23; }

.card::before {
  content: '';
  position: absolute;
  top: -9px; right: 22px;
  width: 30px; height: 6px;
  background: var(--gold-light);
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(212,175,55,0.14);
  opacity: 0.9;
  z-index: 2;
  display: block;
}
.card:hover::before {
  background: var(--gold);
}

.testimonial-card {
  border-left: 6px solid var(--gold-light);
}
.testimonial-card:hover {
  border-left: 6px solid var(--gold);
  box-shadow: 0 12px 38px rgba(212,175,55,0.09);
}

/* =============
   UTILITIES
   ============= */
.mb-0 {margin-bottom:0 !important;}
.mb-20 {margin-bottom:20px !important;}
.mb-40 {margin-bottom:40px !important;}
.mt-24 {margin-top:24px !important;}
.mt-40 {margin-top:40px !important;}

/* End of style.css for GrünRaum Berlin – Luxury Premium Urban Gardening Brand */
