@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('fonts/lato-v25-latin-300.woff2') format('woff2'); 
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('fonts/lato-v25-latin-regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('fonts/lato-v25-latin-700.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('fonts/playfair-display-v40-latin-600.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local(''),
       url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  src: local(''),
       url('fonts/playfair-display-v40-latin-600italic.woff2') format('woff2');
  font-display: swap;
}


    :root {
      --primary-color: #b63800;
      --primary-hover: #9D3000;
      --text-main: #333333;
      --text-muted: #666666;
      --bg-body: #f8f9fa;
      --bg-card: #ffffff;
      --accent-gold: #e5c158;
      --border-radius: 12px;
      --transition: all 0.3s ease;
      --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
      --shadow-lg: 0 15px 30px rgba(0,0,0,0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text-main);
      background-color: var(--bg-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      color: var(--primary-color);
      line-height: 1.3;
    }

    a {
      color: var(--primary-color);
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover { color: var(--primary-hover); }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header & Navigation */
    .site-header {
      background-color: #ffffff;
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo-container {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 20px 15px; /* Ganz oben am Rand */
      position: relative;
    }

    .logo img {
      height: 110px;
      width: auto;
      display: block;
    }

    .nav-band {
      background-color: #ffffff;
      border-top: 1px solid #eaeaea;
      border-bottom: 1px solid #eaeaea;
    }

    .main-nav { 
      display: flex; 
      justify-content: center;
      gap: 40px; 
      list-style: none; 
    }

    .main-nav a {
      color: var(--text-main);
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      position: relative;
      display: block;
      padding: 15px 0;
    }

    .main-nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -4px;
      left: 0;
      background-color: var(--primary-color);
      transition: var(--transition);
    }

    .main-nav a:hover::after { width: 100%; }
    .main-nav a:hover { color: var(--primary-color); }
    .main-nav a.active { font-weight: 700; }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      box-shadow: var(--shadow-sm);
      border-radius: 8px;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      list-style: none;
      padding: 10px 0;
      border: 1px solid #eee;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      text-transform: none;
      font-weight: 400;
    }
    .dropdown-menu li a::after { display: none; }
    .dropdown-menu li a:hover { background-color: #f8f9fa; color: var(--primary-color); }

    /* Hamburger Menu (Mobile) */
    .hamburger {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      color: var(--primary-color);
      cursor: pointer;
      position: absolute;
      right: 20px;
      top: 42px;
      transform: translateY(-50%);
    }

/* Produktseiten - hero-image ausblenden */
body.kastenrahmen .hero-image,
body.wandrelief .hero-image,
body.praesentationsstaender .hero-image {
  display: block;
}

/* Mobile: hero-image auf Produktseiten ausblenden */
@media (max-width: 768px) {
  body.kastenrahmen .hero-image,
  body.wandrelief .hero-image,
  body.praesentationsstaender .hero-image {
    display: none;
  }
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-text {
  text-align: left;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.hero-image {
  text-align: right;
  padding: 0 20px;
}

    .hero-image img {
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-lg);
      max-width: 380px; /* Kleiner gehalten wie gewünscht */
      width: 100%;
      margin-left: auto;
    }

    /* Accent Line */
    .accent-line {
      width: 60px;
      height: 3px;
      background-color: var(--accent-gold);
      margin: 25px 0;
      border-radius: 2px;
    }

    /* Cards Section */
    .info-section {
      padding: 40px 0 80px;
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .card {
      background-color: var(--bg-card);
      padding: 40px;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
    }

    .card h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .apfel-img {
      max-width: 180px;
      margin: 20px auto;
      filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    }

    .image-gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .image-gallery img {
      width: calc(80% - 60px);
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-sm);
    }

    /* Produktübersicht für artikel.html */
    .product-overview {
      padding: 40px 0;
    }

    .product-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .product-card {
      flex: 1;
      min-width: 200px;
      max-width: 300px;
      text-align: center;
    }

    .product-link {
      display: block;
      text-decoration: none;
      transition: var(--transition);
    }

    .product-link:hover {
      transform: translateY(-5px);
    }

    .product-image {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .product-link h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--primary-color);
      margin: 15px 0 8px 0;
      font-weight: 600;
    }

    .product-link p {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.4;
    }

    .product-link:hover .product-image {
      box-shadow: var(--shadow-lg);
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      background-color: var(--primary-color);
      color: #ffffff;
      border-radius: 30px;
      font-weight: 700;
      margin-top: 15px;
    }

    .btn:hover {
      background-color: var(--primary-hover);
      color: #ffffff;
      text-decoration: none;
    }

    /* Kontakt Liste */
    .contact-list {
      list-style: none;
      margin: 25px 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-list li {
      display: flex;
      align-items: center;
      gap: 15px;
      text-align: left;
      background: #fcfcfc;
      padding: 12px 15px;
      border-radius: 10px;
      border: 1px solid #f0f0f0;
      transition: var(--transition);
    }
    .contact-list li:hover {
      border-color: var(--accent-gold);
      box-shadow: var(--shadow-sm);
    }
    .contact-icon {
      font-size: 20px;
      background: #fff5f0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .contact-text {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }
    .contact-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .contact-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-main);
      line-height: 1.5;
    }

    /* Footer */
    .site-footer {
      background-color: #ffffff;
      padding: 30px 0;
      text-align: center;
      border-top: 1px solid #eaeaea;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-copyright,
    .footer-links {
      margin: 5px 0;
    }

    .footer-separator {
      margin: 0 20px;
      color: #cccccc;
    }

    @media (max-width: 850px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }
      .hero-text { 
        text-align: center; 
        padding: 0 20px;
      }
      .hero-image { text-align: center; }
      .hero-image img { margin: 0 auto; }
      .accent-line { margin: 25px auto; }
      .hero-text h1 { font-size: 2.2rem; }
    }

    @media (max-width: 768px) {
      .logo-container { 
        justify-content: center; 
        padding: 0px 0px 15px 0px;
      }
      .logo img { 
        height: 55px;
        max-width: 100%;
        object-fit: contain;
        margin-top: -5px;
      }
      .hamburger { display: block; }
      .hero-text { 
        padding: 0 20px;
      }
      .hero {
        padding: 20px 0;
      }
      body.kastenrahmen .hero,
      body.wandrelief .hero,
      body.praesentationsstaender .hero {
        padding: 40px 0;
      }
      .product-overview {
        padding: 20px 0;
      }
      .site-footer p { 
        text-align: center; 
        line-height: 1.8;
      }
      .footer-separator { 
        display: none; 
      }
      .nav-band { border: none; }
      .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 0 20px 20px;
        z-index: 1001;
      }
      .main-nav a { padding: 10px 0; border-bottom: 1px solid #eaeaea; }
      .main-nav.active { display: flex; }
      .dropdown-menu { position: static; opacity: 1; visibility: visible; display: none; padding-left: 20px; background: transparent; border: none; box-shadow: none; }
      .dropdown.active .dropdown-menu { display: block; }
      .image-gallery img {
        width: calc(100%);
        margin: 20px 0px 0px !important;
      }
      .product-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      .product-card {
        max-width: 100%;
        min-width: auto;
        margin: 10px 0 30px 0;
      }
    }