/* ------------------------- */
/*   Grundlayout & Reset     */
/* ------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

/* ------------------------- */
/*        Navigation         */
/* ------------------------- */
nav {
  width: 100%;
  background-color: #000;       
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;           /* mehr Innenabstand */
  position: relative;
  height: 80px;                 /* höhere Leiste */
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Logo links */
nav .logo img {
  width: 240px;                 /* leicht vergrößert */
  height: auto;
  display: block;
}

/* ------------------------- */
/*  Menü (Desktop-Ansicht)   */
/* ------------------------- */
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.05em;
  padding: 10px 14px;
  transition: background 0.3s;
}

nav ul li a:hover {
  background-color: #444;
  border-radius: 4px;
}

/* ------------------------- */
/*  Hamburger-Icon           */
/* ------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 50px;                  /* größerer Klickbereich */
  height: 50px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  height: 4px;                  /* dickere Linien */
  width: 35px;                  /* breiter */
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ------------------------- */
/*        Mobile Ansicht     */
/* ------------------------- */
@media (max-width: 992px) {
  /* Hamburger sichtbar */
  .nav-toggle {
    display: flex;
  }
  
  nav {
	height: 200px;
  }

  /* Menü ausblenden, vertikal anordnen */
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 80px;                  /* unter der höheren Leiste */
    right: 0;
    width: 240px;
    background-color: #222;
    display: none;
    padding: 15px 10px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    font-size: 2rem;
  }

  nav ul li {
    margin: 12px 0;
    text-align: right;
  }

  nav ul li a {
    font-size: 1.1em;
  }

  /* Menü anzeigen, wenn aktiv */
  nav ul.active {
    display: flex;
    width: 350px;
  }
}





/* Album-Inhalt */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 { margin: 10px 0 5px; }
h2 { margin: 0 0 5px; font-weight: normal; color: #555; }
.datum-uhrzeit { margin: 0 0 20px; font-size: 0.9em; color: #777; }
.bild-container { margin-bottom: 20px; }

img { width: 1140px; height: auto; display: block; }

@media (max-width: 1200px) {
    img { width: 100%; }
}

/* Spezielle Gestaltung für Textseiten */
.text-page {
    max-width: 900px;
    line-height: 1.7;
    font-size: 1.1em;
    color: #333;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.text-page h1 {
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
    color: #222;
}

.text-page p {
    margin-bottom: 15px;
    text-align: justify;
}



/* Saisonübersicht */
.saison-liste {
    width: 100%;
    max-width: 1200px;
}

.saison-eintrag {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.saison-eintrag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.saison-eintrag img {
    width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

.saison-eintrag h2 {
    font-size: 1.6em;
    color: #333;
}

.platzhalter {
    width: 500px;
    height: 280px;
    background-color: #ddd;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Albumübersicht */
.album-liste {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.album-eintrag {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-eintrag:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.album-eintrag img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.album-eintrag h2 {
    text-align: center;
    font-size: 1.3em;
    margin-top: 5px;
}

.album-liste .platzhalter {
    width: 100%;
    height: 200px;
    background-color: #ddd;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.album-untertitel {
    font-size: 0.95em;
    color: #666;
    text-align: center;
    margin-top: 3px;
}

.album-datum {
    font-size: 0.85em;
    color: #999;
    text-align: center;
    margin-top: 2px;
}

.site-footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 20px 0;
    color: #555;
    font-size: 2em;
    margin-top: 40px;
    border-top: 1px solid #ddd;
    line-height: 1.5;
}


/* Auf Smartphones / kleine Bildschirme: größere Schrift */
@media (max-width: 900px) {
    .site-footer {
        font-size: 2em;
        padding: 25px 10px;
    }
}
