@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../fonts/lato-v25-latin-300.woff2") format("woff2");
  font-display: block;
 
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/lato-v25-latin-regular.woff2") format("woff2");
  font-display: block;
 
}

@font-face {
  font-family: Lato;
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/lato-v25-latin-700.woff2") format("woff2");
  font-display: block;
 
}

@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: block;
 
}

@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: block;
 
}

@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: block;
 
}

: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: 0px;
  padding: 0px;
  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);
  text-decoration: underline;
 
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0px auto;
  padding: 0px 20px;
 
}

.site-header {
  background: linear-gradient(to right, rgb(254, 196, 93) -20%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 50%, rgb(254, 196, 93) 120%);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0px;
  z-index: 1000;
 
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0px 8px;
  position: relative;
 
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
 
}

body.kastenrahmen .hero-image, body.wandrelief .hero-image, body.praesentationsstaender .hero-image {
  display: block;
 
}

@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: 0px 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: 0px 20px;
 
}

.hero-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  width: 100%;
  margin-left: auto;
 
}

.accent-line {
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 25px 0px;
  border-radius: 2px;
 
}

.info-section {
  padding: 40px 0px 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(rgba(0, 0, 0, 0.1) 0px 10px 15px);
 
}

.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);
 
}

.product-overview {
  padding: 40px 0px;
 
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
 
}

.product-card {
  flex: 1 1 0%;
  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 0px 8px;
  font-weight: 600;
 
}

.product-link p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0px;
  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: rgb(255, 255, 255);
  border-radius: 30px;
  font-weight: 700;
  margin-top: 15px;
 
}

.btn:hover {
  background-color: var(--primary-hover);
  color: rgb(255, 255, 255);
  text-decoration: none;
 
}

.contact-list {
  list-style: none;
  margin: 25px 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
 
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  background: rgb(252, 252, 252);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgb(240, 240, 240);
  transition: var(--transition);
 
}

.contact-list li:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
 
}

.contact-icon {
  font-size: 20px;
  background: rgb(255, 245, 240);
  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;
 
}

.site-footer {
  background-color: rgb(255, 255, 255);
  padding: 30px 0px;
  text-align: center;
  border-top: 1px solid rgb(234, 234, 234);
  color: var(--text-muted);
  font-size: 0.9rem;
 
}

.footer-copyright, .footer-links {
  margin: 5px 0px;
 
}

.footer-separator {
  margin: 0px 20px;
  color: rgb(204, 204, 204);
 
}

@media (max-width: 850px) {
.hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 40px;
 
}
.hero-text {
  text-align: center;
  padding: 0px 20px;
 
}
.hero-image {
  text-align: center;
 
}
.hero-image img {
  margin: 0px 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;
 
}
.logo img {
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  margin: 3px 0px -10px;
 
}
.hero-text {
  padding: 0px 20px;
 
}
.hero {
  padding: 20px 0px;
 
}
body.kastenrahmen .hero, body.wandrelief .hero, body.praesentationsstaender .hero {
  padding: 40px 0px;
 
}
.product-overview {
  padding: 20px 0px;
 
}
.site-footer p {
  text-align: center;
  line-height: 1.8;
 
}
.footer-separator {
  display: none;
 
}
.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 0px 30px;
 
}
}

:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
 
}

.legal-title {
  font-size: 2em;
 
}

.contact-text {
  min-width: 0px;
 
}

.contact-value a {
  overflow-wrap: anywhere;
 
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
 
}

.directions-panel {
  min-height: 230px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgb(252, 252, 252);
 
}

.directions-panel .btn {
  margin-top: 0px;
 
}

.directions-panel small {
  color: var(--text-muted);
 
}

@media (prefers-reduced-motion: reduce) {
*, ::before, ::after {
  transition: none !important;
 
}
}

