/* =========================================
   BeeDigital Dark Template (Joomla 6)
   File: css/template.css
  
========================================= */
.itemid-106 p.lead, .itemid-107 p.lead,
.itemid-108 p.lead, .itemid-116 p.lead {display:none;}

/* =========================
   CSS VARS
   ========================= */
:root{
  --bg:#0b0f14;
  --bg2:#0f1620;

  --panel:#121a25;
  --panel2:#0f1722;

  --text:#e7edf6;
  --muted:#a8b3c4;

  --line:rgba(231,237,246,0.10);
  --line2:rgba(231,237,246,0.16);

  --brand:#6ee7ff;
  --brand2:#a78bfa;

  --shadow:0 12px 30px rgba(0,0,0,0.45);
  --shadow2:0 25px 60px rgba(0,0,0,0.45);

  --radius:18px;
  --radius2:26px;

  --container:1180px;
}

/* =========================
   BASE
   ========================= */
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(110,231,255,0.10), transparent 60%),
    radial-gradient(1200px 600px at 80% 10%, rgba(167,139,250,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

img{ max-width:100%; height:auto; display:block; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0;
}

.item-page{ padding:8px 0 0 0; }

#mod-custom111,
#mod-custom112,
#mod-custom113,
.moduletable,
.site-footer,
.content-wrap,
#mod-custom117
{
  padding:0 18px;
  margin:2rem 0 0 0;
}
#mod-custom117{
  
  margin:6rem 0 3rem 0;
}
/* =========================
   ACCESSIBILITY
   ========================= */
.sr-only,
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.sr-only:focus,
.skip-link:focus{
  left:18px;
  top:18px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:rgba(18,26,37,0.85);
  border:1px solid var(--line2);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:9999;
}

/* =========================
   TYPO
   ========================= */
h1,h2,h3{ letter-spacing:-0.015em; }
h2{
  font-size:clamp(22px, 2.8vw, 30px);
  margin:0 0 10px;
}
h3{
  font-size:18px;
  margin:0 0 8px;
}
p{ margin:0 0 12px; color:var(--text); }
.muted{ color:var(--muted); }

.kicker{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--brand);
  margin:0 0 10px;
}
.lead{
  font-size:18px;
  color:rgba(231,237,246,0.78);
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(14px);
  background:rgba(11,15,20,0.70);
  border-bottom:1px solid var(--line);
  overflow:visible; /* wichtig */
}

.header-inner{
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:relative; /* wichtig fÃƒÂ¼r Dropdown */
  overflow:visible;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.brand__logo img{
  display:block;
  width:90px;
  height:90px;
  object-fit:contain;
  border-radius:10px;
  filter:drop-shadow(0 6px 14px rgba(0,0,0,0.35));
}

.brand__name{ font-weight:700; line-height:1.1; }
.brand__tag{ font-size:12px; color:rgba(231,237,246,0.65); }

/* =========================
   BUTTONS
   ========================= */
.btn, .button, button, input[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(231,237,246,0.16);
  background:rgba(231,237,246,0.06);
  color:var(--text);
  cursor:pointer;
  text-decoration:none;
  transition:transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  box-shadow:0 8px 18px rgba(0,0,0,0.25);
}
.btn:hover, .button:hover, button:hover, input[type="submit"]:hover{
  background:rgba(231,237,246,0.10);
  border-color:rgba(231,237,246,0.22);
  transform:translateY(-1px);
  text-decoration:none;
}
.btn:active, .button:active, button:active, input[type="submit"]:active{
  transform:translateY(0);
  box-shadow:0 6px 12px rgba(0,0,0,0.22);
}

.btn--primary{
  background:linear-gradient(135deg, rgba(110,231,255,0.26), rgba(167,139,250,0.20));
  border-color:rgba(110,231,255,0.28);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.35),
    0 0 0 1px rgba(110,231,255,0.10) inset;
}
.btn--primary:hover{
  background:linear-gradient(135deg, rgba(110,231,255,0.34), rgba(167,139,250,0.26));
  border-color:rgba(110,231,255,0.40);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.40),
    0 0 0 1px rgba(110,231,255,0.14) inset;
}

