/* =========================
   SCHRIFTEN
========================= */

@font-face {
    font-family: "Diepresse";
    src: url("Schriften/Diepresse-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("Schriften/Inter/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Inter";
    src: url("Schriften/Inter/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}


/* =========================
   GRUNDSTIL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #d9ecfb;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
    letter-spacing: 0,5px;
}


/* =========================
   HAUPTBEREICH
========================= */

h1 {
    font-family: "Diepresse", sans-serif;
    font-size: 48px;
    font-weight: normal;
    margin: 50px 45px;
}

.seiten-titel {
    font-family: "Diepresse", sans-serif;
    font-size: 48px;
}


.seite {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
}


/* =========================
   NAVIGATION
========================= */

.navigation {
    width: 100%;
    height: 70px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

.button {
    padding: 12px 30px;

    background: #78acd6;
    color: white;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;

    text-decoration: none;
    border-radius: 30px;
}


/* =========================
   STARTSEITE
========================= */

.hero,
.info {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    align-items: center;
    margin: 0 auto;
}


/* =========================
   PERSONA
========================= */

.persona {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    align-items: center;
    margin:0 auto;
}


/* =========================
   KUNSTWERKE
========================= */

.kunstwerke-titel {
    margin: 50px 45px;

    font-family: "Diepresse", sans-serif;
    font-size: 48px;
    font-weight: normal;
}


/* Einzelnes Kunstwerk */

.kunstwerk {
    display: grid;

    grid-template-columns: 45px 180px 1fr;
    column-gap: 20px;

    align-items: center;

    margin: 0 45px 45px;
}


/* Nummer */

.nummer {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #555;
}


/* Bild */

.kunstwerk img {
    width: 180px;
    height: 120px;

    object-fit: cover;
    display: block;
}


/* Titel des Kunstwerks */

.kunstwerk-info h2 {
    margin: 0;

    font-family: "Diepresse", sans-serif;
    font-size: 27px;
    font-weight: normal;
    line-height: 1.1;
    overflow-wrap: break-word;
}


/* Beschreibung */

.kunstwerk-info p {
    min-width: 0px;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    overflow-wrap: break-word;
}

.video-beschreibung {
    margin-bottom: 40px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.video-seite video {
    display: block;
    margin: 0 auto;
    max-width: 900px;
    border-radius: 12px;
}

.video-seite video {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin: 0 auto;
}


.download-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;

    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;

    text-decoration: none;
    border-radius: 30px;

    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: bold;

    transition: background 0.2s ease, color 0.2s ease;
}

.download-button:hover {
    background: #2c2c2c;
    color: white;
}
