/* style.css */
body {
    background-color: #111;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #e0e0e0;
    /* WICHTIG: Verhindert, dass die ganze Seite wackelt/scrollt */
    overflow-x: hidden; 
}

.page-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background-color: #000;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
    /* WICHTIG: Damit Borders die Breite nicht >100% drücken */
    width: 100%; 
    box-sizing: border-box;
}

header {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 450px;
    background-image: url('/img/ramones_header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 4px solid #fff;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #000 10%, transparent);
    padding: 60px 20px 20px;
    color: #fff;
}

.main-content {
    flex: 1;
    padding: 60px 20px;
}

/* --- MOBILE OPTIMIERUNG (NEU) --- */
@media (max-width: 768px) {
    .hero-image {
        height: 300px; /* Header auf dem Handy nicht so riesig */
    }
    
    .hero-overlay {
        padding: 20px; /* Weniger Abstand im Header */
    }
    
    h1.display-3 {
        font-size: 2.5rem; /* Überschrift kleiner machen */
    }
    
    .main-content {
        padding: 30px 15px; /* Weniger Rand links/rechts beim Inhalt */
    }
}

/* Links */
a { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; }
a:hover { color: #ccc; text-decoration: none; }

/* Footer */
footer {
    background-color: #000;
    color: #666;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: auto;
}
footer a {
    color: #666;
    text-decoration: none;
    margin: 0 10px; /* Abstände der Links auf Handy etwas enger */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block; /* Damit sie auf Handy sauber umbrechen */
    margin-bottom: 5px;
}
footer a:hover { color: #fff; }
