/* Allgemeine Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f4f4f4;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-dropdown select {
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons a {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.auth-buttons a:hover {
    background-color: #0056b3;
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.hamburger span {
    background-color: #333;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.4s;
}

.navbar {
    display: flex;
    align-items: center;
}

/* Mobile Menü verstecken */
.navbar-menu {
    display: none; /* Menü ist standardmäßig ausgeblendet */
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

/* Aktiviertes Menü */
.navbar-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(0);
}

/* Mobile Menü Links */
.navbar-menu a {
    padding: 15px;
    font-size: 18px;
    text-align: center;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: block;
}

.navbar-menu a:hover {
    background-color: #0056b3;
}

/* Mobile Language Dropdown */
.navbar-menu select {
    font-size: 18px;
    padding: 12px;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
    width: 60%;
}

/* Hero Section */
.hero {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    padding: 15px 30px;
    background-color: #fff;
    color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #e9e9e9;
}

/* Features Section */
.features {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.features .feature {
    display: inline-block;
    width: 30%;
    margin: 0 1%;
    text-align: center;
}

.features img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.features h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Privacy Section */
.privacy {
    background-image: url('img/muko-secure.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.privacy h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.privacy p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Text and Image Sections */
.text-image-section {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.text-image-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.text-image-card.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    padding: 20px;
}

.text-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 18px;
    line-height: 1.6;
}

.image-content {
    flex: 1;
    display: block; /* Ensure images are shown on larger screens */
}

.image-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer a {
    color: #007BFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Kontaktseite Styles */
.contact-section {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
    outline: none;
}

button.btn {
    padding: 15px 30px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.btn:hover {
    background-color: #0056b3;
}

/* Erfolgs- und Fehlermeldungen für das Kontaktformular */
.success-message {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.error-message {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    /* Hamburger-Menü anzeigen */
    .hamburger {
        display: flex;
    }

    /* Rechts-Bereich ausblenden */
    .right-section {
        display: none;
    }

    /* Mobiles Menü */
    .navbar-menu {
        display: none; /* Menü ist standardmäßig ausgeblendet */
    }

    .navbar-menu.active {
        display: flex; /* Menü wird angezeigt, wenn active */
    }

    /* Mobile Language Dropdown */
    .navbar-menu select {
        font-size: 18px;
        padding: 12px;
        margin-top: 10px;
        width: 60%;
        border-radius: 5px;
        border: 1px solid #ccc;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .features .feature {
        width: 100%;
        margin: 10px 0;
    }

    /* Text and Image Sections */
    .text-image-card {
        flex-direction: column;
        box-shadow: none;
    }

    .image-content {
        display: none; /* Hide images on mobile */
    }
    .contact-section {
        padding: 30px 15px;
    }

    .contact-section h1 {
        font-size: 28px;
    }

    .contact-section p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
	.logo img{
		height: 25px;
	}
	
    .auth-buttons a {
        padding: 12px;
        font-size: 18px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .navbar-menu a {
        padding: 15px;
        font-size: 18px;
		margin-left: 40px;
    }

    .navbar-menu select {
        font-size: 18px;
        padding: 12px;
        margin-top: 10px;
        width: 70%;
        border-radius: 5px;
        border: 1px solid #ccc;
		margin-left: 40px;
    }
}
