@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-VariableFont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
        }

        body {
            font-family: 'Merriweather', serif;
            font-size: 18px;
            line-height: 1.6;
            background-color: #f7f7f7; /* helles Grau */
            color: #333; /* dunkles Grau */
            margin: 0;
            padding: 0;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5em;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 0.4em;
        }
        
        h3 {
            font-size: 1.4rem;
            margin-bottom: 0.3em;
        }
        
        p, li {
            font-size: 1rem;
        }

        header {
            background-color: #1a3b5d; /* dunkelblau */
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        nav {
            background-color: #eee;
            padding: 10px;
            text-align: center;
        }

        nav a {
            margin: 0 15px;
            text-decoration: none;
            color: #1a3b5d;
        }

        main {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }

        .image-placeholder {
            background-color: #ccc;
            width: 100%;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: #666;
        }

        .event-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            color: #333;
}

        .event-table th,
        .event-table td {
            border: 1px solid white;
            padding: 10px;
            vertical-align: middle;
            text-align: left;
}

        .event-table th {
            background-color: #1a3b5d;
            color: white;
}

        .event-table img {
            cursor: pointer;
            border-radius: 5px;
            transition: transform 0.2s;
}

        .event-table img:hover {
            transform: scale(1.03);
}


/* Ausgangsbild */
.zoomable {
  cursor: pointer;
  transition: transform 0.2s;
}

.zoomable:hover {
  transform: scale(1.03);
}

/* Lightbox-Ansicht */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid white;
  border-radius: 8px;
}


        footer {
            background-color: #ddd;
            text-align: center;
            padding: 10px;
            margin-top: 30px;
        }

        /* Responsive Design */
       @media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
