footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  margin-top: 60px;
  text-align: center;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}


figcaption {
    margin: 0;
    padding: 0;
    text-align: left;
}

figure {
    margin: 0;
}

footer a {
  color: #facdbd;
  text-decoration: none;
  font-family: altehaas-bold;
}

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


body {
    background-color: #29235C;
    color: white;
    font-family: altehaas;
}

h1 {
    color: #facdbd;
    font-family: altehaas;
    font-size: xx-large;
}

h2 {
    color: #facdbd;
    font-family: altehaas;
    font-size: x-large;
}

h3 {
    color: #facdbd;
    font-family: altehaas;
    font-size: x-large;
    margin-top: 40px;
}

h4,
h5 {
    color: #facdbd;
    margin-top: 20px;
    font-family: altehaas;
}

a {
    color: #facdbd;
    font-style: unset;
    text-decoration: underline;
}

.cities a {
    color: white;
    font-style: unset;
    text-decoration: none;
}

#content-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

ul {
    margin: 10px 0 20px 20px;
    padding: 0;
}

li {
    list-style: none;
}


ul li::before {
    content: "✦ ";
    color: #facdbd;
}

#organizations li:before {
    content: "";
}


details {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

details summary {
    cursor: pointer;
    font-weight: bold;
    color: #facdbd;
    margin-bottom: 10px;
}

#map-overview-container {
    margin-top: 40px;
}

strong {
    color: #facdbd;
}

section {
    margin-bottom: 40px;
}

nav {
    background-color: rgba(41, 35, 92, 1);
    padding: 15px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: altehaas-bold;
    font-size: 1.2em;
    transition: color 0.2s, border-bottom 0.2s;
    padding-bottom: 3px;
}

nav a:hover {
    color: #facdbd;
    border-bottom: 2px solid #facdbd;
}

nav a.active {
    color: #facdbd;
    border-bottom: 2px solid #facdbd;
}

@media screen and (min-width: 1024px) {
    #map-overview-container {
        width: 80%;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: grid;
        grid-template-columns: auto auto;
        gap: 25px;
    }
}

#map-overview-container {
    margin: 10px auto;
}

#organizations {
    margin: 20px;
}

#map {
    margin: auto;
    height: 400px;
    width: 600px;
}


@font-face {
    font-family: 'altehaas';
    src: url('fonts/AlteHaasGroteskRegular.ttf') format('truetype');
}


@font-face {
    font-family: 'altehaas-bold';
    src: url('fonts/AlteHaasGroteskBold.ttf') format('truetype');
}

@media print {
    body {
        color: black;
    }

    h1, h2, h3, h4, h5 {
        color: black;
    }

    strong {
        color: black;
    }

    a {
        color: blue;
    }

    nav {
        display: none;
    }

    #content-container {
        box-shadow: none;
        border: none;
        margin: 0;
    }

    #presse-gallery {
        display: none;
    }

    footer {
        display: none;
    }

    .hide-print {
        display: none;
    }
}