.btn--ghost{
  background:rgba(11,15,20,0.15);
  border-color:rgba(231,237,246,0.22);
}
.btn--ghost:hover{
  background:rgba(231,237,246,0.08);
}

/* =========================
   NAV (Dropdown / Mobile)
   ========================= */
.nav-toggle{
  display:inline-flex !important;
  z-index:1300;
}

/* wichtig: nur den NAV-CONTAINER steuern, nicht .nav global */
.site-header nav#site-nav{
  display:none;
  position:absolute;
  top:calc(100% + 10px);
  right:18px;

  flex-direction:column;
  gap:10px;

  min-width:min(320px, calc(100vw - 36px));
  padding:12px;

  border-radius:16px;
  background:rgba(18,26,37,0.92);
  border:1px solid var(--line2);
  box-shadow:var(--shadow2);
  backdrop-filter:blur(12px);

  z-index:1200;
}

.site-header nav#site-nav.is-open{ display:flex; }

/* UL vom Joomla MenÃƒÂ¼ (hÃƒÂ¤ufig class="nav") darf NICHT versteckt werden */
.site-header nav#site-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.site-header nav#site-nav li{ margin:0; }

.site-header nav#site-nav a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
}
.site-header nav#site-nav a:hover{
  background:rgba(231,237,246,0.08);
  text-decoration:none;
}

/* =========================
   SECTIONS / SPACING
   ========================= */
.section{ padding:72px 0; }
.section--tight{ padding:52px 0; }

/* =========================
   HERO (Startseite)
   ========================= */
.hero{
  position:relative;
  overflow:hidden;
  padding:0;
  margin:0;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(110,231,255,0.16), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(167,139,250,0.14), transparent 55%);
}

.hero .container{
  background:none !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  border-radius:22px;
}

.hero-inner{ position:relative; z-index:1; }

.hero--stacked{
  display:flex;
  flex-direction:column;
  gap:clamp(20px, 3vw, 34px);
}

.hero-media--top{
  width:100%;
  overflow:hidden;
  box-shadow:var(--shadow2);
}

.hero-media--top img{
  width:100%;
  height:clamp(380px, 45vw, 580px);
  object-fit:cover;
  object-position:50% 40%;
}

.hero-content{
  max-width:900px;
  padding-bottom:6px;
}

.hero-content h1{
  margin:0 0 12px 0;
  font-size:clamp(30px, 4.2vw, 50px);
  line-height:1.06;
  letter-spacing:-0.02em;
  max-width:20ch;
}

.hero-content .lead{
  margin:0 0 18px 0;
  max-width:70ch;
}

.hero-bullets{
  margin:0 0 18px 0;
  padding-left:1.1rem;
}
.hero-bullets li{
  margin:8px 0;
  color:rgba(231,237,246,0.82);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width:768px){
  .hero-media--top img{ height:260px; }
  .hero-content h1{ max-width:none; }
}

/* =========================
   MAIN LAYOUT + CARDS
   ========================= */
.main{
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(110,231,255,0.16), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(167,139,250,0.14), transparent 55%);
}

.content-wrap{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}

@media (min-width:980px){
  .content-wrap{ align-items:start; }
}

.article-area{ min-width:0; }
.sidebar{ position:relative; }

.content-area,
.mod-card,
.card,
.module-card{
  background:rgba(18,26,37,0.55);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

/* Joomla Messages */
.alert, .system-message, .joomla-message{
  border-radius:var(--radius);
  border:1px solid var(--line2);
  background:rgba(18,26,37,0.60);
  padding:12px 14px;
  margin:12px 0;
}

/* Forms */
input, textarea, select{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(231,237,246,0.14);
  background:rgba(18,26,37,0.55);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(110,231,255,0.35);
  box-shadow:0 0 0 4px rgba(110,231,255,0.10);
}

/* =========================
   SERVICES (2x2 Grid)
   ========================= */
.services{ margin-top:0; }
.services-head{
  max-width:760px;
  margin-bottom:2.2rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:2rem;
  align-items:stretch;
}

.service-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,0.18);
  box-shadow:var(--shadow2);
}

