/* 1. Reset i ustawienia bazowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Ciemny grafit (nie czarny) */
    background-color: #1a1a1a; 
    /* Jasnoszary tekst dla komfortu oczu */
    color: #eeeeee;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Główny kontener treści */
.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    padding: 40px 20px;
    /* Zapewnia miejsce na stopkę na bardzo małych ekranach */
    margin-bottom: 60px;
}

/* 3. Nagłówek główny H1 */
h1 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* 4. Obrazek i jego kontener */
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    max-width: 450px;
    /* Subtelny cień pod logo */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* 5. Napis pod fotką H2 */
.coming-soon {
    font-size: 1.4rem;
    color: #a0a0a0;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* 6. Minimalistyczna stopka */
.site-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.site-footer p {
    font-size: 0.75rem;
    color: #444; /* Bardzo dyskretny kolor */
    letter-spacing: 1px;
}

.site-footer a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #888;
}

/* 7. Responsywność (Mobile First / Tablet) */
@media (max-width: 600px) {
    h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-soon {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 20px 10px;
    }

    /* Na bardzo niskich telefonach stopka przechodzi w tryb relatywny */
    @media (max-height: 600px) {
        body {
            display: block;
        }
        .site-footer {
            position: relative;
            margin-top: 40px;
            bottom: 10px;
        }
    }
}