body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f7f3ed;
    color: #333;
}

header {
    text-align: center;
    padding: 20px 10px;
    background-color: #f2e7d7;
    border-bottom: 2px solid #ccc;
}

header .main-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #6a4a40;
}

header .subtitle {
    font-style: italic;
    color: #888;
    margin: 5px 0 0;
}

main {
    padding: 20px;
}

h2 {
    color: #6a4a40;
    border-bottom: 2px solid #6a4a40;
    padding-bottom: 5px;
    margin-top: 30px;
}

#route {
    text-align: center;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid #6a4a40;
}

#map {
    width: 100%;
    height: auto;
    display: block;
    cursor: grab;
}

.map-point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #a43a32;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
}

#artwork-list {
    list-style-type: none;
    padding: 0;
}

.artwork-item {
    background-color: #f7f3ed;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.artwork-item:hover {
    background-color: #e6e0d9;
}

.artwork-item h3 {
    margin: 0 0 5px;
    color: #6a4a40;
}

.artwork-item p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}

.links-container a {
    display: block;
    margin-top: 10px;
    color: #0066cc;
    text-decoration: none;
}

.links-container a:hover {
    text-decoration: underline;
}

#modal-title {
    color: #6a4a40;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f2e7d7;
    border-top: 2px solid #ccc;
    margin-top: 40px;
    font-size: 0.8em;
    color: #555;
}

footer .sponsors-logo {
    max-width: 90%;
    height: auto;
    margin: 10px 0;
}

/* Voor kleinere schermen (bijvoorbeeld met een breedte van 600px of minder) */
@media (max-width: 600px) {
  .map-point {
    width: 15px;
    height: 15px;
    font-size: 0.8em;
  }
}