body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-image: url('Kosovo\ Map.png'); /* dein Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;   
}
nav {
    background-color: #429ef5;
    padding: 20px;
}

nav h1 {
    color: white;
    margin: 0;
    font-size: 36px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

nav ul li a:hover {
    color: yellow;
    text-decoration: underline;
}

main {
    padding: 40px;
    max-width: 1600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Jede Section: Text & Bild nebeneinander */

.content-section {
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(200, 200, 200);
    backdrop-filter: blur(4px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    gap: 20px;
    align-items: center;
    justify-content: center;
}


.content-section h3 {
    background-color:  rgb(200, 200, 200);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.content-section p {
    background-color: rgb(200, 200, 200);
    padding: 10px;
    border-radius: 12px;
    color: white;
    text-align: center;
    font-size: 16px;
}

.text-box {
    max-width: 700px;
    flex: 1 1 300px;
}


.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    flex: 1 1 250px;
}
footer {
    background-color: #429ef5;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}
