/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Arimo:wght@300;400;500;600&display=swap');

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

body{
    font-family:'Arimo', sans-serif;
    color:#111;
    font-weight: 50;
}

/* Navigation */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 80px;

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(8px);

    border-bottom: 1px solid #eee;

}

.logo{
    font-size:1.8rem;
    color:#000;
    text-decoration:none;
    letter-spacing:1px;
    font-family: 'Arimo', sans-serif;
    font-weight: 50;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#000;
    font-weight:100;
    transition:0.3s;
}

nav a:hover{
    opacity:0.6;
}

.year-nav{
    max-width: 1000px;
    margin: 130px auto 40px;
    padding: 0 30px;
}

.year-nav ul{
    list-style: none;
    display: flex;
    gap: 10px;
}

.year-nav li{
    display: inline-block;
    margin-right: 30px;
}

.year-nav a{
    text-decoration: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 300;
}

.year-nav a:hover{
    color: #000;
}


/* Homepage */

.hero{

    background-image:url("images/hintergrund_startseite.jpg");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    width:100%;

    /* beginnt unter der Navigation */

    margin-top:90px;

    /* fast gesamte Bildschirmhöhe */

    height:calc(100vh - 90px);

}

/* Unterseiten */

p {

    margin-bottom: 20px;

    line-height: 1.2px;

  }


.page-content_1{
    max-width:1000px;
    margin:0 auto 80px;
    padding:130px 30px;

}

.page-content{
    max-width:1000px;
    margin:150px auto 80px;
    padding: 30px;
}

.page-content h1{
    font-size:3rem;
    margin-bottom:50px;
    font-weight:400;
}

.page-content p{
    font-size:1.1rem;
    line-height:1.8;
    color:#444;
}

.placeholder-image{
    width:100%;
    height:400px;
    background:#e5e5e5;
    margin-top:40px;
    border-radius:10px;
}

.works p {

    margin-bottom: 5px;
    line-height: 1.2;
}

.works{
    margin-bottom:60px;
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
}

.works h2{
    font-size:3rem;
    font-weight:500;
    margin-bottom: 20px;

}

.works h3{
    font-size:0.5rem;
    font-weight:500;
    margin-bottom:8px;
}

.works-meta{
    color:#666;
    font-size:0.95rem;
    margin-bottom:15px;
}

.title{
    line-height:1.2px;
    color:#444;
    margin-bottom:10px;
    margin-top:10px;
}


.pdf-link{
    display:inline-block;
    text-decoration:none;
    color:white;
    background:black;
    padding:10px 20px;
    border-radius:5px;
    transition:0.3s;
}

.pdf-link:hover{
    opacity:0.8;
}

.work-links{
    margin-top:20px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.work-button{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:5px;
    transition:0.3s;
}

.work-button:hover{
    opacity:0.8;
}

audio{

    width:100%;

    margin-top:15px;

}

.pictures {
    display: block;
    width: 50%;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 10px;
}

.slideshow{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

}

.slide-container{

    width:80%;

}

.slide-container .pictures{
    width:50%;
}

.slide-container .pictures-large{
    width:100%;
}

.slide{

    display:none;

    width:100%;

    height:auto;

    object-fit:contain;

}

.slide.active{

    display:block;

}

.prev,

.next{

    background:none;

    border:none;

    font-size:24px;

    font-weight:100;

    color:#000;

    cursor:pointer;

    padding:0 10px;

}

.prev:hover,

.next:hover{

    opacity:0.6;

}

.pictures-large{

    width:80%;

}


.instagram-button {

    margin-top: 20px;

}

.instagram-button img {

    display: block;

}


.work-button{
    display:inline-block;
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:5px;
    transition:0.3s;
}