.service-icon{
  width:100%;
  aspect-ratio:1 / 1;
  border-radius:16px;
  overflow:hidden;
  margin-bottom:1rem;
  background:none;
  border:0;
  box-shadow:0 12px 26px rgba(0,0,0,0.30);
}
.service-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.service-card p{ color:rgba(255,255,255,0.78); }

.service-list{
  margin:0 0 1.3rem;
  padding-left:1.1rem;
  color:rgba(255,255,255,0.75);
}
.service-list li{ margin-bottom:.4rem; }

.service-link{
  margin-top:auto;
  font-weight:700;
  text-decoration:none;
  color:rgba(231,237,246,0.92);
  opacity:.95;
}
.service-link:hover{ opacity:.78; }

@media (max-width:980px){
  .services-grid{ gap:1.4rem; }
}
@media (max-width:700px){
  .services-grid{ grid-template-columns:1fr; }
}

/* =========================
   ABOUT + PODCAST
   ========================= */
.about-podcast{ margin-top:0; }
.about{ padding-top:8px; padding-bottom:22px; }
.podcast{ padding-top:34px; }

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}
.about-media img{
  width:100%;
  border-radius:18px;
  box-shadow:var(--shadow2);
}
.about-bullets{
  margin:1.2rem 0 1.4rem;
  padding-left:1.1rem;
}
.about-bullets li{
  margin-bottom:.4rem;
  color:rgba(255,255,255,.82);
}
.about-actions{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.podcast-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:3rem;
  align-items:center;
}
.podcast-media img{
  width:100%;
  border-radius:18px;
  box-shadow:var(--shadow2);
}
.podcast-actions{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

@media (max-width:900px){
  .about-grid,
  .podcast-grid{ grid-template-columns:1fr; }
  .about-media,
  .podcast-media{ order:-1; }
}

/* =========================
   PODCAST EPISODEN
   ========================= */
.podcast-episodes{
  margin-top:2.6rem;
  margin-bottom:56px;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2rem;
}

.episode-card--with-image{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.episode-card--with-image:hover{
  transform:translateY(-6px);
  border-color:rgba(255,255,255,0.18);
  box-shadow:var(--shadow2);
}

.episode-media img{
  width:100%;
  object-fit:cover;
}
.episode-content{ padding:20px 22px 22px; }
.episode-kicker{
  font-size:.75rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
  margin:0 0 .45rem;
}
.episode-content h3{ margin:0 0 .45rem; }
.episode-guest{
  margin:0 0 .65rem;
  color:rgba(255,255,255,.86);
}
.episode-text{
  margin:0 0 1.05rem;
  color:rgba(255,255,255,.76);
}
.episode-link{
  font-weight:800;
  text-decoration:none;
}
.episode-link:hover{ opacity:.78; }

@media (max-width:900px){
  .podcast-episodes{ grid-template-columns:1fr; }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:30px 18px;
  color:var(--muted);
  background:#000;
}
.footer-grid{
  display:grid;
  gap:14px;
}
@media (min-width:860px){
  .footer-grid{ grid-template-columns:1.3fr 1fr 1fr; }
}
.footer-bottom{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:14px;
}

/* =========================
   CASE / STUDY
   ========================= */
.case{
  margin:2rem auto;
  padding:0;
}

.case__excerpt{
  font-size:1.15rem;
  line-height:1.6;
  opacity:0.9;
  margin:0 0 1.75rem;
}

.case__facts{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:16px;
  padding:1.25rem;
  margin:0 0 2rem;
}
.case__facts h2{
  font-size:1.1rem;
  margin:0 0 .75rem;
}

.case-facts{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:.6rem 1.25rem;
}
.case-facts li{ margin:0; opacity:.95; }

.case__section{ margin:0 0 2rem; }
.case__section h2{
  margin:0 0 .75rem;
  font-size:1.35rem;
}
.case__section p,
.case__section li{ line-height:1.7; }

.case-kpis{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:.75rem;
}
.case-kpis li{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:.9rem 1rem;
}

/* CTA */
.case__cta{
  margin-top:2.5rem;
  padding:1.5rem;
  border-radius:18px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.10);
}

/* =========================
   ARTICLE HERO (Detailseite) Ã¢â‚¬â€œ NATÃƒÅ“RLICHE HÃƒâ€“HE
   (und NICHT auf Startseite)
   ========================= */
.article-hero-breakout{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  position:relative;
  height:auto;
  overflow:visible;
}

.article-hero{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  height:auto;
  overflow:visible;
  box-shadow:var(--shadow2);
  background:transparent;
  position:relative;
}

.article-hero__img{
  display:block;
  width:100%;
  height:auto;
  max-height:none;
  object-fit:unset;
  margin:0 0 2rem 0;
}

.article-hero__overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* =========================
   GALLERY (Case / Artikel)
   ========================= */
.case__gallery{ margin-top:26px; }
.gallery{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
@media (max-width:900px){
  .gallery{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:520px){
  .gallery{ grid-template-columns:1fr; }
}

.gallery__item{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}
.gallery__item a{
  display:block;
  text-decoration:none;
}
.gallery__item img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
  transition:transform 180ms ease, opacity 180ms ease;
}
.gallery__item a:hover img{
  transform:scale(1.03);
  opacity:.95;
}

/* =========================
   LIGHTBOX (bereinigt + Portrait Fix)
   ========================= */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.lightbox.is-open{
  display:grid;
  place-items:center;
}

.lightbox__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.72);
  backdrop-filter:blur(8px);
}

