/*
Theme Name: Grüne Kaffeebohne
Theme URI: https://gruene-kaffeebohne.de
Author: Elias Faqirzada
Description: Custom Theme für die grüne Kaffeebohne, Frankfurt
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: gruene-kaffeebohne
*/

/* =============================================
   BRAND COLORS & VARIABLES
   ============================================= */
:root {
  --color-primary: #79936D;       /* Sage / Salbeigrün */
  --color-background: #F5F1E6;    /* Cream / Off-White */
  --color-text: #333333;          /* Charcoal */
  --color-surface: #FFFFFF;       /* White */
  --color-primary-border: rgba(121, 147, 109, 0.1);
  --radius: 12px;
  --font-main: 'Inter', 'Poppins', sans-serif;
}

/* =============================================
   BASE STYLES
   ============================================= */
body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary,
.elementor-button.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-radius: var(--radius);
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  opacity: 0.85;
  color: #FFFFFF;
}

.btn-outline,
.elementor-button.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-radius: var(--radius);
  border: 2px solid var(--color-primary);
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* =============================================
   CARDS
   ============================================= */
.card,
.elementor-widget-wrap .card {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-primary-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  transition: padding 0.3s ease;
}

/* WordPress Admin Bar Offset */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* Beim Scrollen: Padding reduzieren */
.site-header.is-scrolled {
  padding: 10px 40px;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-header__logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Nav Pill */
.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: background-color 0.3s ease;
}

