html {
    height:100vh;
}

body {
    background-color: #95C8D1;
    height:100vh;
}

p {
    color: #444145;
    max-width:800px;
}

a {
    color:#444145;
}

h1 {
    color:#444145;
}

summary{
    font-size: large;
    font-weight: 450;
}

#p1{
    position: relative;
    border: #444145;
    top:15px;
    left:-5px;
}

#p2 {
    position: relative;
    border: #444145;
    top:20px;
    left:-5px;
}

#t1{
    position: fixed;
    left: 10px;
    bottom: 0;
    }

.text{
    position: relative;
    
}

#b1{
    position: absolute;
    left: 250px;
    top: -50px;
}

#b2{
    position: absolute;
    left: 340px;
    top: -50px;
}

#b3{
    position: absolute;
    left: 450px;
    top: -50px;
}

#b4{
    position: absolute;
    right: -50px;
    top: -10px;
}

.newtext{
    float: left;
}

/*Schwierigkeiten Bilder einzufügen, die gut plaziert sind. Lösung=absolutes und relatives Positioning bzw div classes*/

#O{
    position: relative;  
}

#L{
    position: relative;
    bottom: -30px;
    z-index: -1;
}

.LotusC{
    position: relative;
}

#Lotus{
    position: absolute;
    top: -100px;
    z-index: -1;
}

#impressum {
    position: fixed;
    bottom: 50px;
}

#gorillazHeading {
    height: 100vh;
    background-image: url('../andere/wunderkeks.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.2);
}

#albumHeading {
    font-size: 32px;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
}

#sigma {
    height: 100vh;
}

#notsigma {
    height: 45vh;
}

.album-card {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    
    /* Verhindert das "Zittern" und unscharfe Texte beim Bewegen */
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    will-change: transform;
    
    /* Sorgt dafür, dass die Karte von vornherein einen festen Rahmen hat */
    border: 1px solid var(--border) !important; 
    background: var(--bg-card) !important;
}

.album-card:hover {
    /* Nur nach oben schieben, nicht die Größe ändern */
    transform: translateY(-8px); 
    border-color: var(--accent) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 2; /* Karte schiebt sich über andere, falls sie sich überlappen */
}

/* Fix für das Bild innerhalb der Karte */
.album-img {
    transition: opacity 0.3s ease;
    border-bottom: 1px solid var(--border);
}

.album-card:hover .album-img {
    opacity: 0.9;
}

/* css für Geschichte, Impressum und sidebar */