/* Farben für Kombination 4 */
:root {
    --primary-color: #2C3E50; /* Marineblau */
    --secondary-color: #D5C6B0; /* Beige */
    --accent-color: #CC7A00; /* Kupfer */
    --text-color: #FFFFFF;
    --background-color: #FAFAFA;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    color: var(--primary-color);
}
.wrapper {
    background-image: url('https://nurierdogan.de/assets/main_bg.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
}
.wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85); /* Dunkler Overlay für besseren Kontrast */
    z-index: 1;
}
/* Header und Hauptbotschaft */
.header {
    position: relative;
    color: var(--text-color);
    padding: 15vh 20px 0 20px;
    text-align: center;
    z-index: 3;
}
.header .logo {
    position: absolute;
    top: 20px;
    left: 20px;
}
.header h1 {
    margin: 0;
    font-size: 2.5em;
    z-index: 1;
    position: relative;
}
.header p {
    color: var(--accent-color);
    font-size: 1.75em;
    font-weight: bold;
    z-index: 1;
    position: relative;
}
.header p span {
    color: var(--text-color);
}       
/* Abschnittsüberschriften und CTA-Button */
/* CTA-Button mit Animation */
.cta {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 12px 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1;
    position: relative;
}
.cta:hover {
    background-color: #d98a3d;
    transform: scale(1.05);
}
.section {
    position: relative;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    z-index: 3;
}
.section h2 {
    color: var(--accent-color);
    font-size: 1.8em;
}
.section p {
    font-size: 1.2em;
    text-shadow: var(--secondary-color) 0px 0px 5px;
}
/* Abschnitt für Problem-Lösungs-Darstellung */
.problem-solution {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10vh;
}
/* Kachelabschnitt für Schnellübersicht */
.tiles {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}
.tile {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 28%;
    min-width: 200px;
}
.tile h3 {
    color: var(--primary-color);
    font-size: 1.4em;
}
/* Mission Abschnitt */
.mission {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    margin: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mission-content {
    flex: 1;
    padding-right: 20px;
}
.mission-image {
    flex: 1;
    text-align: center;
}
.mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.mission h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
}
.mission p {
    margin-bottom: 15px;
    line-height: 1.6;
}
.mission p:last-child {
    font-weight: bold;
}
/* Beratungspakete Abschnitt */
.packages {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}
.packages p {
    text-shadow: var(--primary-color) 0px 0px 5px;
}
.package {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 28%;
    min-width: 200px;
}
.package h4 {
    font-size: 1.3em;
}
.package button {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 15px;
    font-size: 0.9em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Ergänzen Sie diese Stile zu Ihrem bestehenden CSS */
.modules {
    background-color: var(--background-color);
    padding: 40px 0;
}

.module {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

.module .reverse {
    flex-direction: row-reverse;
}

.module-content, .module-image {
    flex: 1;
    padding: 30px;
}

.module-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.module h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.module p {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.module .price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.module .cta {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.module .cta:hover {
    background-color: #d98a3d;
}
.footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo, .footer-info, .footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-info h3, .footer-links h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);
}
.modal {
    display: none; /* Standardmäßig ausgeblendet */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%; /* Volle Breite */
    height: 100%; /* Volle Höhe */
    overflow: auto; /* Aktiviert Scrollen bei Bedarf */
    background-color: rgba(0, 0, 0, 0.7); /* Dunkler Hintergrund */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; /* Zentriert das Modal */
    padding: 20px;
    border: 1px solid #888;
    max-width: 1200px; /* Breite des Modals */
    font-size: 1.2rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .wrapper {
        background-image: none;
        background-color: var(--primary-color);
    }
    
    .header {
        padding: 10vh 20px 0 20px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .header p {
        font-size: 1.5em;
    }
    
    .section {
        padding: 20px 10px;
    }
                
    .tile, .package {
        width: 100%;
        margin-bottom: 20px;
    }
                            
    .module {
        display: inline-block;
        margin-right: 10px;
        scroll-snap-align: center;
    }
    .mission-image {
        display: none;
    }
    .module-image {
        display: none;
    }

}