/* ============================================================
   HOFFMAN GKT PROFI-SHOP – ERGÄNZENDE CSS-STYLES
   Für: Shopware 6 Free Edition
   Einbau: Backend → Themes → Eigenes CSS / oder als separate 
           .css-Datei im Theme-Verzeichnis einbinden
   
   HINWEIS: Diese Styles ergänzen das Shopware-Standard-Theme.
   Sie überschreiben keine Core-Styles, sondern nutzen eigene
   .hoffman-* Namensräume.
   ============================================================ */

/* ─── VARIABLEN ─────────────────────────────────────────────── */
:root {
  --hoffman-dark: #1a1a1a;
  --hoffman-charcoal: #2d2d2d;
  --hoffman-steel: #4a4a4a;
  --hoffman-medium: #6b6b6b;
  --hoffman-light: #f5f5f3;
  --hoffman-offwhite: #fafaf8;
  --hoffman-accent: #c8a96e;
  --hoffman-accent-dark: #a8894e;
  --hoffman-white: #ffffff;
  --hoffman-border: #e0e0dc;
  --hoffman-radius: 4px;
  --hoffman-shadow: 0 2px 12px rgba(0,0,0,0.06);
  --hoffman-shadow-hover: 0 8px 24px rgba(0,0,0,0.10);
  --hoffman-transition: 0.25s ease;
  --hoffman-max-width: 1280px;
  --hoffman-font-heading: 'DM Sans', 'Helvetica Neue', sans-serif;
  --hoffman-font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.hoffman-container {
  max-width: var(--hoffman-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAFIE ────────────────────────────────────────────── */
.hoffman-section-title {
  font-family: var(--hoffman-font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.hoffman-section-intro {
  font-family: var(--hoffman-font-body);
  font-size: 1.05rem;
  color: var(--hoffman-medium);
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.hoffman-btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--hoffman-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--hoffman-radius);
  transition: all var(--hoffman-transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.hoffman-btn--primary {
  background-color: var(--hoffman-dark);
  color: var(--hoffman-white);
  border: 2px solid var(--hoffman-dark);
}

.hoffman-btn--primary:hover {
  background-color: var(--hoffman-charcoal);
  border-color: var(--hoffman-charcoal);
}

.hoffman-btn--secondary {
  background-color: transparent;
  color: var(--hoffman-dark);
  border: 2px solid var(--hoffman-dark);
}

.hoffman-btn--secondary:hover {
  background-color: var(--hoffman-dark);
  color: var(--hoffman-white);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hoffman-hero {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* HIER IHR HERO-BILD EINFÜGEN: */
  background-image: url('/media/d4/e4/bf/1772414079/hoffman-gkt-gmbh-introbild.jpg');
  display: flex;
  align-items: center;
}

.hoffman-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(26, 26, 26, 0.85) 0%, 
    rgba(26, 26, 26, 0.55) 60%,
    rgba(26, 26, 26, 0.3) 100%
  );
  display: flex;
  align-items: center;
}

.hoffman-hero__content {
  max-width: var(--hoffman-max-width);
  margin: 0 auto;
  padding: 60px 24px;
  color: var(--hoffman-white);
  max-width: 720px;
}

.hoffman-hero__tagline {
  font-family: var(--hoffman-font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hoffman-accent);
  margin-bottom: 1rem;
}

.hoffman-hero h1 {
  font-family: var(--hoffman-font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--hoffman-white);
}

.hoffman-hero__subline {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hoffman-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hoffman-hero__actions .hoffman-btn--primary {
  background-color: var(--hoffman-accent);
  border-color: var(--hoffman-accent);
  color: var(--hoffman-dark);
}

.hoffman-hero__actions .hoffman-btn--primary:hover {
  background-color: var(--hoffman-accent-dark);
  border-color: var(--hoffman-accent-dark);
}

.hoffman-hero__actions .hoffman-btn--secondary {
  color: var(--hoffman-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hoffman-hero__actions .hoffman-btn--secondary:hover {
  background-color: var(--hoffman-white);
  color: var(--hoffman-dark);
  border-color: var(--hoffman-white);
}

/* ─── POSITIONIERUNG ────────────────────────────────────────── */
.hoffman-positioning {
  padding: 80px 0;
  background-color: var(--hoffman-white);
}

.hoffman-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.hoffman-three-col__item h3 {
  font-family: var(--hoffman-font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin-bottom: 0.75rem;
}

.hoffman-three-col__item p {
  font-size: 0.95rem;
  color: var(--hoffman-steel);
  line-height: 1.65;
}

/* ─── KATEGORIE-KACHELN ─────────────────────────────────────── */
.hoffman-categories {
  padding: 80px 0;
  background-color: var(--hoffman-light);
}

.hoffman-grid {
  display: grid;
  gap: 24px;
}

.hoffman-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.hoffman-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.hoffman-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--hoffman-white);
  border-radius: var(--hoffman-radius);
  overflow: hidden;
  box-shadow: var(--hoffman-shadow);
  transition: all var(--hoffman-transition);
}

.hoffman-card:hover {
  box-shadow: var(--hoffman-shadow-hover);
  transform: translateY(-4px);
}

.hoffman-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hoffman-card__body {
  padding: 24px;
}

.hoffman-card__body h3 {
  font-family: var(--hoffman-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin-bottom: 0.5rem;
}

.hoffman-card__body p {
  font-size: 0.9rem;
  color: var(--hoffman-steel);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hoffman-card__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hoffman-accent-dark);
  transition: color var(--hoffman-transition);
}

.hoffman-card:hover .hoffman-card__link {
  color: var(--hoffman-dark);
}

/* ─── DUALE ANSPRACHE ───────────────────────────────────────── */
.hoffman-dual {
  padding: 80px 0;
  background-color: var(--hoffman-white);
}

.hoffman-dual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hoffman-dual__block {
  padding: 40px;
  border-radius: var(--hoffman-radius);
  border: 1px solid var(--hoffman-border);
}

.hoffman-dual__block--fachhandel {
  background-color: var(--hoffman-dark);
  color: var(--hoffman-white);
  border-color: var(--hoffman-dark);
}

.hoffman-dual__block--fachhandel h2,
.hoffman-dual__block--fachhandel h4 {
  color: var(--hoffman-white);
}

.hoffman-dual__block--fachhandel p,
.hoffman-dual__block--fachhandel li {
  color: rgba(255, 255, 255, 0.85);
}

.hoffman-dual__block--fachhandel .hoffman-btn--primary {
  background-color: var(--hoffman-accent);
  border-color: var(--hoffman-accent);
  color: var(--hoffman-dark);
}

.hoffman-dual__block--betreiber {
  background-color: var(--hoffman-offwhite);
}

.hoffman-dual__block h2 {
  font-family: var(--hoffman-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hoffman-dual__block h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.75rem;
}

.hoffman-dual__block ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.hoffman-dual__block ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
}

.hoffman-dual__block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--hoffman-accent);
}

.hoffman-dual__note {
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.hoffman-dual__contact {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.hoffman-dual__contact a {
  color: var(--hoffman-accent);
}

/* ─── MARKEN ────────────────────────────────────────────────── */
.hoffman-brands {
  padding: 80px 0;
  background-color: var(--hoffman-light);
}

.hoffman-brands__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hoffman-brands__item img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--hoffman-transition);
}

.hoffman-brands__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── SERVICES ──────────────────────────────────────────────── */
.hoffman-services {
  padding: 80px 0;
  background-color: var(--hoffman-white);
}

.hoffman-service-item {
  padding: 32px;
  background-color: var(--hoffman-offwhite);
  border-radius: var(--hoffman-radius);
  border: 1px solid var(--hoffman-border);
}

.hoffman-service-item h3 {
  font-family: var(--hoffman-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin-bottom: 0.5rem;
}

.hoffman-service-item p {
  font-size: 0.9rem;
  color: var(--hoffman-steel);
  line-height: 1.6;
}

.hoffman-services__payment {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hoffman-border);
  font-size: 0.9rem;
  color: var(--hoffman-medium);
}

/* ─── REFERENZEN ────────────────────────────────────────────── */
.hoffman-references {
  padding: 80px 0;
  background-color: var(--hoffman-light);
}

.hoffman-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 3rem;
}

.hoffman-gallery__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--hoffman-radius);
  display: block;
}

.hoffman-trust {
  text-align: center;
  padding: 2rem 0 0;
}

.hoffman-trust__headline {
  font-family: var(--hoffman-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hoffman-trust__items {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hoffman-trust__badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--hoffman-steel);
  background: var(--hoffman-white);
  border: 1px solid var(--hoffman-border);
  border-radius: var(--hoffman-radius);
  letter-spacing: 0.02em;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.hoffman-faq {
  padding: 80px 0;
  background-color: var(--hoffman-white);
}

.hoffman-faq__list {
  max-width: 800px;
}

.hoffman-faq__item {
  border-bottom: 1px solid var(--hoffman-border);
}

.hoffman-faq__question {
  cursor: pointer;
  padding: 20px 0;
  list-style: none;
}

.hoffman-faq__question::-webkit-details-marker {
  display: none;
}

.hoffman-faq__question h3 {
  font-family: var(--hoffman-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hoffman-dark);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hoffman-faq__question h3::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--hoffman-medium);
  transition: transform var(--hoffman-transition);
}

details[open] .hoffman-faq__question h3::after {
  content: '−';
}

.hoffman-faq__answer {
  padding: 0 0 20px;
}

.hoffman-faq__answer p {
  font-size: 0.95rem;
  color: var(--hoffman-steel);
  line-height: 1.65;
}

/* ─── CTA ───────────────────────────────────────────────────── */
.hoffman-cta {
  padding: 80px 0;
  background-color: var(--hoffman-dark);
  text-align: center;
  color: var(--hoffman-white);
}

.hoffman-cta h2 {
  font-family: var(--hoffman-font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--hoffman-white);
}

.hoffman-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hoffman-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hoffman-cta__actions .hoffman-btn--primary {
  background-color: var(--hoffman-accent);
  border-color: var(--hoffman-accent);
  color: var(--hoffman-dark);
}

.hoffman-cta__actions .hoffman-btn--secondary {
  color: var(--hoffman-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hoffman-cta__actions .hoffman-btn--secondary:hover {
  background-color: var(--hoffman-white);
  color: var(--hoffman-dark);
}

.hoffman-cta__hours {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hoffman-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .hoffman-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
  .hoffman-dual__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hoffman-hero h1 {
    font-size: 1.75rem;
  }
  .hoffman-section-title {
    font-size: 1.5rem;
  }
  .hoffman-three-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hoffman-grid--3col,
  .hoffman-grid--4col {
    grid-template-columns: 1fr;
  }
  .hoffman-gallery {
    grid-template-columns: 1fr;
  }
  .hoffman-hero__content {
    padding: 40px 20px;
  }
  .hoffman-hero__actions {
    flex-direction: column;
  }
  .hoffman-hero__actions .hoffman-btn {
    text-align: center;
  }
  .hoffman-dual__block {
    padding: 28px;
  }
}/* ============================================================
   ERGAENZUNG: Marken-Badges als Text (bis Logos hochgeladen sind)
   
   ANLEITUNG: Diesen Code am Ende der bestehenden Datei
   hoffman-startseite-styles.css anfuegen (im KAS-Editor).
   ============================================================ */

/* Marken-Text-Badges im Herstellerbereich */
.hoffman-brands__grid .hoffman-trust__badge {
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  color: var(--hoffman-dark);
  background: var(--hoffman-white);
  border: 2px solid var(--hoffman-border);
  letter-spacing: 0.04em;
  transition: all var(--hoffman-transition);
}

.hoffman-brands__grid .hoffman-trust__badge:hover {
  border-color: var(--hoffman-accent);
  color: var(--hoffman-accent-dark);
}
/* ══════════════════════════════════════════════════════════════
   HOFFMAN GKT – FOOTER REDESIGN v2
   Breite Selektoren für Shopware 6 Free Edition
   ──────────────────────────────────────────────────────────────
   ANLEITUNG: Den alten Footer-Code (ab dem Kommentar
   "FOOTER REDESIGN") in der hoffman-startseite-styles.css
   KOMPLETT ERSETZEN durch diesen neuen Code.
   ══════════════════════════════════════════════════════════════ */


/* ── FOOTER ELEMENT DIREKT ──────────────────────────────────── */

footer,
.footer-main,
#footerColumns,
.footer-navigation {
    background-color: #111111 !important;
    color: #a0a0a0 !important;
    padding: 60px 0 40px 0 !important;
    border-top: 3px solid #c8a96e !important;
}


/* ── ALLE ÜBERSCHRIFTEN IM FOOTER ──────────────────────────── */

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer .h1, footer .h2, footer .h3, footer .h4, footer .h5, footer .h6,
footer [class*="headline"],
footer [class*="title"] {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3) !important;
}


/* ── SERVICE-HOTLINE GOLDFARBEN ─────────────────────────────── */

footer [class*="column"]:first-child h1,
footer [class*="column"]:first-child h2,
footer [class*="column"]:first-child h3,
footer [class*="column"]:first-child h4,
footer [class*="column"]:first-child h5,
footer [class*="column"]:first-child h6,
footer [class*="column"]:first-child [class*="headline"],
footer [class*="column"]:first-child [class*="title"] {
    color: #c8a96e !important;
}


/* ── ALLE LINKS IM FOOTER ──────────────────────────────────── */

footer a {
    color: #a0a0a0 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 2 !important;
    transition: color 0.2s ease !important;
}

footer a:hover {
    color: #c8a96e !important;
    text-decoration: none !important;
}


/* ── TELEFON & E-MAIL HERVORHEBEN ──────────────────────────── */

footer a[href^="tel:"],
footer a[href^="mailto:"] {
    color: #ffffff !important;
    font-weight: 500 !important;
}

footer a[href^="tel:"]:hover,
footer a[href^="mailto:"]:hover {
    color: #c8a96e !important;
}


/* ── FLIESSTEXT ────────────────────────────────────────────── */

footer p,
footer span,
footer div:not([class]) {
    color: #a0a0a0 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}


/* ── LISTEN ────────────────────────────────────────────────── */

footer ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

footer ul li {
    padding: 0 !important;
    margin: 0 !important;
}


/* ── KARTEN & HINTERGRÜNDE TRANSPARENT ─────────────────────── */

footer [class*="card"],
footer [class*="card"] [class*="body"] {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}


/* ── SPALTEN ABSTAND ───────────────────────────────────────── */

footer [class*="column"],
footer [class*="col-"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


/* ── ACCORDION / COLLAPSE AUF MOBILE ───────────────────────── */

footer [class*="toggle"],
footer [class*="collapse"] {
    color: #ffffff !important;
}


/* ── FOOTER BOTTOM (Copyright, MwSt, Shopware) ────────────── */

footer ~ div,
footer + div,
[class*="footer-bottom"],
[class*="footer-vat"],
[class*="footer-minimal"] {
    background-color: #0a0a0a !important;
    color: #555555 !important;
    padding: 20px 0 !important;
    font-size: 12px !important;
    border-top: 1px solid #222222 !important;
}

footer ~ div a,
footer + div a,
[class*="footer-bottom"] a {
    color: #555555 !important;
    font-size: 12px !important;
}

footer ~ div a:hover,
footer + div a:hover {
    color: #c8a96e !important;
}


/* ── SHOPWARE LOGO DEZENT ──────────────────────────────────── */

footer img,
footer svg,
[class*="footer"] img[alt*="Shopware"],
a[href*="shopware.com"] img {
    opacity: 0.3 !important;
    filter: grayscale(100%) brightness(0.5) !important;
    transition: opacity 0.2s ease !important;
}

footer img:hover,
a[href*="shopware.com"] img:hover {
    opacity: 0.5 !important;
}

/* Logo im Footer NICHT abdunkeln (falls vorhanden) */
footer img[alt*="Hoffman"],
footer img[src*="logo"] {
    opacity: 1 !important;
    filter: none !important;
}


/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 767px) {
    footer,
    .footer-main,
    #footerColumns,
    .footer-navigation {
        padding: 40px 0 30px 0 !important;
    }

    footer [class*="column"] {
        padding: 0 15px !important;
        margin-bottom: 10px !important;
    }

    footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
        font-size: 13px !important;
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
    }
}
/* ── FOOTER 4-SPALTEN LAYOUT ────────────────────────────────── */

footer .row,
footer [class*="row"] {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
    flex-wrap: nowrap !important;
}

footer .row > [class*="col"],
footer [class*="row"] > [class*="col"] {
    max-width: 100% !important;
    flex: none !important;
    width: 100% !important;
}

/* Auf Tablet: 2x2 Raster */
@media (max-width: 1024px) {
    footer .row,
    footer [class*="row"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

/* Auf Mobile: 1 Spalte */
@media (max-width: 767px) {
    footer .row,
    footer [class*="row"] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}