body {
    font-family: sans-serif;
    margin: 0;
    background-color: #222; /* Dunkelgrau als Fallback */
    color: #f0f0f0; /* Helles Grau für Text */
    background-image: linear-gradient(to bottom right, #222, #333, #3a3a3a, #408080, #336666); /* Dunkle Grautöne mit Grün-Türkis-Akzenten */
    background-size: cover; /* Stellt sicher, dass der Verlauf den gesamten Hintergrund bedeckt */
    background-repeat: no-repeat; /* Verhindert die Wiederholung des Verlaufs */
    min-height: 100vh; /* Stellt sicher, dass der Verlauf den gesamten sichtbaren Bereich abdeckt */
}

header {
    background-color: #333; /* Dunkleres Grau für Header */
    padding: 20px;
    text-align: center;
    position: relative;
}

header h1 {
    margin-bottom: 10px;
    color: #66cc99; /* Grün */
}

.travel-links {
    display: flex;
    gap: 20px; /* Abstand zwischen den Bildern */
    margin-top: 20px; /* Abstand zum vorherigen Abschnitt */
}

.travel-links .image-placeholder {
    flex: 1; /* Gleichmäßige Verteilung des Platzes */
    text-align: center; /* Zentriert den Link-Inhalt */
}

.travel-links .image-placeholder a {
    display: block; /* Macht den gesamten Bereich klickbar */
}

.travel-links .image-placeholder img {
    max-width: 100%; /* Stellt sicher, dass das Bild nicht über den Container hinausgeht */
    height: auto;
    border: 1px solid #ccc; /* Optionale Umrandung */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    position: relative; /* Für das Dropdown */
}

nav ul li a {
    text-decoration: none;
    color: #99e6b3; /* Hellgrün */
    padding: 8px 12px;
    transition: color 0.3s ease;
    display: block; /* Macht den Link zum Block-Element, um den gesamten Bereich des Listenelements abzudecken */
}

nav ul li a:hover {
    color: #4db886; /* Dunkleres Grün beim Hover */
}

/* Dropdown-Stile */
.dropdown {
    position: relative; /* Stellt sicher, dass das Dropdown relativ zum Elternelement positioniert wird */
}

.dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444; /* Dunkleres Grau für Dropdown */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9;
    margin-top: -9px; /* Überlappt den oberen Rand leicht, um Lücken zu vermeiden */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    margin: 0; /* Entfernt Standard-Margins */
}

.dropdown-content li a {
    color: #80ced6; /* Türkis */
    padding: 10px 15px; /* Etwas mehr Padding für bessere Klickbarkeit */
    display: block;
    text-decoration: none;
}

.dropdown-content li a:hover {
    color: #59a6b3; /* Dunkleres Türkis beim Hover */
}

main {
    padding: 20px;
}

.welcome {
    background-color: #3a3a3a; /* Etwas helleres Dunkelgrau für die Sektion */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.welcome h2 {
    color: #66cc99; /* Grün */
    margin-top: 0;
}

.images {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 20px;
}

.image-placeholder {
    width: 200px;
    height: 150px;
    background-color: #444; /* Dunkleres Grau für Platzhalter */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777; /* Helleres Grau für Platzhalter-Text */
    border-radius: 8px;
    overflow: hidden; /* Für abgerundete Ecken der Bilder */
    transition: transform 0.3s ease-in-out; /* Übergang für den Zoom-Effekt */
}

.image-placeholder:hover {
    transform: scale(5.55); /* Vergrößerung beim Hover */
    z-index: 10;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Platzhalter ausfüllt */
}

footer {
    background-color: #333; /* Dunkleres Grau für Footer */
    color: #f0f0f0;
    text-align: center;
    padding: 10px;
    position: relative;
    
}

/* Geschwungene Linien */
.header-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent 50%, #333 50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%); /* Einfache Welle */
}

/* === Textblock === */
.text-block {
    max-width: 800px; /* Begrenzt die Breite */
    margin: 20px auto; /* Zentriert den Block horizontal */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1); /* Sehr heller, halbtransparenter Hintergrund */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: white; /* Heller Text, auch auf dem helleren Hintergrund - ggf. anpassen! */
}


.footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top, transparent 50%, #333 50%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%); /* Umgekehrte Welle */
    z-index: 1;
}

/* === Reisetagebuch === */
.reise-tagebuch {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Spaltenanzahl */
    gap: 20px;
    padding: 20px;
    margin-left: 15%; /* Ersetzen Sie 50px durch die gewünschte Randbreite */
    margin-right: 15%; /* Ersetzen Sie 50px durch die gewünschte Randbreite */
}

.tagebuch-eintrag {
    width: 200px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05); /* Leicht transparenter Hintergrund */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777; /* Helleres Grau für Platzhalter-Text */
    border-radius: 8px;
    overflow: hidden; /* Für abgerundete Ecken der Bilder */
    
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}



.tagebuch-eintrag:hover {
    transform: scale(4.55); /* Vergrößerung beim Hover */


.itagebuch-eintrag img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Platzhalter ausfüllt */
}



.bild-platzhalter {
    width: 200px;
    height: 150px;
    background-color: #444; /* Dunkleres Grau für Platzhalter */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777; /* Helleres Grau für Platzhalter-Text */
    border-radius: 8px;
    overflow: hidden; /* Für abgerundete Ecken der Bilder */
    transition: transform 0.3s ease-in-out; /* Übergang für den Zoom-Effekt */

}

/* Optional: Füge einen Text in den Platzhalter ein */
.reise-tagebuch .bild-platzhalter::before {
    content: 'Bild';
}

.tagebuch-eintrag textarea {
    width: 200px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #333;
    color: #f0f0f0;
    box-sizing: border-box; /* Wichtig für die Größenberechnung */
    resize: vertical; /* Erlaube vertikale Größenänderung */
}

.image-holder {
    width: 200px;
    height: 150px;
    background-color: #444; /* Dunkleres Grau für Platzhalter */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777; /* Helleres Grau für Platzhalter-Text */
    border-radius: 8px;
    overflow: hidden; /* Für abgerundete Ecken der Bilder */
    transition: transform 0.3s ease-in-out; /* Übergang für den Zoom-Effekt */
}

.image-holder:hover {
    transform: scale(1.55); /* Vergrößerung beim Hover */
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Platzhalter ausfüllt */
}
