/* Allgemeine Stile */
html {
    scroll-behavior: smooth;
    height: 100%;
}
.image-credit {
  text-align: right;
  font-size: 0.8em;
  color: #666;
  margin-top: 5px;
}

.image-credit a {
  text-decoration: none; /* keine Unterstreichung */
  color: inherit; /* übernimmt die Farbe vom Elternelement */
}

section a {
    color: #1f1f1f;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

section a:hover {
    color: #5987b4;
    /* Ändert die Farbe beim Hover */
}
section img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
   
    text-align: left;
    margin-left: 0;
}
section img a {text-decoration: none;}
/* Container für zentrierte Inhalte */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

/* Header-Styling */
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

/* Titel */
body {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Titel */
/*h1 .n1 {
    color: #465F6E;
}


h1 .i {
    color: #8E9C67;
}


h1 .l {
    color: #D2BBAF;
}


h1 .e {
    color: #AD8648;
}


h1 .n2 {
    color: #365a45;
}


h1 .a {
    color: #7baab2;
}
*/
h1 .n1 {
    color: #465F6E;
}


h1 .i {
    color: #465F6E;
}


h1 .l {
    color: #465F6E;
}


h1 .e {
    color: #465F6E;
}


h1 .n2 {
    color: #465F6E;
}


h1 .a {
    color: #465F6E;
}


/* a */
h1 {
    font-size: 5em;
    font-family: "ratiomodern", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1em;
    margin-top: 1em;
    color: rgb(0, 0, 0);
}

h1 a {
    color: rgb(137, 162, 103);
    text-decoration: none;
}

h1 a:hover {
    color: rgb(201, 217, 179); 
    background-color: #f5f5f5;
    text-decoration: none;
}

h1 span {
    font-size: inherit;
}

.center-align {
    text-align: center;
}

.portrait {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Navigation */
nav {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(75, 75, 75, 0);
    padding: 1rem 2rem;
    border-radius: 50px;
    width: auto;
    max-width: 100%;
    margin: 20px auto;
}

/* Navigation Liste */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5em;
}

/* Navigation Links */
nav ul li {
    display: inline;
}

nav ul li a {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.6rem 2.5rem;
    border-radius: 30px;
    background-color: transparent;
    transition: background-color;
    display: block;
    color: #000000;
}

nav ul li a:hover {
    color: rgba(167, 167, 167);
    background-color: rgba(206, 206, 206, 0);
}

body img {
    display: block;
    max-width: 60%;
    height: auto;
    margin: 1rem 0;
    
    text-align: center;
    margin-left: 0;
}

/* Hauptabschnitt */
section {
    color: #000000;
    text-align: left;
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 2rem;
    max-width: 60%;
    margin: 4em auto;
    
    background-color: rgba(87, 87, 87, 0);
    padding-left: 3em;
    padding-right: 3em;
}

/* Überschriften */
h2 {
    font-family: "ratiomodern", serif;
    font-weight: 4e00;
    font-style: normal;
    font-size: 1.7rem;
    color: #222;

    padding-bottom: 10px;
}


.musik-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.musik-container img {
    width: 200px;
    height: auto;
    border-radius: 100px;
}

.musik-text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.datum-text {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
    align-self: flex-start;
}

.musik-text {
    max-width: 400px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

/* Footer bleibt unten */
footer p {
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    color: rgb(144, 144, 144);
    width: 100%;
    margin-top: auto;
}

/* Spacer */
.spacer50px {
    height: 50px;
}

/* Media Queries für kleinere Bildschirme */
@media (max-width: 768px) {

    /* Navigation */
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1em;
    }

    /* Container */
    .container {
        padding: 1rem;
    }

    /* Titel */
    h1 {
        font-size: 2.5rem;
    }

    /* Hauptabschnitt */
    section {
        padding: 1.5rem;
        margin: 2em 1em;
    }

    /* Galerie */
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 200px;
        /* Gleiche Breite wie das Bild */
        text-align: center;
        word-wrap: break-word;
    }

    /* Musikcontainer */
    .musik-container {
        flex-direction: column;
        gap: 15px;
    }
}


footer a {text-decoration: none; color: #8d8d8d;}