/* style.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background-color: #000000;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo img {
    height: 60px;
}

nav {
    position: relative;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

.menu li a:hover {
    background-color: #555;
    border-radius: 5px;
}

main {
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f4f4f4;
    box-sizing: border-box;
}


footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}



/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #555;
}


img {
    width: 100%;
    height: auto;
}


/* Google Maps responsive */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Seitenverhältnis */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Style für die sozialen Icons */
.social-icon img {
    width: auto;
    height: 32px;
    vertical-align: middle;
    margin-left: 10px; /* Abstand zwischen den Icons */
}

.social-icon-big img {
    width: auto;
    height: 150px;
    vertical-align: middle;
}

.social-icon {
    display: inline-block;
}

/* Hover-Effekt hinzufügen möchtest */
.social-icon:hover img {
    opacity: 0.5; /* Die Icons werden bei Hover etwas transparenter */
}


/* Responsive Styles */
@media (max-width: 768px) {

    .menu {
        flex-direction: column;
        display: none;
        position: absolute;
        right: 0;
        top: 85px;
        background-color: #000000;
        width: auto;
        z-index: 1000;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .menu li a {
        text-align: right;
        margin: 5px;
        white-space: nowrap;
    }

    form {
        padding: 10px;
        margin: 10px;
    }

    input[type="text"],
    input[type="email"],
    textarea,
    input[type="submit"] {
        font-size: 14px;
    }
}
