
body {
   
    background: url(https://s1.bwallpapers.com/wallpapers/2013/12/10/the-big-bang-theory-2013_114921.jpg) no-repeat center center fixed;
    background-size: cover;
    
  
    margin: 0;
    padding: 0;
    color: #eee; 
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}


p {
    
    color: #f0f8ff; 
}

a {
    color: #f0f8ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e74c3c; 
}




.header {
    
    width: fit-content; 
    
 
    margin: 40px 10% 40px 5%; 
    padding: 15px 30px; 
    

    background-color: rgba(51, 51, 51, 0.9); 
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
}


.header h1 {
    color: #ffc107; 
    margin: 0; 
    font-size: 3em; 
    letter-spacing: 5px;
    text-shadow: 2px 2px 0px #e74c3c; 
    white-space: nowrap; /
}


.main-nav {
    background-color: rgba(0, 0, 0, 0.5); 
    text-align: center;
    padding: 10px 0;
    margin-bottom: 40px;
}

.main-nav a {
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    display: inline-block;
}


main {
    max-width: 900px;
   
    margin: 40px 10% 40px 3%;
    padding: 30px;
    
    background-color: rgba(51, 51, 51, 0.85); 
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8); 
}




main h3 {
    color: #ffc107;
    padding-bottom: 5px;
    margin-top: 30px;
}


.staffel-uebersicht {
    padding: 20px;
    margin-top: 40px;
}

.staffelliste {
    list-style: none;
    padding: 0;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
}


.staffelbox {
   
    background-color: rgba(62, 62, 62, 0.9); 
    padding: 20px;
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
    transition: transform 0.2s, box-shadow 0.2s;
}

.staffelbox:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4); 
    
}

.staffelbox h4 {
    color: #e74c3c; 
    margin-top: 0;
    padding-bottom: 10px;
}

.staffelbox {
    color: #ddd;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.bildrechts {

float: right;

height: 400;
width: 200;

margin: 0 0 0 0;

border: 3px solid #ffc107;

}


/*---------------------------------------------------------------------------------------------
Für das Bild das kommt, wenn man auf die Staffel mit der Maus fährt. Das ist von einer Webside
----------------------------------------------------------------------------------------------*/


/* Definiert den versteckten Bild-Container */
.hover-bild {
    width: 100%; /* Nimmt die volle Breite der Karte ein */
    height: 0; /* Standardmäßig ist die Höhe 0, also unsichtbar */
    padding-top: 0; 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Fügt den Übergang hinzu, damit das Erscheinen sanft erfolgt */
    transition: all 0.5s ease-out;
}

/* WICHTIG: Füge jeder Karte ein individuelles Bild hinzu */
.staffelbox:nth-child(1) .hover-bild {
    /* Füge hier das Bild für Staffel 1 ein */
    background-image: url(https://m.media-amazon.com/images/S/pv-target-images/ea740c5f87fb44d26ecd9626e00a1f011eb86af31e82b786fd705da70585bd36.jpg); 
}

.staffelbox:nth-child(2) .hover-bild
{
background-image: url(https://s-cdn-sj.eu-central-1.linodeobjects.com/big-bang-theory/hdtv.webp);
}

.staffelbox:nth-child(3) .hover-bild {
    /* Füge hier das Bild für Staffel 2 ein */ /* <--- ACHTUNG! DIESER KOMMENTAR IST FALSCH! */
    background-image: url(https://resizing.flixster.com/QoxXTFCMJoZPmxi6nxZ5EC164VQ=/fit-in/352x330/v2/https://resizing.flixster.com/-XZAfHZM39UwaGJIFWKAE8fS0ak=/v3/t/assets/p7895968_b_v9_aa.jpg); 
}
/* ... und so weiter für alle 12 Staffeln */

/* Stil für jede einzelne Staffel-Karte (aus deinem CSS übernommen) */


/* Wenn du über die KARTE hoverst: */
.staffelbox:hover {
    /* 1. Verschiebt die gesamte Karte nach oben */
    transform: translateY(-10px); 
    
    /* Optional: Gelber Leuchteffekt */
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4); 
}

/* Wenn du über die KARTE hoverst, zeige das BILD an: */
.staffelbox:hover .hover-bild {
    /* 2. Gib dem Bild-Container eine Höhe, damit er sichtbar wird */
    height: 150px; /* Ändere dies, um die Bildhöhe anzupassen */
    
    /* Simuliert die korrekte Höhe für das Bild (verhindert Verzerrung) */
    padding-top: 0; 
    margin-top: 15px; 
}