.lightbox__panel{
  position:relative;
  width:min(1100px, 92vw);
  max-height:90vh;
  border-radius:22px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(11,13,18,0.92);
  box-shadow:0 30px 90px rgba(0,0,0,0.55);
  overflow:visible; /* wichtig gegen Abschneiden */
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox__figure{
  margin:0;
  width:100%;
  max-height:90vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px;
}

.lightbox__img{
  width:auto;
  height:auto;
  max-width:92vw;
  max-height:calc(90vh - 80px);
  object-fit:contain; /* Portrait Fix */
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.02);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}

.lightbox__caption{
  max-width:92vw;
  color:#b7bac4;
  font-size:.95rem;
  text-align:center;
}

.lightbox__close{
  position:absolute;
  top:10px;
  right:10px;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background:rgba(255,255,255,0.06);
  color:#e8e8ea;
  cursor:pointer;
  z-index:5;
  pointer-events:auto;
}

.lightbox__nav{
  width:46px;
  height:46px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}
@media (max-width:700px){
  .lightbox__nav{ display:none; }
}

/* Scroll lock helper */
body.is-locked{ overflow:hidden; }

/* =========================
   Startseite: News/Newsflash (2x2)
   ========================= */
.home-news{ margin-top:26px; }

.home-news__title{
  margin:0 0 14px;
  font-size:clamp(20px, 2.4vw, 28px);
}

.home-news__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}
@media (max-width:900px){
  .home-news__grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:620px){
  .home-news__grid{ grid-template-columns:1fr; }
}

.home-news__card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(231,237,246,0.10);
  background:rgba(18,26,37,0.55);
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-news__card:hover{
  transform:translateY(-4px);
  border-color:rgba(231,237,246,0.18);
  box-shadow:var(--shadow2);
}

.home-news__link{ display:block; text-decoration:none; }

.home-news__media{
  position:relative;
  aspect-ratio:16 / 9;
  overflow:hidden;
}
.home-news__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-news__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.00) 45%);
  z-index:1;
  pointer-events:none;
}

.home-news__badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#fff;
  background:rgba(11,15,20,0.72);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(6px);
  pointer-events:none;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
}