.site-header.is-scrolled .site-nav__list {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: var(--color-primary-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.site-nav__list li a {
  display: block;
  padding: 7px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.site-header.is-scrolled .site-nav__list li a {
  color: var(--color-text);
}

.site-nav__list li a:hover,
.site-nav__list li.current-menu-item > a {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.site-header.is-scrolled .site-nav__list li a:hover,
.site-header.is-scrolled .site-nav__list li.current-menu-item > a {
  background-color: rgba(121, 147, 109, 0.12);
  color: var(--color-primary);
}

/* CTA Button */
.site-header__cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-primary);
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-header__cta:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* Burger (Mobile) */
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .site-header__burger {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    position: static;
    transform: none;
    display: none;
    width: 100%;
    margin-top: 12px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 8px;
    gap: 2px;
  }

  .site-nav__list li a {
    border-radius: 12px;
    padding: 10px 16px;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }
}

/* =============================================
   GLOBAL CONTENT WIDTH
   ============================================= */

/* Elementor-Container auf 1200px begrenzen */
.elementor-section > .elementor-container,
.e-con-inner,
.elementor-section .elementor-container {
  max-width: 1200px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Vollbreite-Sektionen (z.B. Hero) bleiben volle Breite,
   aber der Inhalt darin wird eingerückt */
.elementor-section.elementor-section-full_width > .elementor-container {
  max-width: 1200px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */

/* Elementor Section Backgrounds */
.elementor-section.bg-cream {
  background-color: var(--color-background) !important;
}

.elementor-section.bg-white {
  background-color: var(--color-surface) !important;
}

.elementor-section.bg-sage {
  background-color: var(--color-primary) !important;
}

/* Quick Info Bar */
.quick-info-bar {
  background-color: var(--color-surface);
  padding: 16px 0;
  border-top: 1px solid var(--color-primary-border);
  border-bottom: 1px solid var(--color-primary-border);
}

.quick-info-bar .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--color-text);
}

/* =============================================
   HIGHLIGHTS (Startseite)
   ============================================= */
.hl-section {
  background-color: var(--color-background);
  padding: 80px 40px;
}

.hl-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hl-heading {
  text-align: center;
  margin-bottom: 48px;
}

.hl-heading h2 {
  margin: 0;
}

.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hl-card {
  background-color: var(--color-surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-primary-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(121,147,109,0.12);
}

.hl-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.hl-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hl-card:hover .hl-card__image img {
  transform: scale(1.04);
}

.hl-card__body {
  padding: 28px 32px 32px;
}

.hl-card__body h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.hl-card__body p {
  color: rgba(51,51,51,0.7);
  line-height: 1.65;
  margin: 0 0 24px;
  font-size: 0.97rem;
}

.hl-card__btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hl-card__btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hl-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   HIGHLIGHT CARDS (hlx)
   ============================================= */

/* Sections: Außen-Padding einheitlich */
[data-id="hlx-head"],
[data-id="hlx-cards"] {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Container: gleiche Höhe */
[data-id="hlx-cards"] > .elementor-container {
  align-items: stretch;
}

/* Gap via Column-Margin (zuverlässiger als flex gap) */
[data-id="hlx-c1"] {
  margin-right: 16px !important;
  margin-left: 0 !important;
}
[data-id="hlx-c2"] {
  margin-left: 16px !important;
  margin-right: 0 !important;
}

/* Karte: overflow hidden → Bild respektiert border-radius */
[data-id="hlx-c1"],
[data-id="hlx-c2"] {
  overflow: hidden !important;
}

/* Widget-Wrap als Flex-Column → Button immer unten */
[data-id="hlx-c1"] > .elementor-column-wrap,
[data-id="hlx-c2"] > .elementor-column-wrap,
[data-id="hlx-c1"] > .elementor-column-wrap > .elementor-widget-wrap,
[data-id="hlx-c2"] > .elementor-column-wrap > .elementor-widget-wrap {
  display: flex !important;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

/* Bild: randlos, feste Höhe */
[data-id="hlx-c1-img"],
[data-id="hlx-c2-img"] {
  padding: 0 !important;
  margin: 0 !important;
}
[data-id="hlx-c1-img"] .elementor-widget-container,
[data-id="hlx-c2-img"] .elementor-widget-container {
  line-height: 0;
}
[data-id="hlx-c1-img"] img,
[data-id="hlx-c2-img"] img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Button ans untere Ende */
[data-id="hlx-c1-btn"],
[data-id="hlx-c2-btn"] {
  margin-top: auto !important;
}

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  [data-id="hlx-head"],
  [data-id="hlx-cards"] {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  [data-id="hlx-cards"] > .elementor-container {
    flex-direction: column !important;
    align-items: stretch;
  }
  [data-id="hlx-c1"],
  [data-id="hlx-c2"] {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  [data-id="hlx-c1"] {
    margin-bottom: 24px !important;
  }
  [data-id="hlx-c1-img"] img,
  [data-id="hlx-c2-img"] img {
    height: 240px;
  }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
  [data-id="hlx-head"],
  [data-id="hlx-cards"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  [data-id="hlx-head-h"] .elementor-heading-title {
    font-size: 26px !important;
  }
  [data-id="hlx-c1-img"] img,
  [data-id="hlx-c2-img"] img {
    height: 200px;
  }
}

/* =============================================
   KONTAKT
   ============================================= */
.kon-section {
  background-color: var(--color-background);
  padding: 96px 40px;
}

.kon-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.kon-text h2 {
  margin: 0 0 24px;
  line-height: 1.2;
}

.kon-text > p {
  color: rgba(51,51,51,0.72);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Contact list */
.kon-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kon-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kon-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kon-list__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.kon-list__value {
  font-size: 0.97rem;
  color: var(--color-text);
  font-weight: 500;
}

a.kon-list__value:hover {
  color: var(--color-primary);
}

/* Image rechts */
.kon-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.kon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kon-image__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}

/* Karte */
.kon-map-section {
  background-color: var(--color-background);
  padding: 36px 40px 96px;
}

.kon-map-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-background);
}

.kon-map-embed {
  height: 420px;
}

.kon-map-embed iframe {
  border-radius: 0;
}

.kon-map-info {
  padding: 40px 40px 40px 0;
}

.kon-map-info h3 {
  margin: 0 0 12px;
}

.kon-map-info p {
  color: rgba(51,51,51,0.72);
  margin-bottom: 8px;
  line-height: 1.6;
}

.kon-map-hint {
  font-size: 0.88rem !important;
  margin-bottom: 28px !important;
}

@media (max-width: 900px) {
  .kon-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kon-map-inner {
    grid-template-columns: 1fr;
  }

  .kon-map-info {
    padding: 32px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--color-text);
  color: #FFFFFF;
  padding: 56px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Headings */
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 20px;
}

/* Site Map Nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #FFFFFF;
}

/* Newsletter */
.footer-newsletter-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter-input {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer-newsletter-input:focus {
  border-color: var(--color-primary);
}

.footer-newsletter-btn {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  align-self: flex-start;
}

.footer-newsletter-btn:hover {
  opacity: 0.85;
}

/* Social Icons */
.footer-col--social {
  display: flex;
  flex-direction: column;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  opacity: 1;
}

/* Brand Badge */
.footer-brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.footer-brand-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* =============================================
   SHARED LABEL
   ============================================= */
.ou-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 12px;
}

/* =============================================
   ÜBER UNS — HERO
   ============================================= */
.ou-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.ou-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.ou-hero:hover .ou-hero__bg {
  transform: scale(1);
}

.ou-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}

.ou-hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.ou-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.ou-hero__headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* =============================================
   ÜBER UNS — STORY
   ============================================= */
.ou-story {
  background-color: var(--color-background);
  padding: 96px 40px;
}

.ou-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ou-story__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.ou-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ou-story__image:hover img {
  transform: scale(1.03);
}

.ou-story__text h2 {
  margin: 0 0 28px;
  line-height: 1.2;
}

.ou-story__text p {
  color: rgba(51,51,51,0.75);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.ou-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 30px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.ou-btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* =============================================
   ÜBER UNS — VALUES CARDS
   ============================================= */
.ou-values {
  background-color: var(--color-surface);
  padding: 96px 40px;
}

.ou-values__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ou-values__header {
  text-align: center;
  margin-bottom: 56px;
}

.ou-values__header h2 {
  margin: 0;
}

.ou-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ou-card {
  background-color: var(--color-background);
  border: 1px solid var(--color-primary-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ou-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(121, 147, 109, 0.12);
}

.ou-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.ou-card h3 {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: var(--color-text);
}

.ou-card p {
  font-size: 0.93rem;
  color: rgba(51,51,51,0.68);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   ÜBER UNS — ATMOSPHÄRE
   ============================================= */
.ou-atmosphere {
  padding: 0 40px 96px;
  background-color: var(--color-surface);
}

.ou-atmosphere__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
}

.ou-atmosphere__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ou-atmosphere__quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.38);
}

.ou-atmosphere__quote blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  padding: 0 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .ou-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ou-values__grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--color-text);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p {
  line-height: 1.7;
  color: var(--color-text);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .quick-info-bar {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- System-Update: Abstände für Highlight Cards --- */
.kaffee-card {
    margin: 20px !important;
    display: block;
    transition: transform 0.3s ease-in-out;
}

/* Leichter Abstand zwischen den beiden Highlight-Cards auf der Startseite */
@media (min-width: 768px) {
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container > .elementor-column:first-child > .elementor-element-populated {
    padding-right: 12px !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container > .elementor-column:last-child > .elementor-element-populated {
    padding-left: 12px !important;
  }
}

/* =============================================
   STARTSEITE RESPONSIVE FIXES
   ============================================= */

/* Tablet: Highlights bleiben nebeneinander, About wird gestapelt */
@media (min-width: 768px) and (max-width: 1024px) {
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 24px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container > .elementor-column {
    display: flex !important;
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px) !important;
    width: 50% !important;
    min-width: 0 !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container > .elementor-column > .elementor-widget-wrap,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container > .elementor-column > .elementor-element-populated {
    width: 100% !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-img img {
    height: 260px;
    object-fit: cover;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-content {
    padding: 28px 28px 32px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-title {
    font-size: 2rem !important;
    line-height: 1.15;
    margin-bottom: 16px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-description {
    font-size: 1rem !important;
    line-height: 1.65;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7 > .elementor-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7c1,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7c2 {
    width: 100% !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7img img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7h .elementor-heading-title {
    font-size: clamp(2.5rem, 5vw, 3.4rem) !important;
    line-height: 1.02;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7t {
    max-width: 100%;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7t p {
    font-size: 1.05rem !important;
    line-height: 1.75;
    max-width: 42rem;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7b .elementor-button {
    min-width: 260px;
  }
}

/* Mobile: Alles sauber einspaltig und mit kleineren Abständen */
@media (max-width: 767px) {
  .elementor-section > .elementor-container,
  .e-con-inner,
  .elementor-section .elementor-container,
  .elementor-section.elementor-section-full_width > .elementor-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1 {
    min-height: 100svh;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1 .elementor-container,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1c1 > .elementor-widget-wrap {
    justify-content: center;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1t1 .elementor-heading-title {
    font-size: clamp(3rem, 15vw, 4.6rem) !important;
    line-height: 0.96;
    letter-spacing: -0.04em;
    max-width: 100%;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1t2 .elementor-heading-title {
    font-size: 1.15rem !important;
    line-height: 1.2;
    max-width: 14ch;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s1b1 .elementor-button {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2 > .elementor-container,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 > .elementor-container,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7 > .elementor-container,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9 > .elementor-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2c1,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2c2,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2c3,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-46d19a7,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-5efbe3f,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7c1,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7c2,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9c1,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9c2 {
    width: 100% !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2 .elementor-icon-box-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2 .elementor-icon-box-title,
  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2 .elementor-icon-box-title span {
    font-size: 1.15rem !important;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s2 .elementor-icon-box-description {
    font-size: 1rem !important;
    line-height: 1.55;
    max-width: 18rem;
    margin: 0 auto;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-hl-h-widget .elementor-heading-title {
    font-size: 2.4rem !important;
    line-height: 1.05;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card {
    width: 100%;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-wrapper {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-content {
    padding: 24px 22px 28px;
    text-align: center;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-title {
    font-size: 1.9rem !important;
    line-height: 1.1;
    margin-bottom: 14px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-81d7f90 .highlight-card .elementor-image-box-description {
    font-size: 1rem !important;
    line-height: 1.65;
    margin: 0;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7img {
    order: 1;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7c2 {
    order: 2;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7img img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7l .elementor-heading-title {
    font-size: 1rem !important;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7h .elementor-heading-title {
    font-size: 2.4rem !important;
    line-height: 1.04;
    margin-bottom: 10px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7t p {
    font-size: 1rem !important;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s7b .elementor-button {
    width: 100%;
    justify-content: center;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s8h .elementor-heading-title {
    font-size: 2.2rem !important;
    line-height: 1.08;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9map iframe {
    min-height: 280px;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9h .elementor-heading-title {
    font-size: 1.8rem !important;
    line-height: 1.15;
  }

  .home.page-id-10 .elementor-10 .elementor-element.elementor-element-s9t p {
    font-size: 1rem !important;
    line-height: 1.65;
  }
}
