<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #3466af;
    --on-primary: #ffffff;
    --surface: #346CAF;
    --on-surface: #ffffff;
    --surface-variant: rgba(255, 255, 255, 0.1);
    --elevation-1: 0 1px 2px rgba(0,0,0,0.3);
    --elevation-2: 0 1px 2px rgba(0,0,0,0.3), 0 2px 6px 2px rgba(0,0,0,0.15);

    /* Paleta kolorĂłw - Primary */
    --primary-50: #e4f2fb;
    --primary-100: #bfddf6;
    --primary-200: #98c9f1;
    --primary-300: #74b4ea;
    --primary-400: #5ba4e6;
    --primary-500: #4995e1;
    --primary-600: #4288d4;
    --primary-700: #3a76c1;
    --primary-800: #3465af;
    --primary-900: #29488f;

    /* Light theme (default) */
    --md-sys-color-background:#f5f5f5;
    --md-sys-color-surface: #f8f8f8;
    --md-sys-color-primary: #3466af;
    --md-sys-color-on-primary: #FFFFFF;
    --md-sys-color-on-surface: #1F1F1F;
    --md-sys-color-outline: #79747E;
    --md-sys-color-surface-variant: #e9e9e9;

    /* Dodajemy kolory dla kontenera bĹÄdu */
    --md-sys-color-error: #BA1A1A;
    --md-sys-color-error-container: #FFDAD6;
    --md-sys-color-on-error: #FFFFFF;
    --md-sys-color-on-error-container: #410002;
}

[data-theme="dark"] {
    /* Dark theme */
    --md-sys-color-background: #1F1F1F;
    --md-sys-color-surface: #121212;
    --md-sys-color-primary: #90CAF9;
    --md-sys-color-on-primary: #003258;
    --md-sys-color-on-surface: #E3E3E3;
    --md-sys-color-outline: #938F99;
    --md-sys-color-surface-variant: #4c4c4c;

    /* Dodajemy kolory dla kontenera bĹÄdu w trybie ciemnym */
    --md-sys-color-error: #FFB4AB;
    --md-sys-color-error-container: #93000A;
    --md-sys-color-on-error: #690005;
    --md-sys-color-on-error-container: #FFDAD6;
}

@keyframes scroll-hint {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: var(--md-sys-color-on-surface);
    background: var(--md-sys-color-background);
    overflow-x: hidden;
}

/* Podstawowe style dla belki */
.app-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Pokazywanie belki */
.app-bar.show {
    transform: translateY(0);
}

/* Style dla belki po przewiniÄciu */
.app-bar.visible {
    background-color: var(--primary-color);
    box-shadow: var(--elevation-1);
}

/* Style dla trybu ciemnego po przewiniÄciu */
[data-theme="dark"] .app-bar.visible {
    background-color: var(--md-sys-color-surface);
}

/* Przezroczysta belka w hero section (dla obu trybĂłw) */
.app-bar:not(.visible) {
    background-color: transparent;
    box-shadow: none;
}

/* Kolory tekstu i ikon w hero section (dla obu trybĂłw) */
.app-bar:not(.visible) .nav-button,
.app-bar:not(.visible) .theme-toggle,
.app-bar:not(.visible) .app-title {
    color: var(--on-primary);
}

/* Kolory tekstu i ikon po przewiniÄciu w trybie jasnym */
.app-bar.visible .nav-button,
.app-bar.visible .theme-toggle,
.app-bar.visible .app-title {
    color: var(--on-primary);
}

/* Kolory tekstu i ikon po przewiniÄciu w trybie ciemnym */
[data-theme="dark"] .app-bar.visible .nav-button,
[data-theme="dark"] .app-bar.visible .theme-toggle,
[data-theme="dark"] .app-bar.visible .app-title {
    color: var(--md-sys-color-on-surface);
}

.app-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.app-bar-left:hover {
    opacity: 0.8;
}

.app-logo {
    height: 40px;
    width: auto;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@700&amp;display=swap');

.app-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: var(--on-surface);
    font-family: 'Roboto Mono', monospace;
}

