* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Header */
header {
    /*background: #2c3e50;*/
    background: #fff;
    color: #000;
    padding: 2rem 0;
    text-align: center;
}

.h200 {
    height: 200px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    max-height: 120px;
    max-width: 90%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.header-text {
    flex: 1;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Navigation */
nav {
    background: #008802;
    /*background: #34495e;*/
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #d4a373;
}

/* Language Toggle */
.lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    white-space: nowrap;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-toggle.lang-de-active .lang-option:first-child {
    font-weight: bold;
    color: #d4a373;
}

.lang-toggle.lang-en-active .lang-option:last-child {
    font-weight: bold;
    color: #d4a373;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
#hero {
    /*background: linear-gradient(135deg, #8b7355 0%, #6b563f 100%);*/
    background: linear-gradient(135deg, #772b1b 0%, #6b563f 100%);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

#hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff
}

#hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    color: #fff
}

/* Sections */
section {
    padding: 3rem 0;
    background: #fff;
    margin-bottom: 2px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 3px solid #d4a373;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.parallax-section {
    position: relative;
    background-image: url('Luftbild50.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    padding: 0;
    margin-bottom: 0;
}

.parallax-section2 {
    position: relative;
    background-image: url('AndreasGleissner1963.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
    padding: 0;
    margin-bottom: 0;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
    /*max-width: 900px;*/
}

/* Founders Section */
.founders-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #8b7355;
}

.founder-photo {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border: 3px solid #d4a373;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.founder-text {
    flex: 1;
    text-align: left;
}

.founder-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.founder-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Founders Section */
.founders-section {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.founder {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #8b7355;
}

.founder-photo {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border: 3px solid #d4a373;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.founder-text {
    flex: 1;
    text-align: left;
}

.founder-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.founder-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #8b7355;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.product-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Order Information Section */
.order-info {
    margin-top: 2rem;
}

.order-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 4px solid #8b7355;
}

.order-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.order-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.8rem;
}

.order-section p:last-child {
    margin-bottom: 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #8b7355;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.product-desc {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quality Features */
.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: #f9f9f9;
    border-top: 3px solid #d4a373;
}

.feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
#gallery {
    background: #fff;
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    background: #f9f9f9;
}

.contact-info {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.inquiry {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #8b7355;
    font-style: italic;
}

/* Footer */
footer {
    background: #008802;
    color: #fff;
    padding: 3rem 0 1.5rem;
}

.legal-notice {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.legal-notice h3 {
    color: #d4a373;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-notice p {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

.legal-notice a {
    color: #d4a373;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-notice a:hover {
    color: #fff;
}

.disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-style: italic;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.data-protection {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.data-protection h3 {
    color: #d4a373;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.data-protection p {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Map Container */
.map-container {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    .logo {
        max-height: 80px;
        max-width: 80%;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }
    
    nav .container {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #006602;
        flex-direction: column;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        order: 4;
    }
    
    nav ul.active {
        max-height: 500px;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .lang-toggle {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        order: 3;
        flex-shrink: 0;
    }
    
    /* Disable parallax on mobile for better performance */
    .parallax-section,
    .parallax-section2 {
        background-attachment: scroll;
    }
    
    /* Stack founder photos on mobile */
    .founder {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-photo {
        width: 150px;
        height: 200px;
    }
    
    .founder-text {
        text-align: center;
    }
    
    /* Stack founder photos on mobile */
    .founder {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-photo {
        width: 150px;
        height: 200px;
    }
    
    .founder-text {
        text-align: center;
    }
    
    #hero h2 {
        font-size: 1.5rem;
    }
    
    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .lang-toggle {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-grid,
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
