/* Schriftarten */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
         url('/fonts/Poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Bold.woff2') format('woff2'),
         url('/fonts/Poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlayfairDisplay';
    src: url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.woff2') format('woff2'),
         url('/fonts/PlayfairDisplay/PlayfairDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlayfairDisplay';
    src: url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.woff2') format('woff2'),
         url('/fonts/PlayfairDisplay/PlayfairDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* FontAwesome Einbindung */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url('/fonts/fontawesome/fa-solid-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('/fonts/fontawesome/fa-regular-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url('/fonts/fontawesome/fa-brands-400.woff2') format('woff2');
}

.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-regular {
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
}

.fa-brands {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

/* Grundlegende Variablen */
:root {
    --primary-color: #000000; /* Schwarz für Buttons */
    --secondary-color: #1a1a1a; /* Dunkleres Schwarz für Hover */
    --icon-color: #FFD700; /* Gold für Icons */
    --text-color: #333;
    --light-text: #666;
    --background: #f5f5f5;
    --white: #fff;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --container-width: 1200px;
    --padding-standard: 2rem;
    --button-padding: 0.8rem 1.5rem;
    --font-primary: 'Poppins', Arial, sans-serif;
    --font-heading: 'PlayfairDisplay', Georgia, serif;
}

/* Reset & Basis */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container & Layout */
main,
.container,
.content-area,
.legal-content,
.hero-section,
.mission-section,
.features-grid,
.disclaimer,
.footer-content {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--padding-standard);
}

main {
    flex: 1;
    background-color: var(--white);
}

.content-area,
.legal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Typografie */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.button,
.cta-button,
.main-cta-button {
    display: inline-block;
    padding: var(--button-padding);
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.button:hover,
.cta-button:hover,
.main-cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.button-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-button,
.back-button {
    display: inline-block;
    padding: var(--button-padding);
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin: 1rem 0;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
}

/* Sprachauswahl */
.language-selector {
    margin: 2rem auto;
    text-align: center;
    max-width: 200px;
}

.language-selector select {
    padding: 0.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    background-color: var(--white);
    font-size: 1rem;
    width: 100%;
}

/* Hero Sektion */
.hero-section {
    text-align: center;
}

/* Produkt Bild */
.product-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 1rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.feature-card i {
    font-size: 48px;
    color: var(--icon-color);
    margin-bottom: 1.5rem;
}

/* Mission Sektion */
.mission-section {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--background);
    padding: var(--padding-standard) 0;
    margin-top: var(--padding-standard);
}

.footer-nav {
    text-align: center;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Disclaimer */
.disclaimer {
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.disclaimer h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Loading Anzeige */
#loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --padding-standard: 1rem;
        --button-padding: 0.7rem 1.4rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    .language-selector {
        position: static;
        text-align: center;
        margin: 1rem 0;
    }

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

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .button,
    .cta-button,
    .back-button {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
        display: block;
    }

    .language-selector select {
        width: 90%;
        max-width: 300px;
    }
}

/* Druckversion */
@media print {
    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    main,
    .content-area {
        max-width: 100%;
        box-shadow: none;
        margin: 0;
        padding: 1cm;
    }

    .button,
    .language-selector,
    .footer {
        display: none;
    }
}

.mission {
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--light-bg);
}

.story-section {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-section #story-quote {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background-color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: var(--secondary-color);
}

/* Story Section */
.story-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.story-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

#story-quote {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 2rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .story-section {
        padding: 2rem 1rem;
    }
}

/* Produkt Sektion */
.products-section {
    padding: 2rem;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.product-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Responsive Design für Produkte */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

.products-cta {
    text-align: center;
    margin-top: 2rem;
}

.main-cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    margin: 2rem auto;
    font-size: 1.1rem;
}

.main-cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.all-products-section {
    padding: 2rem;
    background-color: var(--white);
}

.all-products-section .products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.all-products-section .products-column {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.all-products-section .category-header {
    background: var(--primary-color);
    padding: 1rem;
}

.all-products-section .category-header h3 {
    color: var(--white);
    margin: 0;
    text-align: center;
}

.all-products-section ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
}

.all-products-section li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.all-products-section li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* Responsive Design für all-products-section */
@media (max-width: 768px) {
    .all-products-section .products-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* Zusätzliche Produktstile */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-column {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-header {
    background: var(--primary-color);
    padding: 1.5rem;
    margin: 0;
}

.category-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
    text-align: center;
}

.products-column ul {
    list-style: none;
    padding: 1rem;
    margin: 0;
}

.products-column li {
    margin-bottom: 0.5rem;
}

.products-column li:last-child {
    margin-bottom: 0;
}

.products-column a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.products-column a:hover {
    background: rgba(0, 0, 0, 0.03);
}

.product-name {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.shop-label {
    display: block;
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Responsive Anpassungen für Produkte */
@media (max-width: 768px) {
    .all-products-section {
        padding: 1rem;
    }
    
    .products-list {
        grid-template-columns: 1fr;
    }
} 