﻿/* --- Kompletny, poprawiony plik style-home.css --- */

/* KROK 1: Dodanie kluczowych zmiennych i stylów globalnych */
:root {
    --primary-color: #007bff; /* Główny kolor (niebieski) */
    --primary-hover: #0056b3; /* Kolor przycisku po najechaniu */
    --text-color: #333;
    --white-color: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #fdfdfd;
    line-height: 1.6;
}

/* KROK 2: Dodanie brakujących stylów dla przycisku */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    color: var(--white-color); /* Zapewnia, że tekst pozostaje biały */
    transform: translateY(-2px);
}

.cta-button.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}


/* --- Twoje istniejące style dla strony głównej (zostają bez zmian) --- */

.home-hero-section {
    background-color: #f8f9fa; /* Jasne, czyste tło */
    padding: 100px 0;
    text-align: center;
}
.home-hero-section h1 {
    font-weight: 700;
}
.home-hero-section .lead {
    color: #6c757d; /* Stonowany kolor dla podtytułu */
    max-width: 700px;
    margin: 15px auto 0;
}

.mission-section-home {
    background-color: var(--white-color);
    padding-top: 50px;
    padding-bottom: 50px;
}
.mission-item-home i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.mission-item-home h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.mission-item-home p {
    color: #555;
    font-size: 0.95rem;
}

.featured-ranking-section {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    padding-top: 50px;
    padding-bottom: 50px;
}
.featured-ranking-section h2 {
    font-weight: 700;
}
.featured-ranking-section .badge {
    font-size: 0.9rem;
    padding: 0.5em 1em;
}

.coming-soon-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.coming-soon-section h2 {
    font-weight: 700;
    text-align: center;
}
.coming-soon-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    text-align: center;
}
.coming-soon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    opacity: 1;
}
.coming-soon-item i {
    font-size: 2.5rem;
    color: #6c757d;
    margin-bottom: 15px;
}
.coming-soon-item span {
    font-weight: 600;
    color: #343a40;
}

/* Dostosowanie nawigacji dla nowej strony głównej */
.navbar-brand i.bi-broadcast-pin {
    color: var(--primary-color);
}

/* KROK 3: Dodanie brakujących stylów dla stopki */
.footer {
    background-color: #212529;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}
.footer p {
    margin-bottom: 10px;
}
.footer a {
    color: #74a6f7;
    text-decoration: none;
    transition: color 0.3s;
}
.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Media queries dla responsywności */
@media (max-width: 768px) {
    .home-hero-section {
        padding: 80px 0;
    }
    .mission-item-home {
        margin-bottom: 40px;
    }
}
