/* playfair-display-regular - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/playfair-display-v37-latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/playfair-display-v37-latin-ext-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-regular - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/raleway-v34-latin-ext-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/raleway-v34-latin-ext-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --main-bg: #faf9f6;
    --accent: #ceb178;
    --dark: #242325;
    --light: #fff;
    --border: #ece6df;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--main-bg);
    color: var(--dark);
    font-family: 'Raleway', sans-serif;
    line-height: 1.7;
}
.container {
    width: 94%;
    max-width: 1100px;
    margin: 0 auto;
}
header {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6em 0 0.4em 0;
}
.logo-wrap img {
    height: 120px;
    max-height: 18vw;
    transition: height 0.2s;
}
nav {
    display: flex;
    gap: 1.5em;
}
nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.2s;
    position: relative;
    padding: 0.2em 0.1em;
}
nav a.active,
nav a:hover {
    color: var(--accent);
}
.lang-switch {
    border: none;
    background: var(--light);
    color: var(--dark);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-left: 1.5em;
    margin-right: 1.5em;
    padding: 0.5em 1.1em;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: background 0.2s;
}
.lang-switch:hover {
    background: var(--accent);
    color: var(--light);
}
section {
    margin: 0 auto 4em auto;
    max-width: 1050px;
}
.hero {
    margin-top: 2.5em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
    min-height: 330px;
}
.hero-img {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 18px rgba(206, 177, 120, 0.08);
    border: 1px solid var(--border);
}
.hero-img img {
    width: 100%;
    display: block;
}
.hero-content {
    flex: 2 1 300px;
    min-width: 260px;
}
h1, h2 {
    color: var(--dark);
    font-weight: 700;
}
h1 {
    font-size: 2.1em;
    margin-bottom: 0.2em;
    letter-spacing: -0.5px;
}
h2 {
    font-size: 1.5em;
    margin-top: 0;
}
.usp-list {
    margin-top: 1.2em;
    padding-left: 1.1em;
    color: #5d5241;
}
.usp-list li {
    margin-bottom: 0.6em;
}
.about {
    background: #f5f1e7;
    border-radius: 18px;
    padding: 2.1em 1.5em 2em 1.5em;
    margin-bottom: 3em;
    border: 1px solid var(--border);
}
.philosophy {
    font-style: italic;
    /* color: #8c7e65; */
    color: var(--dark);
    margin: 1.4em 0 1.3em 0;
    /* border-left: 4px solid var(--accent); */
    padding-left: 1em;
}
.products {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}
.prod-text {
    flex: 3 1 360px;
}
.prod-imgs {
    flex: 2 1 300px;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.prod-imgs img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-height: 300px;
    object-fit: cover;
}
.contact-form {
    background: #f8f6ef;
    border-radius: 16px;
    padding: 2em 1.5em;
    max-width: 540px;
    margin: 0 auto;
    border: 1px solid var(--border);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    margin-bottom: 1.2em;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 1em;
    background: var(--light);
}
.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}
.contact-form button {
    background: var(--accent);
    color: var(--light);
    border: none;
    padding: 0.8em 2em;
    font-size: 1.1em;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #b69e65;
}
footer {
    background: #eae4da;
    color: #493e2a;
    font-size: 0.98em;
    padding: 2.4em 0 2.1em 0;
    margin-top: 4em;
}
.footer-section {
    max-width: 1050px;
    margin: 0 auto 2em auto;
}
.footer-section h3 {
    margin-bottom: 0.2em;
    font-size: 1.2em;
}
.footer-section ul {
    padding-left: 1.3em;
}
.footer-credits {
    text-align: center;
    font-size: 0.92em;
    margin-top: 2em;
    color: #8d8267;
}
@media (max-width: 900px) {
    .logo-wrap img {
        height: 120px;
    }
    .hero { flex-direction: column; }
    .products { flex-direction: column; }
}
@media (max-width: 650px) {
    header { flex-direction: column; align-items: flex-start; }
    .logo-wrap img { height: 70px; }
    nav { gap: 0.7em; margin-bottom: 0.4em; }
}
@media (max-width: 480px) {
    .container { width: 99%; }
    .logo-wrap img { height: 40px; }
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
section[id] {
    scroll-margin-top: 170px; /* Höhe des Headers oder leicht mehr */
}
