/* Sekcja intro */
#intro {
    background: linear-gradient(135deg, #f9f9f9, #e0f7fa);
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

#intro.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Opcjonalny lekki wzór geometryczny dla głębi */
#intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none; /* nie przeszkadza w interakcji */
}

/* Treść */
#intro .intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* żeby tekst był nad pseudo-elementem */
}

#intro h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

#intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Podkreślenie ważnych słów */
#intro p strong {
    color: #e74c3c;
}

/* Responsywność */
@media (max-width: 768px) {
    #intro h1 {
        font-size: 2rem;
    }

    #intro p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #intro {
        padding: 40px 15px;
    }

    #intro h1 {
        font-size: 1.7rem;
    }

    #intro p {
        font-size: 0.95rem;
    }
}
