/* =========================================
   Fitpoprawny - Globalny arkusz stylów
   Autor: Aleksander Jasiulewicz
   ========================================= */

/* RESET PODSTAWOWY */
.fitpoprawny_body * {
    box-sizing: border-box;
    font-family: "Poppins", "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
}

/* KOLORY GŁÓWNE */
:root {
    --fitpoprawny-orange: #e57c34;
    --fitpoprawny-dark: #141627;
    --fitpoprawny-gray: #f6f6f6;
    --fitpoprawny-text: #333;
}

/* KONTEJNER BAZOWY */
.fitpoprawny_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* NAGŁÓWKI */
.fitpoprawny_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fitpoprawny-dark);
    text-align: center;
    margin-bottom: 1.5em;
}

.fitpoprawny_subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--fitpoprawny-orange);
    text-align: center;
    margin-bottom: 2em;
}

/* KARTY (np. sekcje usług lub planów) */
.fitpoprawny_card {
    background: var(--fitpoprawny-gray);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fitpoprawny_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* PRZYCISKI */
.fitpoprawny_btn {
    display: inline-block;
    background: var(--fitpoprawny-orange);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
    text-align: center;
}

.fitpoprawny_btn:hover {
    background: #d86f2a;
}

/* TEKSTY */
.fitpoprawny_text {
    color: var(--fitpoprawny-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2em;
}

/* FLEX GRID */
.fitpoprawny_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.fitpoprawny_col {
    flex: 1 1 300px;
    min-width: 280px;
}

/* CENTROWANIE */
.fitpoprawny_center {
    text-align: center;
}

/* MARGINESY / UTILITY CLASSES */
.fitpoprawny_mt { margin-top: 2rem; }
.fitpoprawny_mb { margin-bottom: 2rem; }
.fitpoprawny_pt { padding-top: 2rem; }
.fitpoprawny_pb { padding-bottom: 2rem; }
