/* style.css - Design für Global Kids Bottrop */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
}

.logo-container img {
    max-height: 100px;
    width: auto;
    display: inline-block;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #000;
}

h2 {
    font-size: 1.5em;
    color: #555;
    font-weight: normal;
    margin-top: 0;
}

h3 {
    margin-top: 40px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    clear: both;
}

p, ul {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

.photo-wrap-right {
    width: 33%;
    height: auto;
    float: right;
    margin-left: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.photo-wrap-left {
    width: 33%;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.language-switch {
    text-align: right;
    margin-bottom: 20px;
}

.language-switch a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
}

.language-switch a:hover {
    background-color: #000;
    color: #fff;
}

.tip-box {
    background-color: #f0f0f0;
    padding: 20px;
    border-left: 5px solid #000;
    margin-bottom: 30px;
    font-weight: bold;
    clear: both;
}

form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #eee;
    clear: both;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9em;
}

button {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
}

button:hover {
    background-color: #333;
}

.about-section {
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 50px;
    clear: both;
}

.about-img {
    width: 35%;
    max-width: 250px;
    object-fit: cover;
    display: block;
}

.about-text {
    padding: 20px 30px;
    width: 65%;
}

.about-text h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.about-text p {
    font-size: 1.05em;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 30px 20px;
    font-size: 1em;
    color: #222;
    background-color: #f8f8f8;
    clear: both;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: #222;
    text-decoration: underline;
}

footer a:hover {
    color: #000;
    text-decoration: none;
}

@media (max-width: 650px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.2em; }
    .container { padding: 10px; }
    .photo-wrap-left, .photo-wrap-right {
        width: 100%;
        float: none;
        margin: 10px 0;
        display: block;
    }
    .about-section { flex-direction: column; }
    .about-img { width: 100%; max-width: none; }
    .about-text { width: 100%; box-sizing: border-box; }
}