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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000;
    overflow: hidden;
    height: 100vh;
}

.band-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: 100vh;
    width: 100vw;
    position: relative;
}

.member-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-1 {
    background-image: url('../images/aAnton.webp');
}

.member-2 {
    background-image: url('../images/aErnie.webp');
}

.member-3 {
    background-image: url('../images/aPaul.webp');
}

.member-4 {
    background-image: url('../images/aRoger.webp');
}

/* Center Construction Overlay */
.construction-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 3rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.construction-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.construction-content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #e0e0e0;
    margin: 0;
    font-style: italic;
}

@media (min-width: 768px) {
    .band-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .construction-overlay {
        padding: 2.5rem 4rem;
        min-width: 320px;
    }
    
    .construction-content h1 {
        font-size: 2.5rem;
    }
    
    .construction-content p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .construction-overlay {
        padding: 3rem 5rem;
        min-width: 400px;
    }
    
    .construction-content h1 {
        font-size: 3rem;
    }
    
    .construction-content p {
        font-size: 1.5rem;
    }
    
    .member-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1440px) {
    .construction-overlay {
        padding: 4rem 6rem;
        min-width: 480px;
    }
    
    .construction-content h1 {
        font-size: 3.5rem;
    }
    
    .construction-content p {
        font-size: 1.7rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.construction-overlay {
    animation: fadeInUp 0.8s ease-out;
}

@media print {
    .construction-overlay {
        background: white;
        color: black;
        border: 2px solid black;
    }
    
    .construction-content h1,
    .construction-content p {
        color: black;
    }
}
