/* =========================================
   PODSTRONA "O KLUBIE" - STYL PREMIUM
========================================= */

/* Główna sekcja - wyśrodkowanie i marginesy */
.about-club-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 10;
}

/* Główny kontener - Efekt luksusowego, ciemnego szkła */
.about-club-container {
    background: linear-gradient(145deg, rgba(14, 27, 50, 0.9), rgba(6, 12, 24, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 255, 0.15); /* Subtelna niebieska krawędź */
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    padding: 60px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6), 
        inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Górny refleks świetlny */
    color: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-club-container:hover {
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.7), 
        0 0 30px rgba(0, 168, 255, 0.1); /* Lekka poświata przy najechaniu */
}

/* Nagłówek kontenera */
.about-club-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Animowana ikona wody */
.about-icon {
    font-size: 46px;
    color: #00a8ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 168, 255, 0.4));
    animation: floatIcon 3s ease-in-out infinite;
}

/* Animacja pływania ikony (Góra-dół) */
@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Główny tytuł H1 */
.about-club-header h1 {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 42px;
    font-weight: 800 !important;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
}

/* Podtytuł pod H1 */
.about-subtitle {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 18px;
    color: #00a8ff; /* Niebieski akcent dla przełamania bieli */
    font-weight: 500 !important;
    letter-spacing: 0.5px;
}

/* Wewnętrzny panel z tekstem - wcięty i przyciemniony */
.about-club-content {
    background: rgba(2, 6, 12, 0.5); /* Bardzo ciemne, półprzezroczyste tło */
    border-radius: 16px;
    padding: 40px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    border-left: 4px solid #00a8ff; /* Boczny pasek akcentujący, poprawiający czytanie */
}

/* Domyślny styl dla wszystkich akapitów */
.about-club-content p {
    font-family: 'Funnel Sans', sans-serif !important;
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1; /* Srebrno-szary, nie męczy wzroku */
    margin-bottom: 25px;
    text-align: left; 
}

/* Usunięcie marginesu na dole ostatniego akapitu */
.about-club-content p:last-child {
    margin-bottom: 0;
}

/* "Lead" - wyróżnienie PIERWSZEGO akapitu */
.about-club-content p:first-of-type {
    font-size: 18px;
    font-weight: 600 !important;
    color: #ffffff; /* Pierwszy akapit jest biały i grubszy */
    line-height: 1.7;
    margin-bottom: 30px;
}


@media (max-width: 768px) {

    .about-club-section {
        padding: 35px 14px;
        min-height: auto;
        align-items: flex-start;
    }

    .about-club-container {
        padding: 28px 18px;
        border-radius: 18px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-club-header {
        margin-bottom: 28px;
    }

    .about-icon {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .about-club-header h1 {
        font-size: 26px;
        line-height: 1.15;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .about-subtitle {
        display: block;
        font-size: 14px;
        line-height: 1.4;
    }

    .about-club-content {
        padding: 22px 16px;
        border-radius: 14px;
        border-left: 3px solid #00a8ff;
    }

    .about-club-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: left;
    }

    .about-club-content p:first-of-type {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
}

@media (max-width: 420px) {

    .about-club-section {
        padding: 25px 10px;
    }

    .about-club-container {
        padding: 24px 14px;
        border-radius: 16px;
    }

    .about-club-header h1 {
        font-size: 23px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .about-club-content {
        padding: 18px 13px;
    }

    .about-club-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }
}

@media (min-width: 769px) and (max-width: 1400px) {

    .about-club-section {
        padding-top: 30px !important;
    }

}