/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  color: #fff;
  background: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul { list-style: none; }

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

/* ========== BACKGROUND ========== */
.page-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.25);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 12px;
  transition: opacity 0.3s;
}

.menu-toggle:hover {
  opacity: 0.7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 8px 14px;
  gap: 8px;
}

.search-box svg {
  width: 16px;
  height: 16px;
  fill: #aaa;
}

.search-box input {
  background: none;
  border: none;
  color: #ccc;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  width: 120px;
}

.search-box input::placeholder {
  color: #999;
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: rgba(255,255,255,0.9);
}

/* ========== NAVIGATION INLINE ========== */
.nav-overlay {
  display: none;
}

.nav-overlay.active {
  display: block;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 45px;
  padding: 0;
}

.nav-list li {
  display: inline;
}

.nav-list a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #fff;
}

.header-left {
  position: relative;
}

/* ========== MAIN CONTENT ========== */
.main-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  padding-bottom: 70px;
  min-height: 100vh;
}

/* ========== HOME HERO ========== */
.hero-section {
  text-align: center;
  padding: 30px 20px 40px;
}

.hero-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  width: 170px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:nth-child(2) {
  width: 260px;
  height: 220px;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  padding: 8px 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-logo {
  margin: 0 auto 20px;
  width: 180px;
  opacity: 0.6;
}

.hero-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

/* ========== HOME BOTTOM CARDS ========== */
.bottom-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px 80px;
  flex-wrap: wrap;
}

.bottom-card {
  position: relative;
  width: 170px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bottom-card:nth-child(2) {
  width: 260px;
  height: 220px;
}

.bottom-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.bottom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-card .card-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.8);
  padding: 8px 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ========== PAGE SECTIONS ========== */
.page-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  margin: 30px 0 40px;
}

/* ========== ABOUT PAGE ========== */
.about-layout {
  display: flex;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px 60px;
  align-items: flex-start;
}

.about-images {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}

.about-images img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.about-images img:nth-child(1) {
  transform: rotate(-8deg);
  width: 120px;
  height: 155px;
}

.about-images img:nth-child(2) {
  transform: rotate(7deg);
  margin-top: -20px;
  margin-left: 25px;
  width: 100px;
  height: 125px;
}

.about-images img:nth-child(3) {
  transform: rotate(-6deg);
  margin-top: -15px;
  width: 110px;
  height: 140px;
}

.about-section {
  text-align: center;
  padding: 0;
  flex: 1;
}

.about-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 25px;
}

.about-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
}

/* ========== LEISTUNGEN GRID ========== */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 60px;
}

.leistungen-card {
  position: relative;
  padding: 40px 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.leistungen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(50,50,50,0.45);
  transition: background 0.3s;
}

.leistungen-card:hover::before {
  background: rgba(50,50,50,0.25);
}

.leistungen-card:hover {
  transform: scale(1.02);
}

.leistungen-card h3,
.leistungen-card .mehr-link {
  position: relative;
  z-index: 1;
}

.leistungen-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.leistungen-card .mehr-link {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  align-self: flex-end;
}

.leistungen-card .mehr-link:hover {
  color: #fff;
}

/* ========== HERSTELLER ========== */
.hersteller-section {
  max-width: 960px;
  margin: 0 auto 60px;
}

.hersteller-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 350px;
  margin-bottom: 0;
}

.hersteller-item:nth-child(even) {
  direction: rtl;
}

.hersteller-item:nth-child(even) > * {
  direction: ltr;
}

.hersteller-text {
  background: rgba(90, 140, 120, 0.75);
  padding: 40px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hersteller-text h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hersteller-text h3.script-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.hersteller-text p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.hersteller-text .website-link {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: underline;
  margin-top: auto;
}

.hersteller-img {
  overflow: hidden;
}

.hersteller-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== KONTAKT ========== */
.kontakt-section {
  max-width: 900px;
  margin: 0 auto 60px;
  background: rgba(90, 140, 120, 0.75);
  padding: 50px 60px;
  border-radius: 4px;
}

.kontakt-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-align: center;
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.kontakt-map {
  min-height: 400px;
  border-radius: 4px;
  overflow: hidden;
}

.kontakt-info {
  text-align: center;
  margin-bottom: 30px;
}

.kontakt-info p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.kontakt-info a {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  padding: 12px 15px;
  border: none;
  border-radius: 2px;
  background: #fff;
  color: #333;
  outline: none;
}

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

.contact-form .required-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.contact-form button {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: #fff;
  color: #333;
}

/* ========== PARTNER ========== */
.partner-section {
  max-width: 800px;
  margin: 0 auto 60px;
  background: rgba(50,50,50,0.8);
  padding: 50px;
  border-radius: 4px;
}

.partner-item {
  text-align: center;
  padding: 50px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-size: cover;
  background-position: center;
  position: relative;
}

.partner-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30,30,30,0.5);
}

