/* Blumen & Ideen Friedrichroda – Website-Nachbau
   Farbschema und Typografie orientieren sich am Original:
   Akzentfarbe (Überschriften): #b32a0b
   Fließtext: #606060, Header-Hintergrund: #ededed
   Original-Schriftschnitt "Exmouth" ist eine kommerzielle Schrift,
   hier durch die freie Google-Font "Alex Brush" ersetzt.

   Die Schriften werden lokal ausgeliefert (siehe /fonts) statt über
   fonts.googleapis.com geladen, damit beim Seitenaufruf keine
   Verbindung zu Google-Servern aufgebaut und keine IP-Adresse an
   Google übertragen wird (DSGVO – vgl. LG München I, Urt. v. 20.01.2022,
   Az. 3 O 17493/20). */

@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/alexbrush-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/alexbrush-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0303-0304, U+0308-0309, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF;
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0303-0304, U+0308-0309, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-300-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0303-0304, U+0308-0309, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0303-0304, U+0308-0309, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0303-0304, U+0308-0309, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF;
}

:root {
  --accent: #b32a0b;
  --text: #606060;
  --text-light: #9e9e9e;
  --header-bg: #ededed;
  --footer-link: #c0c0c0;
  --footer-bg: #3a3a3a;
  --font-script: 'Alex Brush', cursive;
  --font-nav: 'Cinzel', serif;
  --font-body: 'Poppins', Arial, sans-serif;
  --max-width: 1140px;
}

* , *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
}

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

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

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

/* ---------- Logo-Leiste ---------- */
.top-bar {
  padding: 25px 0;
  text-align: center;
}

.top-bar .logo img {
  margin: 0 auto;
  max-height: 90px;
  width: auto;
}

/* ---------- Hauptnavigation ---------- */
.main-header {
  background: var(--header-bg);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text);
  cursor: pointer;
  padding: 18px 0;
}

.main-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: inline-block;
  padding: 0 18px;
  line-height: 80px;
  font-family: var(--font-script);
  font-size: 30px;
  letter-spacing: .4px;
  color: var(--text-light);
  white-space: nowrap;
}

.main-nav > ul > li.active > a,
.main-nav > ul > li > a:hover {
  color: var(--accent);
}

.main-nav .has-child > a::after {
  content: '\25BE';
  font-size: 14px;
  margin-left: 4px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 20;
  padding: 8px 0;
}

.main-nav .has-child:hover .dropdown,
.main-nav .has-child:focus-within .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-nav);
  font-size: 15px;
  color: var(--text-light);
  text-transform: capitalize;
  font-weight: 600;
}

.dropdown li a:hover { color: var(--accent); }

/* ---------- Hero / Willkommen ---------- */
.hero {
  padding: 55px 0 45px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.15;
  color: var(--accent);
  margin: 0 0 30px;
}

.hero-intro {
  max-width: 720px;
  margin: 30px auto 0;
  font-size: 16px;
}

/* ---------- Bilder-Slider ---------- */
.slider {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}

.slider .slide {
  display: none;
}

.slider .slide.is-active {
  display: block;
}

.slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--accent);
}

.logo-unten {
  max-width: 260px;
  margin: 45px auto 0;
}

/* ---------- Unterseiten-Header ---------- */
.page-header {
  position: relative;
}

.page-header img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.page-header h1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
  font-family: var(--font-script);
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
  margin: 0;
}

/* ---------- Seiteninhalt ---------- */
.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 55px 20px;
}

.content h2 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 36px;
  color: var(--accent);
  margin: 0 0 20px;
  text-align: center;
}

.content h3 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 26px;
  color: var(--accent);
  margin: 30px 0 12px;
}

.content p { margin: 0 0 16px; }

.content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.content ul li { margin-bottom: 8px; }

.note-box {
  background: var(--header-bg);
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  margin: 24px 0;
  font-size: 15px;
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.content.legal {
  max-width: 860px;
}

.content.legal h2.page-title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 36px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 35px;
}

.content.legal h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 24px;
  color: var(--accent);
  text-align: left;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin: 46px 0 18px;
}

.content.legal h2:first-of-type { margin-top: 0; }

.content.legal h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #333;
  text-align: left;
  margin: 28px 0 10px;
}

.content.legal h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin: 20px 0 8px;
}

.content.legal p,
.content.legal ul {
  font-size: 15px;
}

.content.legal ul { padding-left: 20px; }
.content.legal ul li { margin-bottom: 6px; }

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 2px;
  margin-top: 14px;
}

.map-link {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.map-consent {
  background: var(--header-bg);
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  margin-top: 16px;
  border-radius: 2px;
}

.map-consent p { margin: 0 0 12px; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 2px;
}

/* ---------- Sortiment-Kategorien ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.category-grid li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.category-grid li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

/* ---------- Info-Leiste (Öffnungszeiten / Kontakt) ---------- */
.info-bar {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 60px 0 50px;
}

.info-bar .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.info-bar h3 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 26px;
  color: var(--accent);
  margin: 0 0 14px;
}

.info-bar p { margin: 0 0 4px; font-size: 15px; }

/* ---------- Kontaktformular ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form label {
  display: block;
  font-size: 14px;
  margin: 14px 0 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
}

.consent input { width: auto; margin-top: 3px; }

.submit-btn {
  margin-top: 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}

.submit-btn:hover { background: #8f2208; }

.address-block { margin-bottom: 30px; }
.address-block h4 {
  font-family: var(--font-nav);
  font-size: 15px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 26px 0;
  color: var(--text);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.site-footer a { color: var(--footer-link); }
.site-footer a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .info-bar .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-toggle { display: block; margin-left: auto; }

  .main-nav {
    display: none;
    width: 100%;
  }

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

  .main-nav > ul { flex-direction: column; }

  .main-nav > ul > li > a {
    line-height: 1.4;
    padding: 12px 0;
    display: block;
    text-align: center;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    display: none;
    text-align: center;
  }

  .main-nav .has-child.is-open .dropdown { display: block; }

  .main-header .container { justify-content: space-between; }

  .hero h1 { font-size: 32px; }
  .slider img { height: 240px; }
  .page-header img { height: 220px; }
  .page-header h1 { font-size: 30px; bottom: 16px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