.home-news__badge.cat-11{ background:linear-gradient(135deg, #ef4444, #fb7185); }
.home-news__badge.cat-8{  background:linear-gradient(135deg, #3b82f6, #60a5fa); }
.home-news__badge.cat-9{  background:linear-gradient(135deg, #10b981, #34d399); }
.home-news__badge.cat-10{ background:linear-gradient(135deg, #f59e0b, #fbbf24); }

.home-news__body{ padding:14px 14px 16px; }
.home-news__meta{
  margin:0 0 6px;
  font-size:.85rem;
  color:rgba(231,237,246,0.65);
}
.home-news__headline{
  margin:0 0 8px;
  font-size:1.05rem;
  line-height:1.25;
}
.home-news__text{
  margin:0 0 12px;
  color:rgba(231,237,246,0.78);
  line-height:1.55;
}
.home-news__cta{
  font-weight:800;
  color:rgba(231,237,246,0.92);
  opacity:.95;
}
.home-news__card:hover .home-news__cta{ opacity:.8; }

/* =========================
   Responsive for Case facts / KPIs
   ========================= */
@media (max-width:820px){
  .case-facts{ grid-template-columns:1fr; }
  .case-kpis{ grid-template-columns:1fr; }
}/* =========================================
   BeeDigital MenÃƒÂ¼ Ã¢â‚¬â€œ "Nice" Dropdown (Mobile)
   ganz ans Ende der template.css
========================================= */

/* Header muss Dropdown zeigen dÃƒÂ¼rfen */
.site-header,
.header-inner{
  overflow: visible !important;
}

/* Toggle Button schÃƒÂ¶ner */
.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(231,237,246,0.18);
  background: rgba(231,237,246,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  cursor: pointer;
  line-height: 1;
  user-select: none;
}
.nav-toggle:hover{
  background: rgba(231,237,246,0.10);
  border-color: rgba(231,237,246,0.26);
}
.nav-toggle:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(110,231,255,0.16), 0 10px 24px rgba(0,0,0,0.28);
}

/* =========================================
   Dropdown Container (NUR dein site-nav)
========================================= */
nav#site-nav.nav{
  position: absolute;
  top: calc(100% + 12px);
  right: 18px;

  width: min(360px, calc(100vw - 36px));
  padding: 10px;

  border-radius: 18px;
  background: rgba(18,26,37,0.92);
  border: 1px solid rgba(231,237,246,0.16);
  box-shadow: 0 26px 70px rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);

  /* Hidden state */
  display: block;               /* wichtig: damit Animation mÃƒÂ¶glich ist */
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  visibility: hidden;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1400;
}

/* Open state */
nav#site-nav.nav.is-open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

/* Kleiner Pfeil oben (optional hÃƒÂ¼bsch) */
nav#site-nav.nav::before{
  content:"";
  position:absolute;
  top: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: rgba(18,26,37,0.92);
  border-left: 1px solid rgba(231,237,246,0.16);
  border-top: 1px solid rgba(231,237,246,0.16);
  transform: rotate(45deg);
  backdrop-filter: blur(14px);
}

/* =========================================
   Joomla MenÃƒÂ¼-Output im Dropdown
   (wir stylen nur innerhalb nav#site-nav)
========================================= */
nav#site-nav .moduletable{
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* UL Reset */
nav#site-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Links als "Pills" */
nav#site-nav a{
  display:flex;
  align-items:center;
  gap: 10px;

  padding: 12px 12px;
  border-radius: 14px;

  color: rgba(231,237,246,0.92);
  text-decoration: none;

  border: 1px solid transparent;
  background: transparent;

  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

/* Hover */
nav#site-nav a:hover{
  background: rgba(231,237,246,0.08);
  border-color: rgba(231,237,246,0.10);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Active (Joomla setzt meist .current / .active) */
nav#site-nav li.current > a,
nav#site-nav li.active > a{
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.14));
  border-color: rgba(110,231,255,0.22);
  box-shadow: 0 0 0 1px rgba(110,231,255,0.10) inset;
}

/* Focus visible */
nav#site-nav a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(110,231,255,0.16);
}