.app-bar-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: none;
    border: none;
    color: var(--on-primary);
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-button:hover {
    opacity: 0.8;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    transition: background-color 0.2s;
}

.theme-toggle:hover {
    background-color: var(--surface-variant);
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 16px;
    background: var(--md-sys-color-background);
    position: relative;
    z-index: 1;
}

.welcome-card {
    position: relative;
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    scroll-margin-top: 80px;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-header {
    margin-bottom: 32px;
}

.welcome-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.welcome-logo {
    width: 48px;
    height: auto;
}

.welcome-header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Roboto Mono', monospace;
    color: var(--md-sys-color-on-surface);
}

.welcome-header .subtitle {
    font-size: 1.2rem;
    margin: 8px 0 0 64px;
    color: var(--md-sys-color-on-surface);
    opacity: 0.7;
    font-weight: 400;
}

.mission-statement {
    max-width: 800px;
    margin-bottom: 40px;
}

.mission-statement p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.activity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.activity-marker {
    width: 40px;
    height: 40px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.activity-marker .material-icons {
    color: var(--md-sys-color-primary);
    font-size: 24px;
}

.activity-emoji {
    display: none;
}

.activity p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    padding-top: 2px;
}

@media (max-width: 768px) {
    .welcome-card {
        padding: 32px 24px;
    }

    .welcome-title {
        gap: 8px;
    }

    .welcome-logo {
        width: 32px;
        height: auto;
    }

    .welcome-header h1 {
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .welcome-header .subtitle {
        margin: 8px 0 0 0;
        text-align: center;
    }

    .welcome-title {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .welcome-header h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .welcome-logo {
        width: 40px;
        margin-bottom: 8px;
    }

    .mission-statement p {
        font-size: 1rem;
    }

    .activities {
        gap: 16px;
    }
}

.join-us-section {
    background-color: var(--primary-color);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
}

.join-us-section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
    background-color: #2d5d96;
}

.join-us-section h2 {
    color: var(--on-primary);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 500;
}

.join-us-section p {
    color: var(--on-primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.join-us-section ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.join-us-section li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: white;
}

.join-us-section li:before {
    content: 'â˘';
    position: absolute;
    left: 8px;
    color: white;
}

.hero-section {
    height: 100vh;
    width: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.plus-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Style dla plusĂłw */
.plus {
    --rotation: 0deg;
    --size: 24px;
    position: absolute;
    font-size: var(--size);
    transform: rotate(var(--rotation));
    opacity: 0.5;
    color: white;
    user-select: none;
}

/* Pozycje plusĂłw */
.plus:nth-child(1) { --rotation: 15deg; --size: 24px; top: 10%; left: 15%; }
.plus:nth-child(2) { --rotation: -10deg; --size: 28px; top: 20%; left: 80%; }
.plus:nth-child(3) { --rotation: 25deg; --size: 24px; top: 45%; left: 15%; }
.plus:nth-child(4) { --rotation: -20deg; --size: 28px; top: 65%; left: 90%; }
.plus:nth-child(5) { --rotation: 5deg; --size: 22px; top: 75%; left: 25%; }
.plus:nth-child(6) { --rotation: -15deg; --size: 30px; top: 35%; left: 95%; }
.plus:nth-child(7) { --rotation: 30deg; --size: 20px; top: 85%; left: 75%; }
.plus:nth-child(8) { --rotation: -25deg; --size: 26px; top: 5%; left: 45%; }
.plus:nth-child(9) { --rotation: 20deg; --size: 34px; top: 55%; left: 5%; }
.plus:nth-child(10) { --rotation: -5deg; --size: 16px; top: 95%; left: 35%; }
.plus:nth-child(11) { --rotation: 10deg; --size: 28px; top: 20%; left: 65%; }
.plus:nth-child(12) { --rotation: -30deg; --size: 22px; top: 40%; left: 30%; }
.plus:nth-child(13) { --rotation: 35deg; --size: 32px; top: 60%; left: 55%; }
.plus:nth-child(14) { --rotation: -15deg; --size: 24px; top: 80%; left: 85%; }
.plus:nth-child(15) { --rotation: 25deg; --size: 20px; top: 10%; left: 25%; }
.plus:nth-child(16) { --rotation: -20deg; --size: 36px; top: 30%; left: 75%; }
.plus:nth-child(17) { --rotation: 15deg; --size: 26px; top: 50%; left: 40%; }
.plus:nth-child(18) { --rotation: -25deg; --size: 18px; top: 70%; left: 20%; }
.plus:nth-child(19) { --rotation: 30deg; --size: 32px; top: 90%; left: 60%; }
.plus:nth-child(20) { --rotation: -10deg; --size: 24px; top: 15%; left: 50%; }
.plus:nth-child(21) { --rotation: 20deg; --size: 28px; top: 82%; left: 12%; }
.plus:nth-child(22) { --rotation: -15deg; --size: 22px; top: 38%; left: 88%; }
.plus:nth-child(23) { --rotation: 25deg; --size: 34px; top: 68%; left: 45%; }
.plus:nth-child(24) { --rotation: -20deg; --size: 20px; top: 8%; left: 78%; }
.plus:nth-child(25) { --rotation: 15deg; --size: 26px; top: 92%; left: 32%; }
.plus:nth-child(26) { --rotation: -30deg; --size: 30px; top: 42%; left: 8%; }
.plus:nth-child(27) { --rotation: 10deg; --size: 24px; top: 72%; left: 92%; }
.plus:nth-child(28) { --rotation: -25deg; --size: 18px; top: 22%; left: 68%; }
.plus:nth-child(29) { --rotation: 35deg; --size: 32px; top: 48%; left: 28%; }
.plus:nth-child(30) { --rotation: -5deg; --size: 26px; top: 78%; left: 52%; }
.plus:nth-child(31) { --rotation: 20deg; --size: 22px; top: 18%; left: 95%; }
.plus:nth-child(32) { --rotation: -15deg; --size: 36px; top: 58%; left: 15%; }
.plus:nth-child(33) { --rotation: 30deg; --size: 20px; top: 88%; left: 82%; }
.plus:nth-child(34) { --rotation: -25deg; --size: 28px; top: 28%; left: 42%; }
.plus:nth-child(35) { --rotation: 15deg; --size: 24px; top: 62%; left: 72%; }
.plus:nth-child(36) { --rotation: -20deg; --size: 32px; top: 12%; left: 22%; }
.plus:nth-child(37) { --rotation: 25deg; --size: 26px; top: 52%; left: 92%; }
.plus:nth-child(38) { --rotation: -10deg; --size: 20px; top: 82%; left: 38%; }
.plus:nth-child(39) { --rotation: 30deg; --size: 34px; top: 32%; left: 58%; }
.plus:nth-child(40) { --rotation: -15deg; --size: 28px; top: 98%; left: 88%; }

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 90%;
    height: auto;
    min-width: 1400px;
}

@media (max-width: 1600px) {
    .hero-logo {
        min-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .hero-logo {
        min-width: 900px;
    }
}

@media (max-width: 992px) {
    .hero-logo {
        min-width: unset;
        width: 95%;
    }
}

.scroll-hint {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    gap: 2px;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.scroll-hint:hover {
    opacity: 1 !important;
}

.scroll-hint.show {
    opacity: 0.9;
}

.scroll-hint .chevron {
    font-size: 16px;
}

/* Style dla sekcji zarzÄdu */
.board-section {
    background-color: var(--md-sys-color-surface);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease-in-out;
}

.board-section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.board-member {
    text-align: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid var(--md-sys-color-primary);
    background: var(--md-sys-color-surface-variant);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon {
    font-size: 64px;
    color: var(--md-sys-color-primary);
}

.board-member h3 {
    color: var(--md-sys-color-on-surface);
    margin: 8px 0;
    font-size: 1.2rem;
}

.board-member .role {
    color: var(--primary-color);
    font-weight: 500;
    margin: 4px 0;
}

.board-member .specialization {
    color: var(--md-sys-color-on-surface);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Style dla sekcji kontaktu */
.contact-section {
    background-color: var(--md-sys-color-surface);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease-in-out;
}

.contact-section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-details h3 {
    color: var(--md-sys-color-on-surface);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--md-sys-color-on-surface);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Style dla sekcji polecanych ĹşrĂłdeĹ */
.recommended-section {
    background-color: var(--md-sys-color-surface);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease-in-out;
}

.recommended-section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.resource-item {
    padding: 16px;
    background-color: var(--md-sys-color-surface-variant);
    border-radius: 8px;
}

.resource-item h3 {
    color: var(--primary-color);
    margin: 0 0 16px 0;
    font-size: 1.1rem;
}

.resource-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.resource-item li {
    color: var(--md-sys-color-on-surface);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

.resource-item li:last-child {
    border-bottom: none;
}

.resource-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.resource-item a:hover {
    text-decoration: underline;
}

/* WspĂłlne styles dla wszystkich sekcji */
.board-section h2,
.contact-section h2,
.recommended-section h2 {
    color: var(--md-sys-color-primary);
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Roboto Mono', monospace;
}

.board-section .subtitle,
.contact-section .subtitle,
.recommended-section .subtitle {
    color: var(--md-sys-color-on-surface);
    opacity: 0.7;
    margin: 0;
    font-size: 1rem;
    margin-bottom: 24px;
}

.welcome-section {
    background-color: var(--md-sys-color-surface);
    border-radius: 16px;
    padding: 24px;
    margin: 16px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease-in-out;
}

.welcome-section:hover {
    box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
}

.welcome-section h2 {
    color: var(--md-sys-color-primary);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 500;
}

.welcome-section p {
    color: var(--md-sys-color-on-surface);
    line-height: 1.5;
    margin-bottom: 24px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.activity-icon {
    font-size: 24px;
    min-width: 32px;
    text-align: center;
}

.activity-item p {
    margin: 0;
    font-size: 0.95rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-logo {
    max-width: 300px;
    height: auto;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--on-surface);
    margin: 0;
}

@media (max-width: 768px) {
    .nav-button span:not(.material-icons) {
        display: none;
    }

    .nav-button {
        padding: 8px;
    }

    .app-title {
        font-size: 1rem;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        border-radius: 50px;
    }

    .member-icon {
        font-size: 48px;
    }
}

.join-card {
    position: relative;
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.join-header {
    margin-bottom: 32px;
}

.join-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--md-sys-color-primary);
    font-family: 'Roboto Mono', monospace;
}

.join-header .subtitle {
    font-size: 1.1rem;
    margin: 8px 0 0 0;
    opacity: 0.7;
}

.join-description {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-marker {
    width: 40px;
    height: 40px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-marker .material-icons {
    color: var(--md-sys-color-primary);
    font-size: 24px;
}

.benefit p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    padding-top: 8px;
}

.join-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border: none;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.join-button:hover {
    background-color: var(--primary-800);
}

.join-button .material-icons {
    font-size: 20px;
}

@media (max-width: 768px) {
    .join-card {
        padding: 24px;
    }

    .join-header h2 {
        font-size: 1.75rem;
    }

    .join-benefits {
        gap: 16px;
    }
}

.board-card {
    position: relative;
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.board-header {
    margin-bottom: 32px;
}

.board-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--md-sys-color-primary);
    font-family: 'Roboto Mono', monospace;
}

.board-header .subtitle {
    font-size: 1.1rem;
    margin: 8px 0 0 0;
    opacity: 0.7;
}

.board-members {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.board-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid var(--md-sys-color-primary);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--md-sys-color-on-surface);
}

.member-role {
    margin: 4px 0 0 0;
    font-size: 1rem;
    color: var(--md-sys-color-primary);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .board-members {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .board-card {
        padding: 24px;
    }

    .board-header h2 {
        font-size: 1.75rem;
    }

    .board-members {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-photo {
        width: 100px;
        height: 100px;
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .board-members {
        grid-template-columns: 1fr;
    }
}

.about-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Przyciemnienie tĹa */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    backdrop-filter: blur(8px); /* Dodatkowy blur dla tĹa */
    -webkit-backdrop-filter: blur(8px); /* Wsparcie dla Safari */
}

.about-panel.open {
    opacity: 1;
    visibility: visible;
}

.about-panel-content {
    background: var(--md-sys-color-surface);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.about-panel.open .about-panel-content {
    transform: translateY(0);
}

.about-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.close-panel {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--md-sys-color-surface-variant);
    border: none;
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.close-panel:hover {
    background-color: var(--md-sys-color-outline);
}

.about-panel-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 16px; /* Miejsce na scrollbar */
}

/* Stylizacja scrollbara */
.about-panel-body::-webkit-scrollbar {
    width: 8px;
}

.about-panel-body::-webkit-scrollbar-track {
    background: var(--md-sys-color-surface-variant);
    border-radius: 4px;
}

.about-panel-body::-webkit-scrollbar-thumb {
    background: var(--md-sys-color-primary);
    border-radius: 4px;
}

@media (max-width: 480px) {
    .about-panel-content {
        width: 95%;
        padding: 24px;
    }
}

/* Dodaj efekt blur dla tĹa */
body.panel-open {
    overflow: hidden;
}

body.panel-open .app-bar,
body.panel-open .main-content,
body.panel-open .hero-section {
    filter: blur(8px);
    transition: filter 0.3s ease-in-out;
}

/* Style dla nagĹĂłwkĂłw sekcji */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-header .material-icons {
    color: var(--md-sys-color-primary);
    font-size: 24px;
}

.section-header h3 {
    font-size: 1.2rem;
    color: var(--md-sys-color-primary);
    margin: 0;
}

.about-section {
    margin-bottom: 32px;
}

.about-section p {
    margin: 0;
    line-height: 1.6;
    color: var(--md-sys-color-on-surface);
}

.contact-card {
    position: relative;
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.contact-header {
    margin-bottom: 32px;
}

.contact-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--md-sys-color-primary);
    font-family: 'Roboto Mono', monospace;
}

.contact-header .subtitle {
    font-size: 1.1rem;
    margin: 8px 0 0 0;
    opacity: 0.7;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-marker {
    width: 40px;
    height: 40px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-marker .material-icons {
    color: var(--md-sys-color-primary);
    font-size: 24px;
}

.contact-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: var(--md-sys-color-on-surface);
}

.contact-info p {
    margin: 0;
    line-height: 1.4;
}

.contact-info a {
    color: var(--md-sys-color-primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-info a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 24px;
    }

    .contact-header h2 {
        font-size: 1.75rem;
    }

    .contact-items {
        gap: 24px;
    }
}

.partners-card {
    position: relative;
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    color: var(--md-sys-color-on-surface);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.partners-header {
    margin-bottom: 32px;
}

.partners-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--md-sys-color-primary);
    font-family: 'Roboto Mono', monospace;
}

.partners-header .subtitle {
    font-size: 1.1rem;
    margin: 8px 0 0 0;
    opacity: 0.7;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 16px;
    transition: transform 0.2s ease-in-out;
}

.partner-item:hover {
    transform: translateY(-2px);
}

.partner-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 32px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info {
    flex: 1;
}

.partner-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: var(--md-sys-color-on-surface);
}

.partner-info p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .partners-card {
        padding: 24px;
    }

    .partners-header h2 {
        font-size: 1.75rem;
    }

    .partner-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
        padding: 28px;
    }
}

/* Usuwamy trigger */
.app-bar-trigger {
    display: none;
}

/* Usuwamy hover efekt */
.app-bar-trigger:hover + .app-bar,
.app-bar:hover {
    transform: none;
}

.hidden {
    display: none !important;
}

.activities-header {
    font-size: 1.2rem;
    color: var(--md-sys-color-primary);
    margin: 0 0 16px 0;
    font-family: 'Roboto Mono', monospace;
}

.map-choice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.map-choice.show {
    display: flex;
}

.map-choice-content {
    background: var(--md-sys-color-surface);
    padding: 24px;
    border-radius: 16px;
    min-width: 280px;
    text-align: center;
    position: relative;
}

.close-map-panel {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--md-sys-color-surface-variant);
    color: var(--md-sys-color-on-surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    padding: 0;
}

.close-map-panel:hover {
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    transform: scale(1.1);
}

.close-map-panel .material-icons {
    font-size: 18px;
}

/* Dodaj klasÄ dla efektu blur */
body.map-open .app-bar,
body.map-open .main-content,
body.map-open .hero-section {
    filter: blur(8px);
    transition: filter 0.1s ease-in-out;
}

.map-choice-content h3 {
    margin: 0 0 16px 0;
    color: var(--md-sys-color-on-surface);
}

.map-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 8px;
    color: var(--md-sys-color-on-surface);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.map-option:hover {
    background: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    transform: translateY(-2px);
}

.map-option .material-icons {
    font-size: 20px;
}

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/MaterialIcons-Regular.woff2') format('woff2');
}

.resources-card {
    background: var(--md-sys-color-surface);
    border-radius: 24px;
    padding: 40px;
    margin: 32px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.resource-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--md-sys-color-primary);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-list li {
    padding: 16px;
    background: var(--md-sys-color-surface-variant);
    border-radius: 12px;
    transition: transform 0.2s ease-in-out;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-list li:hover {
    transform: translateY(-2px);
}

.resource-list a {
    color: var(--md-sys-color-primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.resource-list p {
    margin: 8px 0 0 0;
    font-size: 0.9rem;
    color: var(--md-sys-color-on-surface);
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-list .material-icons {
    font-size: 16px;
}

@media (max-width: 768px) {
    .resources-card {
        padding: 24px;
    }
    
    .resources-grid {
        gap: 24px;
    }

    .resource-list li {
        height: auto;
        min-height: 70px;
    }
}

/* WspĂłlne style dla wszystkich nagĹĂłwkĂłw sekcji */
.board-section h2,
.contact-section h2,
.recommended-section h2,
.resources-card h2,
.partners-card h2 {
    color: var(--md-sys-color-primary);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}

.board-section .subtitle,
.contact-section .subtitle,
.recommended-section .subtitle,
.resources-card .subtitle,
.partners-card .subtitle {
    color: var(--md-sys-color-on-surface);
    opacity: 0.7;
    margin: 0;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.incident-card {
    background: var(--md-sys-color-error-container);
    border-radius: 24px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
}

.incident-header {
    margin-bottom: 24px;
}

.incident-header h2 {
    color: var(--md-sys-color-on-error-container);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
}

.incident-header .subtitle {
    color: var(--md-sys-color-on-error-container);
    opacity: 0.8;
    margin: 8px 0 0 0;
    font-size: 1.1rem;
}

.incident-info {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--md-sys-color-on-error-container);
    margin-bottom: 24px;
}

.incident-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.incident-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--md-sys-color-on-error-container);
    color: var(--md-sys-color-error-container);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 500;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.incident-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.incident-button .material-icons {
    font-size: 20px;
}

@media (max-width: 768px) {
    .incident-card {
        padding: 24px;
    }
    
    .incident-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .incident-button {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        padding: 12px 16px;
    }

    .incident-info {
        font-size: 1rem;
    }
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s ease-in-out;
}

.language-toggle:hover {
    transform: scale(1.1);
}

.language-flag {
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-flag[data-lang="pl"] {
    display: var(--show-pl-flag, block);
}

.language-flag[data-lang="en"] {
    display: var(--show-en-flag, none);
}

[lang="en"] .language-flag[data-lang="pl"] {
    display: var(--show-pl-flag, none);
}

[lang="en"] .language-flag[data-lang="en"] {
    display: var(--show-en-flag, block);
}

.flag-icon {
    width: 24px;
    height: 16px;
    display: block;
    border-radius: 2px;
}

.footer {
    background-color: var(--md-sys-color-surface);
    padding: 24px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(121, 116, 126, 0.08); /* Delikatniejsza linia podziaĹu */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
    color: var(--md-sys-color-on-surface);
    opacity: 0.6; /* Zgodnie z MD Guidelines dla tekstu pomocniczego */
    font-size: 0.875rem; /* 14px - standardowy rozmiar dla tekstu pomocniczego w MD */
    line-height: 1.4;
    letter-spacing: 0.15px; /* Poprawia czytelnoĹÄ maĹego tekstu */
}

/* Style dla trybu ciemnego */
[data-theme="dark"] .footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

</pre></body></html>