
/* remote.css - dedykowany styl dla Pomocy Zdalnej */

/* Hero sekcja */
.hero-remote {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    animation: fadeInHero 1.5s ease-in-out;
}

.hero-remote::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-remote .hero-container {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
}

.btn-remote {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-remote:hover {
    background: #0056b3;
}

/* Treść */
.remote-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.remote-content h1, .remote-content h2 {
    margin-bottom: 20px;
}

.remote-content ol, .remote-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

/* Proces serwisu */
.service-process-remote {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.service-process-remote h2 {
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 220px;
    max-width: 220px;
    transition: transform 0.3s, background 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    transform: translateY(-5px);
    background: #e8f0fe;
}

.process-step .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.2);
}

/* CTA sekcja */
.cta-section-remote {
    background: linear-gradient(135deg, #007bff, #0056b3);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.btn-light-remote {
    background: white;
    color: #007bff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
}

.btn-light-remote:hover {
    background: #f0f0f0;
    color: #0056b3;
}

/* Responsywność */
@media (max-width: 768px) {
    .hero-remote {
        min-height: 400px;
        padding: 40px 15px;
    }

    .hero-remote h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-remote p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-remote {
        padding: 12px 20px;
        font-size: 14px;
    }

    .process-step {
        flex: 1 1 90%;
        max-width: 90%;
    }
}


/* Efekty hover i kolory wyróżnień */

/* Wyróżnienie tła sekcji */
.highlight-bg {
    background-color: #f0f8ff;
    padding: 60px 20px;
    border-radius: 10px;
}

/* Efekty hover na liście i paragrafach */
.highlight-list li:hover {
    background-color: #e8f0fe;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding-left: 10px;
    border-radius: 5px;
}

.highlight-text:hover {
    color: #007bff;
    transition: color 0.3s ease;
    cursor: pointer;
}


/* Efekt fade-in hero, poprawa kontrastu tekstu i margines CTA */

/* Efekt fade-in hero */
@keyframes fadeInHero {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-remote .hero-container {
    animation: fadeInHero 1.5s ease-in-out;
}

/* Poprawiona czytelność tekstów pod hero */
.remote-content {
    color: #333;
}

.highlight-section, .highlight-text, .highlight-list li {
    color: #222;
}

/* CTA sekcja - większy margines dolny */
.cta-section-remote {
    margin-bottom: 40px;
}


/* Dodatkowe rozjaśnienie tekstu pod hero */

/* Jeszcze jaśniejsze napisy pod sekcją hero */
.remote-content {
    color: #000;
}

.highlight-section, .highlight-text, .highlight-list li {
    color: #111;
}

.highlight-list li:hover {
    background-color: #dce8ff;
}


/* Finalne dopasowanie czcionek i jasności tekstu */

/* Dopasowanie wielkości czcionek hero do page-laptopy.php */
.hero-remote h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

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

/* Jeszcze jaśniejsze napisy pod sekcją hero */
.remote-content {
    color: #f7f7f7;
}

.highlight-section, .highlight-text, .highlight-list li {
    color: #f7f7f7;
}
