/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 03 2025 | 16:16:41 */
    :root {
        --primary: #264653;      
        --accent: #e9c46a;       
        --bg-body: #f3f5f4;      
        --text-dark: #2d3436;
        --text-muted: #636e72;
        --card-radius: 16px;     
    }

    body {
        background-color: var(--bg-body);
        font-size: 19px;
        color: var(--text-dark);
        line-height: 1.7;
    }

    h1, h2, h3, h4, h5 {
        color: var(--primary);
        font-weight: 700;
    }

    /* --- Nawigacja --- */
    .navbar {
        background: white;
        box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        padding: 15px 0;
    }
    .navbar-brand { font-size: 1.6rem; color: var(--primary) !important; font-weight: bold; letter-spacing: 0.5px; }
    .nav-link { color: var(--text-dark) !important; font-weight: 600; margin: 0 8px; transition: color 0.3s; }
    .nav-link:hover, .nav-link.active { color: var(--primary) !important; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }

    /* --- Baner --- */
    .hero-banner {
        background-image: url('seniorzy.jpg');
        background-size: cover;
        background-position: center 30%;
        height: 450px; 
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 50px;
    }
    .hero-banner::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background: rgba(38, 70, 83, 0.5); /* Ciemny overlay */
    }
    .hero-banner .container {
        position: relative;
        z-index: 2; 
    }
    /* Responsywność Baneru */
    @media (max-width: 992px) {
        .hero-banner { height: 350px; }
        .hero-banner h1 { font-size: 2.5rem; }
    }
    @media (max-width: 576px) {
        .hero-banner { height: 250px; }
        .hero-banner h1 { font-size: 2rem; }
        .hero-banner p { font-size: 1rem; }
    }
    
    /* --- Karty --- */
    /* Karta Główna, Kontakt, Kalendarz, Wideo, Wszystkie Artykuły (mają hover) */
    .modern-card {
        background: #ffffff !important;
    	padding: 25px !important;
    	border-radius: 20px !important;
    	box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
    }
   

    /* Karta Galerii (bez hovera na całej karcie) */
    .gallery-module {
        background: white; border: none; border-radius: var(--card-radius);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 30px; overflow: hidden;
        padding: 25px; 
    }

    .article-img { width: 100%; height: 300px; object-fit: cover; }
    .article-body { padding: 35px; } 

    .tag { background: var(--bg-body); color: var(--primary); padding: 5px 15px; border-radius: 50px; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; }
    .btn-elegant { background-color: var(--primary); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; display: inline-block; margin-top: 15px; transition: background 0.3s; border: none; }
    .btn-elegant:hover { background-color: #1a3c4a; color: white; }
    
    /* Komentarze */
    .comment-box {
        background: #fafafa;
        border-left: 4px solid var(--accent);
        padding: 20px;
        margin-top: 20px;
        font-size: 0.95rem;
    }

    /* Styl przycisku akcentującego dla "Wszystkie Artykuły" i Wideo */
    .btn-accent {
        background-color: var(--accent);
        color: var(--primary);
        font-weight: bold;
        padding: 10px 25px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-block;
        margin-top: 15px;
        transition: background 0.3s;
    }
    .btn-accent:hover {
        background-color: #e0b44a;
        color: var(--primary);
    }
    
    /* --- Galeria (Z ANIMACJĄ HOVER NA ZDJĘCIACH) --- */
    .gallery-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-container img {
        width: 100%; height: 120px; object-fit: cover; border-radius: 10px; cursor: pointer;
        transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; 
    }
    .gallery-container img:hover { transform: scale(1.1); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); z-index: 10; }

    /* --- Sidebar & Stopka --- */
    .sidebar-title { font-size: 1.3rem; border-bottom: 2px solid var(--accent); padding-bottom: 10px; margin-bottom: 20px; display: inline-block; }
    
    /* Styl Social Media (zachowany) */
    .social-module {
        background: white; border-radius: var(--card-radius);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 30px;
        padding: 25px; 
        text-align: center;
    }
    .social-btn { 
        flex: 1; padding: 12px; text-align: center; border-radius: 12px; color: white; 
        text-decoration: none; font-size: 1.1rem; display: block; margin-bottom: 10px; 
        transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s; 
    }
    .social-btn:hover { 
        opacity: 0.9; 
        color: white; 
        transform: translateY(-3px); 
        box-shadow: 0 5px 10px rgba(0,0,0,0.2); 
    }

    .bg-fb { background: #3b5998; } .bg-yt { background: #c4302b; } .bg-tt { background: #000000; }
    .event-card { display: flex; align-items: center; background: var(--bg-body); padding: 15px; border-radius: 12px; margin-bottom: 15px; }
    .event-date-box { background: white; color: var(--primary); min-width: 65px; text-align: center; padding: 8px 5px; border-radius: 10px; margin-right: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .event-day { font-size: 1.5rem; font-weight: 700; line-height: 1; display: block;}
    .event-month { font-size: 0.75rem; text-transform: uppercase; font-weight: bold; }
    footer { background: var(--primary); color: white; padding: 60px 0 30px 0; margin-top: 50px; }
    footer a { color: #ccc; text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--accent); }
    .footer-legal { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding-top: 20px; font-size: 0.9rem; opacity: 0.8; }

