      /* Strona O nas */
#onas {
    width: 100%;
    background-color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #66B0FA 0%, #1c2833 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
}

.content-section.alt-bg {
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1c2833;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #66B0FA, #1c2833);
    border-radius: 2px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.text-content p {
    margin-bottom: 20px;
    
}
.text-content>p {
    
    color: #1c2833;
}
b{
    
    color: #1c2833;
}
.mission-text>p {
    color: #1c2833;
}
.mission-text {
    
    text-align: justify;
}

.quote {
    background: linear-gradient(135deg, #66B0FA, #1c2833);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
    text-align: left;
    box-shadow: 0 5px 15px rgba(102, 176, 250, 0.3);
}

.quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 10px !important;
}

.quote span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Images */
.image-content {
    text-align: center;
}

.content-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    color: #1c2833;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
}

/* Collage Section */
.collage-section {
    margin-top: 60px;
}

.collage-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #1c2833;
    font-size: 1.8rem;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.collage-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.05);
}

.collage-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.collage-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 10px 10px;
    text-align: center;
    font-weight: 600;
}

/* Mission Content */
.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.mission-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.mission-list li:last-child {
    border-bottom: none;
}

.fundraising-info {
    background: #e8f4ff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #66B0FA;
    margin-top: 30px;
}

.fundraising-info h4 {
    color: #1c2833;
    margin-bottom: 10px;
}
.fundraising-info p {
    color: #1c2833;
    
}

.community-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1c2833 0%, #66B0FA 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    color: white !important;
    margin-bottom: 20px;
}

.cta-section h2::after {
    background: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
}
/* Galeria zdjęć z powiększeniem */
.collage-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collage-image:hover {
    transform: scale(1.05);
}

/* Modal do powiększonych zdjęć */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin-top: 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 1px;
    right: 1px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
    background: rgba(196, 196, 196, 0.781);
    width: 37px;
    height: 37px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid rgb(245, 245, 245);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-modal:hover {
    color: #000000;
    background-color: #007bff;
    border:1px solid rgba(100, 36, 36, 0.37)
}

.image-caption-modal {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Efekt powiększenia dla klikniętego zdjęcia */
.collage-item.zoomed .collage-image {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(102, 176, 250, 0.5);
}

/* Animacja dla modalnego zdjęcia */
#modal-image {
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Przyciski nawigacji (opcjonalnie) */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.modal-nav:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}
/* === SEKCJA YOUTUBE === */
.youtube-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #ff0000;
}

.youtube-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    
}

.video-description {
    font-size: 1.1em;
    color: #555;
    margin: 15px 0;
    line-height: 1.6;
}
.video-description strong{
    color: #555;
}

.youtube-channel-link {
    display: inline-block;
    background: #ff0000;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.youtube-channel-link:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.3);
}

/* Responsywność */

@media (max-width: 480px) {
    .video-container iframe {
        height: 250px;
    }
}
/* Responsywność */
@media (max-width: 768px) {    
    .video-container iframe {
        height: 300px;
    }
    
    .youtube-section {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .youtube-section h3 {
        font-size: 1.5em;
    }
    .modal-content {
        width: 95%;
        height: 90%;
        padding: 10px;
    }
    

    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .image-caption-modal {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .collage-grid {
        grid-template-columns: 1fr;
    }
    
    .collage-image {
        height: 150px;
    }
}
/* Responsywność */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .collage-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .activity-card {
        padding: 20px;
    }
}