
/* privacy.css - dedykowany styl dla strony Polityki Prywatności */

/* Hero sekcja */
.hero-banner {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    pointer-events: none;
}

.hero-banner .hero-container {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
    animation: fadeInHero 1.5s ease-in-out;
}

.hero-banner h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-banner p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Sekcja treści */
.privacy-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    color: #222;
    line-height: 1.7;
}

.privacy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.privacy-content li:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding-left: 5px;
}

.privacy-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 40px;
    }

    .hero-banner p {
        font-size: 18px;
    }
}


/* Poprawa czytelności tekstu */

/* Zwiększony kontrast i czytelność tekstu Polityki Prywatności */
.privacy-content {
    color: #f7f7f7;
}

.privacy-content h2 {
    color: #ffffff;
}

.privacy-content a {
    color: #66b3ff;
}

.privacy-content a:hover {
    color: #99ccff;
}


/* Styl ciemny zgodny z page-info.php */

/* Styl ciemny zgodny z page-info.php dla Polityki Prywatności */

.privacy-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.7;
    border-radius: 10px;
}

.privacy-content h2 {
    color: #5bc0de;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.privacy-content li:hover {
    background-color: #1e1e1e;
    border-radius: 5px;
    padding-left: 5px;
}

.privacy-content a {
    color: #5bc0de;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #00aaff;
    text-decoration: underline;
}

.privacy-content p {
    font-size: 16px;
}

/* Animacje sekcji */ 
.privacy-content h2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Sekcja infografiki - ochrona danych */

/* Sekcja infografiki - ochrona danych */
.privacy-infographic {
    text-align: center;
    margin: 50px 0;
}

.infographic-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.infographic-container:hover {
    transform: scale(1.05);
}

.infographic-icon {
    font-size: 50px;
    color: #5bc0de;
    margin-bottom: 15px;
}

.privacy-infographic p {
    color: #f7f7f7;
    font-size: 18px;
}
