@font-face {
  font-family: 'Norwester';
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/norwester@latest/latin-400-normal.woff2') format('woff2');
} 

@keyframes lobotomy-shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

body {
    margin: 0;
    padding: 0;

    background-image: url('/media/abnobackrgound.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;

    /* Platz für die fixierte Nav lassen */
    padding-top: 80px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Bilder-Reihe: alle drei nebeneinander */
.abno-row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    height: calc(100vh - 80px);
}

.abno-row img {
    /* width: 30vw;
    height: 90vh; */
    width: 25%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.abno-row img:hover {
    transform: scale(1.03);
    animation: lobotomy-shake 0.5s; /* Short duration for high speed */
  animation-iteration-count: infinite; /* Keeps shaking while hovering */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    border-radius: 0;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
    z-index: 1000;
    box-sizing: border-box;
}



nav img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease-in-out;
}

nav img:hover {
    transform: scale(1.1);
}

nav p {
    color: white;
    font-size: 20px;
    font-family: 'Norwester', sans-serif;
    transition: transform 0.2s ease-in-out;
}



.nav-item {
    color: white;
    font-size: 20px;
    font-family: 'Norwester', sans-serif;
    
}

.nav-item :hover {
    color: yellow; 
    transform: scale(1.1);

}


nav a {
    color: white;
    font-size: 20px;
    font-family: 'Norwester', sans-serif;
    transition: transform 0.2s ease-in-out;
}