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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: 0.5rem;
}

/* Größeres Logo gewünscht? */
.logo-large {
    height: 70px;
    width: auto;
}

h1 {
    color: #2c3e50;
    font-size: 2rem;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

nav a:hover {
    color: #e67e22;  /* Orange passend zum Logo */
}

/* Language Toggle Styles */
.language-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #e8e8e8;
}

.lang-btn.active {
    background-color: #e67e22;
    color: white;
    border-color: #e67e22;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Main Content */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.content-section {
    background-color: #fff;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 0;
    box-shadow: none;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.image-text-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.image-container {
    /* Feste Breite für den Container */
    width: 200px;
    flex-shrink: 0;
    text-align: center;
}

.image-container img {
    /* Bild passt sich an Container an */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Spezielle Formatierung für App-Screenshots */
.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    padding: 1rem;
}

.text-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.text-content p {
    color: #333;  /* Normale Textfarbe */
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: justify;
    text-justify: inter-word;
}

/* Bottom Text Section */
.bottom-text {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 1rem;
}

.bottom-text h3 {
    color: #eb8d3d;  /* Braune Textfarbe wie gewünscht */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bottom-text p {
    color: #eb8d3d;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-section h3::before {
    content: '🔒';
    font-size: 1.3rem;
}

.privacy-section:nth-child(1) h3::before { content: '👤'; }
.privacy-section:nth-child(2) h3::before { content: '💾'; }
.privacy-section:nth-child(3) h3::before { content: '🌐'; }
.privacy-section:nth-child(4) h3::before { content: '💳'; }
.privacy-section:nth-child(5) h3::before { content: '📧'; }

.privacy-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-left: 2rem;
}

.privacy-section a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 5px;
    border-radius: 3px;
}

.privacy-section a:hover {
    color: #fff;
    background-color: #e67e22;
    text-decoration: none;
}

/* Privacy Intro */
.privacy-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
}

.privacy-intro p {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Support Page Styles */
.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
}

.support-intro p {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 500;
}

.support-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.support-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.support-section strong {
    color: #2c3e50;
}

.contact-info {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.support-section a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 5px;
    border-radius: 3px;
}

.support-section a:hover {
    color: #fff;
    background-color: #e67e22;
    text-decoration: none;
}

.support-section ul {
    margin-left: 2rem;
    color: #555;
}

.support-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Baustelle/Under Construction Styles */
.baustelle-container {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.baustelle-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.baustelle-container h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.baustelle-container p {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.baustelle-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.baustelle-info a {
    color: #e67e22;
    text-decoration: none;
    font-weight: 500;
}

.baustelle-info a:hover {
    text-decoration: underline;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .logo-title {
        order: 1;
    }

    .language-toggle {
        order: 2;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: 4;
        width: 100%;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .image-text-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-container {
        width: 200px;
        margin: 0 auto;  /* Zentriert den Container */
    }

    .text-content h2 {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 1rem;
        color: #333;  /* Normale Textfarbe bleibt */
    }

    .bottom-text h3 {
        font-size: 1.5rem;
    }

    .bottom-text p {
        font-size: 1rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo-title {
        width: calc(100% - 50px);
        justify-content: flex-start;
    }

    .menu-toggle {
        width: 40px;
    }

    .language-toggle {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }
}