/* Allgemein */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 30px;
    background-color: #fbfbfb;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.logo {
	width:227px;
	height:100px;
	max-width:100%;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

.subtitle {
    color: #666;
    font-size: 1.1em;
}

/* Sektionen */
section {
    margin-bottom: 40px;
}

h2 {
    color: #111;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}
/* Projekt-Cards */
.project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    display: flex; /* Text links, Bild rechts */
    align-items: center;
    flex: 1 1 calc(50% - 20px);
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    gap: 15px; /* Abstand zwischen Text und Bild */
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.card-content {
    flex: 1; /* Text nimmt den verfügbaren Platz ein */
}

.card-image-link img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Links */
.card a {
/*    color: #D4AF37;*/
    color: #CD9575;
    text-decoration: none;
}

.card a:hover {
    text-decoration: underline;
}

/* Mobile-Optimierung: Bild unter Text */
@media (max-width: 600px) {
    .card {
        flex-direction: column;
        align-items: flex-start;
    }
    .card-image-link img {
        width: 100%;
        height: auto;
	}
}




.card-image-link {
    display: inline-block;
    border-radius: 80%; /* rund */
}

.card-image-link img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    /*border-radius: 50%;*/
    display: block;
}


/* Mini-Steckbrief */

.bio {
display:none;
}

.bio dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1rem;
  padding: 0;
  margin: 0;
}

.bio dt {
	font-weight: bold;
/*   color: #B5A642; /* Messingfarbe */
	color: #CD9575;
}

.bio dd {
  margin: 0;
}

/* Links */
a {
/*    color: #D4AF37;*/
    color: #CD9575;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #CD9575;
/*    color: #B5A642;*/
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.85em;
    color: #555;
}

/* Optional: Buttons / Polls */
button, input[type="submit"] {
/*    background-color: #D4AF37;*/
    background-color: #CD9575;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover, input[type="submit"]:hover {
    background-color: #aa0000;
}