/* Divider zwischen EintrÃƒÂ¤gen (dezent) */
nav#site-nav li + li{
  margin-top: 6px;
}

/* =========================================
   Submenu (falls vorhanden)
========================================= */
nav#site-nav li ul{
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(231,237,246,0.10);
  padding-left: 10px;
}
nav#site-nav li ul a{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: rgba(231,237,246,0.82);
}

/* =========================================
   Optional: Desktop-MenÃƒÂ¼ NICHT als Dropdown
   -> wenn du willst: ab 980px dauerhaft sichtbar/horizontal
========================================= 
/* =========================================
   Modul: Social Icons (scoped)
   Voraussetzung: Modulklassensuffix = bd-social
========================================= */

.bd-social .social-icons{
  display:flex !important;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
}

.bd-social .social-icons a{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  /* width:52px; */
  /* height:52px; */
  border-radius:14px;
  /* background: rgba(255,255,255,0.04); */
  /* border: 1px solid rgba(231,237,246,0.10); */
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.bd-social .social-icons img{
  display:block;
  width:44px;
  height:44px;
  opacity:.92;
  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.bd-social .social-icons a:hover,
.bd-social .social-icons a:focus-visible{
  transform: scale(1.07);
  border-color: rgba(110,231,255,0.45);
  background: rgba(110,231,255,0.06);
  box-shadow:
    0 0 0 6px rgba(110,231,255,0.08),
    0 12px 30px rgba(0,0,0,0.45);
  outline:none;
}

.bd-social .social-icons a:hover img,
.bd-social .social-icons a:focus-visible img{
  transform: scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(110,231,255,0.30));
  opacity:1;
}

.bd-social .social-icons a:active{
  transform: scale(1.02);
}
/* =========================================
   Kontaktseite (Artikel) – BEE Digital
========================================= */

.bd-contact{
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
}

.bd-contact__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* Bild links etwas größer */
  gap: 22px;
  align-items: stretch;
}

/* Bild-Card */
.bd-contact__media{
  border-radius: var(--radius2);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 320px;
}

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

/* Content-Card */
.bd-contact__content{
  border-radius: var(--radius2);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.bd-contact__title{
  margin: 0 0 10px;
}

.bd-contact__intro{
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}

.bd-contact__cards{
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.bd-contact__card{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.bd-contact__label{
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.bd-contact__value a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(110,231,255,0.25);
}
.bd-contact__value a:hover{
  border-bottom-color: rgba(110,231,255,0.55);
}

/* Social Icons (nebeneinander + Hover Glow/Scale) */
.bd-contact .social-icons{
  display:flex !important;
  align-items:center;
  gap:14px;
  margin-top: 6px;
}

.bd-contact .social-icons a{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;

  width:52px;
  height:52px;
  border-radius:14px;

  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.bd-contact .social-icons img{
  display:block;
  width:44px;
  height:44px;
  opacity:.92;

  transition: transform .18s ease, filter .18s ease, opacity .18s ease;
}

.bd-contact .social-icons a:hover,
.bd-contact .social-icons a:focus-visible{
  transform: scale(1.07);
  border-color: rgba(110,231,255,0.45);
  background: rgba(110,231,255,0.06);
  box-shadow:
    0 0 0 6px rgba(110,231,255,0.08),
    0 12px 30px rgba(0,0,0,0.45);
  outline:none;
}

.bd-contact .social-icons a:hover img,
.bd-contact .social-icons a:focus-visible img{
  transform: scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(110,231,255,0.30));
  opacity: 1;
}

.bd-contact__note{
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 920px){
  .bd-contact__grid{
    grid-template-columns: 1fr;
  }
  .bd-contact__media{
    min-height: 240px;
  }
}
#mod-custom112{
  position: relative;
 background: radial-gradient(
      circle at 20% 10%,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.0) 45%
    ),
    linear-gradient(
      135deg,
      #1e293b,
      #020617
    );
  padding-bottom:24px;
  padding-top:24px;
  }