.partner-item h3,
.partner-item .partner-role,
.partner-item .btn-besuchen {
  position: relative;
  z-index: 1;
}

.partner-item:last-child {
  border-bottom: none;
}

.partner-item h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.partner-item .partner-role {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
}

.partner-item .btn-besuchen {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 25px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  transition: all 0.3s;
}

.partner-item .btn-besuchen:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ========== IMPRESSUM ========== */
.impressum-section {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.impressum-section h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.impressum-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

/* ========== SUBPAGE CONTENT (Boden Verlegen, etc) ========== */
.subpage-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.subpage-section {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.subpage-section h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.subpage-section h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 25px 0 10px;
}

.subpage-section p, .subpage-section li {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

.subpage-section ul {
  padding-left: 25px;
  list-style: disc;
}

.subpage-section ul li {
  margin-bottom: 6px;
}

.subpage-img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  float: right;
  margin: 0 0 20px 30px;
  shape-outside: circle();
}

/* ========== PARKETT SANIERUNG ========== */
.parkett-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.parkett-step {
  background: rgba(150,120,80,0.4);
  border-radius: 8px;
  padding: 25px 20px;
  backdrop-filter: blur(3px);
}

.parkett-step h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.parkett-step p, .parkett-step li {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.parkett-step ul {
  padding-left: 15px;
  list-style: disc;
}

.parkett-extra {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.parkett-extra h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.parkett-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.parkett-card {
  background: rgba(80,80,80,0.5);
  padding: 25px 20px;
  border-radius: 6px;
}

.parkett-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

.parkett-card.purple {
  background: rgba(130,100,160,0.5);
}

.parkett-card p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.parkett-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.parkett-cta h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.parkett-cta p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

/* ========== SPEZIELLES (NEW MASONRY) ========== */
.spez-intro {
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 10px 40px;
  position: relative;
}

.spez-intro h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.spez-intro p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.spez-mail {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.spez-mail:hover {
  color: #fff;
}

.spez-masonry {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 960px;
  margin: 0 auto 40px;
  gap: 0;
}

.spez-big {
  grid-row: span 2;
}

.spez-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.spez-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.spez-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.spez-right img[alt="Gewölbe Transport"] {
  object-position: 15% center;
}

.spez-label-panel {
  background: rgba(90, 140, 120, 0.85);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.spez-label-panel h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.spez-label-panel p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.spez-section {
  display: grid;
  grid-template-columns: auto 1fr;
  max-width: 960px;
  margin: 0 auto 40px;
  gap: 0;
}

.spez-section .spez-label-panel {
  width: 220px;
}

.spez-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.spez-images-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .spez-masonry {
    grid-template-columns: 1fr;
  }
  .spez-big {
    grid-row: auto;
  }
  .spez-section {
    grid-template-columns: 1fr;
  }
  .spez-section .spez-label-panel {
    width: 100%;
  }
  .spez-mail {
    position: static;
    transform: none;
    display: block;
    margin-top: 15px;
  }
}

/* ========== SPEZIELLES (OLD) ========== */
.spezielles-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 30px;
}

.spezielles-intro h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.spezielles-intro p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.spezielles-block {
  max-width: 960px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.spezielles-block h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.spezielles-block p {
  font-family: 'Josefin Sans', sans-serif;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}

.spezielles-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.spezielles-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s;
}

.spezielles-gallery img:hover {
  transform: scale(1.05);
}

/* ========== PFLEGE ========== */
.pflege-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.pflege-section h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.pflege-section p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 15px;
}

/* ========== MOEBEL ========== */
.moebel-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.moebel-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.moebel-section .moebel-sub {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.moebel-section blockquote {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.moebel-img {
  max-width: 600px;
  margin: 30px auto;
  border-radius: 6px;
  overflow: hidden;
}

.moebel-img img {
  width: 100%;
  height: auto;
}

/* ========== FOOTER ========== */
.site-footer {
  background: rgba(30,35,40,0.95);
  padding: 50px 40px 30px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-social .instagram-icon {
  width: 35px;
  height: 35px;
  stroke: #E1306C;
  transition: opacity 0.3s;
}

.footer-social a:hover .instagram-icon {
  opacity: 0.7;
}

.footer-badge {
  width: 160px;
}

.footer-col {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 25px;
}

.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .company-name {
  text-decoration: underline;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-contact-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(100,160,180,0.7);
  border-radius: 50%;
  color: rgba(100,160,180,0.9);
  transition: all 0.3s;
}

.footer-contact-icons a:hover {
  background: rgba(100,160,180,0.2);
  border-color: rgba(100,160,180,1);
}

.footer-bottom {
  max-width: 1100px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-bottom a {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

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

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

  .search-box { display: none; }

  .lang-switch { display: none; }

  .nav-list {
    gap: 2px 30px;
  }

  .nav-list a {
    font-size: 1.05rem;
  }

  .hero-cards,
  .bottom-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero-card,
  .bottom-card {
    width: 80%;
    max-width: 280px;
    height: 250px;
  }

  .hero-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .hersteller-item {
    grid-template-columns: 1fr;
  }

  .hersteller-item:nth-child(even) {
    direction: ltr;
  }

  .parkett-steps {
    grid-template-columns: 1fr 1fr;
  }

  .parkett-cards {
    grid-template-columns: 1fr;
  }

  .spezielles-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }

  .footer-contact-icons {
    justify-content: center;
  }

  .about-layout {
    flex-direction: column;
    padding: 0 20px 40px;
  }

  .about-images {
    flex: none;
    width: 100%;
  }

  .kontakt-section {
    padding: 30px 25px;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
  }

  .kontakt-map {
    min-height: 300px;
  }

  .partner-section {
    padding: 30px 20px;
  }

  .partner-item {
    padding: 40px 20px;
  }

  .hersteller-text {
    padding: 25px 20px;
  }

  .btn-besuchen {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .contact-form button {
    min-height: 44px;
  }

  .footer-bottom a,
  .footer-link-btn {
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .parkett-steps {
    grid-template-columns: 1fr;
  }

  .spezielles-gallery {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .page-title {
    font-size: 1.5rem;
  }
}

/* ========== DATENSCHUTZ / AGB ========== */
.legal-section {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 30px;
}

.legal-section h3 {
  font-size: 1rem;
  margin: 25px 0 10px;
  letter-spacing: 1px;
}

.legal-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(30,30,30,0.95);
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2000;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.cookie-actions button:hover {
  background: rgba(255,255,255,0.1);
}

.cookie-actions button.accept {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.cookie-actions button.settings {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  padding: 8px 10px;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
}

.cookie-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px 10px;
  line-height: 1;
  transition: color 0.3s;
}

.cookie-close:hover {
  color: #fff;
}

.footer-link-btn {
  background: none;
  border: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
  padding: 0;
}

.footer-link-btn:hover {
  color: rgba(255,255,255,0.8);
}

/* ========== SLIDER / CAROUSEL ========== */
.slider {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 6px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 5;
  transition: background 0.3s;
  line-height: 1;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
  text-align: center;
  padding: 15px 0;
}

.slider-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.slider-dots .dot.active {
  background: rgba(255,255,255,0.9);
}

/* ========== GALERIE CAROUSEL ========== */
.galerie-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

.galerie-viewport {
  overflow: hidden;
  width: 100%;
}

.galerie-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease;
  align-items: center;
}

.galerie-track img {
  flex: 0 0 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.galerie-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

.galerie-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s;
}

.galerie-nav:hover {
  background: rgba(0,0,0,0.7);
}

.galerie-prev { left: 5px; }
.galerie-next { right: 5px; }

@media (max-width: 768px) {
  .galerie-track img {
    flex: 0 0 200px;
    height: 250px;
  }
  .galerie-carousel {
    padding: 0 40px;
  }
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: background 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Hide header, footer, cookie banner when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .site-header,
body.lightbox-open .site-footer,
body.lightbox-open .cookie-banner {
  display: none !important;
}

.gallery-grid img {
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* ========== BODEN VERLEGEN LAYOUT ========== */
.bv-section-with-img {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.bv-section-with-img .bv-text {
  flex: 1;
}

.bv-section-with-img .bv-img {
  flex: 0 0 220px;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .bv-section-with-img {
    flex-direction: column;
  }
  .bv-section-with-img .bv-img {
    align-self: center;
  }
  .slider-track img {
    height: 300px;
  }
}

/* ========== PARKETT CARDS WITH BG ========== */
.parkett-card-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.parkett-card-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  border-radius: 6px;
}

.parkett-card-bg h3,
.parkett-card-bg p {
  position: relative;
  z-index: 1;
}

/* Parkett CTA with images */
.parkett-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 60px;
  min-height: 400px;
}

.parkett-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parkett-cta-text {
  background: rgba(50,50,50,0.9);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.parkett-cta-text h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.parkett-cta-text p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .parkett-cta-layout {
    grid-template-columns: 1fr;
  }
  .parkett-cta-img {
    height: 250px;
  }
}
