*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

html,
body{
    overflow-x:hidden;
}

/* ==========================================
   HERO / STRONA GŁÓWNA
========================================== */

.hero{
    position:relative;
    min-height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("../img/hero.jpg");

    background-size:cover;
    background-position:center top;

    display:flex;
    align-items:center;
    justify-content:flex-start;
}

.overlay{
    display:none;
}

.content{
    max-width:700px;
    padding:60px;
    margin-left:8%;
    text-align:center;;
    position:relative;
    z-index:1;
}

.top-nav{
    max-width:1400px;
    margin:0 auto;
    position:absolute;
    right:40px;
    top:25px;
    gap:25px;
    z-index:10;

    display:flex;

}

.top-nav a:not(:last-child)::after{
    content:"";
    display:inline-block;
    width:1px;
    height:12px;
    background:#555;
    margin-left:20px;
    vertical-align:middle;
}

.top-nav a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-size:0.9rem;
    letter-spacing:1.5px;

    border-bottom:2px solid transparent;
    transition:.3s;
}

.top-nav a:hover{
    border-bottom:2px solid #d40000;
}

.logo{
    width:280px;
    max-width:90%;
    display:block;
    margin:0 auto;
}

h1{
    font-size:4rem;
    font-family:"Cinzel", serif;
    text-transform:uppercase;
    line-height:1.05;
}

.line{
    width:380px;
    max-width:90%;
    height:3px;
    background:#d40000;
    margin:25px auto;
}

.slogan{
    font-size:1.4rem;
    letter-spacing:4px;
    color:#ddd;
}

.contact{
    margin-top:40px;
    text-align:center;
}

.contact div{
    margin-bottom:15px;
    font-size:1.4rem;
}

.contact i{
    color:#d40000;
    margin-right:10px;
}

.contact a,
.contact a:visited{
    color:#fff;
    text-decoration:none;
}

.contact a:hover{
    color:#ff2b2b;
}

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

.social a{
    width:60px;
    height:60px;

    border:2px solid #d40000;
    border-radius:12px;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    text-decoration:none;
    font-size:28px;

    transition:.3s;
}

.social a:hover{
    background:#d40000;
}

/* ==========================================
   GŁÓWNA OFERTA
========================================== */

.services{
    background:#050505;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:80px 30px;
}

.box{
    text-align:center;
}

.box h2{
    color:#fff;
    margin-bottom:15px;
}

.box p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:18px;
}

/* ==========================================
   STRONY / NAGŁÓWEK
========================================== */

.page-header{
    background:#050505;
    padding:80px 40px 40px;
    text-align:center;
}

.page-header h1{
    font-family:"Cinzel", serif;
    font-size:3rem;
    color:#fff;
}

.reviews-badge {
    margin-top: 35px;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

.reviews-badge a {
    color: #ffffff;
    text-decoration: none;
}

.reviews-badge:hover {
    color: #d40000;
}

/* ==========================================
   NEWS / ARTYKUŁY
========================================== */

.news{
    max-width:1200px;
    margin:0 auto;
    padding:60px 30px;
    display:grid;
    gap:30px;
}

.news-item{
    max-width:1200px;
    width:100%;
    margin:50px auto 0;

    background:#111;
    border:1px solid #222;
    border-radius:12px;
    padding:40px;
}

.news-item h2{
    color:#fff;
    margin-bottom:15px;
}

.news-item p{
    color:#bbb;
    line-height:1.6;
    margin-bottom:12px;
}

.news-item p:last-child{
    margin-bottom:0;
}

.news-item a{
    color:#d40000;
    text-decoration:none;
    font-weight:600;
}

.news-item a:hover{
    color:#ff2b2b;
}

.news-date{
    color:#d40000;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:12px;
}

.news-content{
    display:flex;
    align-items:flex-start;
    gap:35px;
}

.news-text{
    flex:1;
    width:650px;
}

.news-image{
    display:flex;
    justify-content:flex-end;
    flex:0 0 320px;
}

.news-image img{
    width:100%;
    max-width:380px;
    height:auto;
    object-fit:contain;
    display:block;
}

.article-gallery-link {
    margin-top: 30px;
    text-align: center;
}

.article-gallery-link img {
    width: 250px;
    max-width: 100%;
    border-radius: 10px;
    transition: 0.3s;
    text-align: center;
}

.article-gallery-link img:hover {
    transform: scale(1.03);
}

.article-gallery-link p {
    margin-top: 10px;
    text-align: center;
}

.article-gallery-link a {
    color: #fff;
    text-decoration: none;
    text-align: center;
}

.news-sidebar{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

.article-gallery-link{
    margin-top:0;
    text-align:center;
}

.gallery-link{
    text-align:center;
    margin-top:30px;
}

.partner-socials p {
    margin-bottom: 10px;
}

.partner-socials i {
    color: #d40000;
    margin-right: 8px;
    width: 18px;
}

.video-container{
    max-width:800px;
    margin:30px auto;
    border-radius:12px;
    overflow:hidden;
}

.video-container iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
}

.news-poster{
    margin-top:20px;
        width:320px;
    margin:0;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.news-image figcaption{
    margin-top:8px;
    text-align:center;
    font-size:.85rem;
    color:#888;
}


/* ==========================================
   GALERIA
========================================== */

.gallery-grid{
    max-width:1400px;
    margin:50px auto;
    padding:0 30px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.gallery-card{
    display:block;

    background:#111;
    border-radius:12px;

    overflow:hidden;

    text-decoration:none;
    color:#fff;

    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-5px);
    box-shadow: 0 0 25px rgba(255,0,0,.2);
}

.gallery-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.gallery-info{
    padding:20px;
}

.gallery-info h2{
    margin-bottom:10px;
}

.gallery-info p{
    color:#aaa;
}

.photo-grid{
    max-width:1400px;
    margin:40px auto;
    padding:0 30px;

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

.photo-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition: 0.3s;

    border-radius:10px;

    transition:.3s;
}

.photo-grid img:hover{
    transform:scale(1.03);
}

.gallery-title{
    text-align:center;
    font-size:2rem;
    margin-top:50px;
    margin-bottom:10px;
}

.gallery-description{
    text-align:center;
    font-size:1.2rem;
    color:#bbb;
    margin-bottom:60px;
}

.share-container {
    text-align: center;
    margin-top: 25px;
}

.gallery-credit{
    margin-top:10px;
    text-align:center;
    font-size:.82rem;
    color:#888;
    letter-spacing:1px;
}

.gallery-credit strong{
    color:#cfcfcf;
    font-weight:600;
}


/* ==========================================
   SHARE / FOLLOW
========================================== */

.share-section{
    margin-top:40px;
    text-align:center;
}

.share-btn{
    background:#d40000;
    color:#fff;

    border:none;
    border-radius:8px;
    padding:12px 24px;

    font-size:1rem;
    font-weight:600;
    cursor:pointer;

    transition:.2s;
}

.share-btn:hover{
    background:#ff2b2b;
}

.article-actions{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.follow-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#1877f2;
    color:#fff;
    text-decoration:none;

    padding:12px 24px;
    border-radius:8px;

    font-weight:600;
    transition:.2s;
}

.follow-btn:hover{
    background:#2d88ff;
}

/* ==========================================
   LOGO NA PODSTRONACH
========================================== */

.site-logo{
    position:absolute;
    top:20px;
    left:40px;
    z-index:10;
}

.site-logo img{
    height:100px;
    width:auto;
    display:block;
    transition:.3s;
}

.site-logo img:hover{
    transform:scale(1.05);
}

/* ==========================================
   FOOTER
========================================== */

footer{
    text-align:center;
    padding:20px;
    background:#000;
    color:#999;
}

footer a{
    color:#ccc;
    text-decoration:none;
}

footer a:hover{
    color:#fff;
}

main{
    padding-top:40px;
}

/* ==========================================
   KONTAKT
========================================== */

.contact-page{
    max-width:1000px;
    margin:120px auto 60px;
    text-align:center;
}

.contact-card{
    background:#0f0f0f;
    border-radius:15px;
    padding: 40px 50px;
    max-width:600px;
    margin:0 auto;
}

.contact-card p{
    margin:20px 0;
    font-size:1.2rem;
}

.contact-card a{
    color:#fff;
    text-decoration:none;
}

.contact-card a:hover{
    color:#ff0000;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    margin-left: 12px;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #35e97a;
}

/* ==========================================
   MAPA
========================================== */

.map-section{
    max-width:1000px;
    margin:60px auto;
    text-align:center;
}

.map-section h2{
    margin-bottom:25px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:15px;
}

.route-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:#c00000;
    color:white;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

.route-btn:hover{
    background:#e00000;
    transform: translateY(-2px);
}

iframe {
    border-radius: 15px;
}

/* ==========================================
   O NAS
========================================== */
.about-card {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
    background: #0f1012;
    border: 1px solid #222;
    border-radius: 18px;
}

.about-card h2 {
    color: #fff;
    margin-bottom: 20px;
}

.about-card p,
.about-card li {
    color: #d0d0d0;
    line-height: 1.8;
}

.offer-list {
    margin-top: 20px;
    padding-left: 20px;
}

.page-slogan {
    text-align: center;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.95rem;
    margin: 10px auto 50px auto;
}

.about-divider {
    width: 220px;
    height: 3px;
    background: #d40000;
    margin: 20px auto 40px auto;
    border-radius: 3px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s;
}

.social-links a:hover {
    color: #d40000;
}

.main-social {
    font-size: 1.2rem;
    font-weight: 700;
}

.content-link:hover {
    color: #d40000;
}

.content-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #d40000;
    transition: .2s ease;
}

.content-link:hover {
    color: #ff4040;
    border-bottom-color: #ff4040;
}

.about-card h2{
    position:relative;
    padding-bottom:12px;
}

.about-card h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#d40000;
}

.lang-switch{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    margin-top:20px;
    margin-bottom:10px;

    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.lang-switch a{
    color:#bdbdbd;
    text-decoration:none;
    font-weight:600;
    transition:.2s;
}

.lang-switch a:hover{
    color:#ffffff;
}

.lang-switch .active{
    color:#d62828;
    font-weight:700;
}

/* ===== NEWS ARTICLE LAYOUT ===== */

.news-content{
    display:flex !important;
    align-items:flex-start;
    gap:40px;
}

.news-text{
    flex:1 1 auto;
    max-width:none;
}

.news-image{
    flex:0 0 340px;
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
}

.news-poster{
    width:340px;
    height:auto;
    display:block;
    float:none !important;
    margin:0 !important;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.video-container{
    width:100%;
    max-width:900px;
    margin:35px auto;
}

.video-container iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:12px;
}

@media (max-width:900px){

.news-content{
    flex-direction:column;
}

.news-image{
    width:100%;
    justify-content:center;
}

.news-poster{
    width:100%;
    max-width:340px;
}

}

/* ===== EVENTS PAGE ===== */

.livejumping-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    background:#b30000;
    color:#fff;

    border-radius:8px;
    text-decoration:none;
    transition:.2s;
}

.livejumping-btn:hover{
    background:#d60000;
}

.event-status{
    display:inline-block;
    margin-top:8px;
    padding:7px 12px;
    border-radius:8px;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.event-status-upcoming{
    color:#fff;
    background:#b30000;
}

.event-status-active{
    color:#000;
    background:#fff;
}

.event-status-ended{
    color:#aaa;
    background:#1b1b1b;
    border:1px solid #333;
}

.event-links{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:14px;
}

.event-links a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 14px;
    border-radius:8px;
    background:#111;
    border:1px solid #333;
    color:#fff;
    font-weight:700;
}

.event-links a:hover{
    border-color:#d40000;
    color:#ff2b2b;
}

.event-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,0,0,.15);
}

.upcoming-event{
    width:100%;
    max-width:520px;

    margin:40px auto 0;

    background:rgba(0,0,0,.45);

    border:1px solid rgba(255,255,255,.1);

    border-radius:16px;

    backdrop-filter:blur(10px);

    padding:20px 24px;

    color:#fff;
}

.upcoming-event h3{
    margin:0 0 15px;
    color:#fff;
}

.upcoming-event .date{
    color:#cfcfcf;
    font-size:.95rem;
}

.upcoming-event .countdown{
    display:inline-block;

    margin-top:15px;

    background:#d40000;

    color:#fff;

    padding:8px 14px;

    border-radius:8px;

    font-weight:bold;
}

.upcoming-event .button{

    display:inline-block;

    margin-top:20px;

    padding:10px 18px;

    background:#d40000;

    color:white;

    text-decoration:none;

    border-radius:8px;
}

.upcoming-event .button:hover{

    background:#ff1b1b;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .hero{
        height:auto;
        min-height:100vh;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        padding:20px 20px 40px;
        background-position:center top;
    }

    .site-logo{
        display:none;
    }

    .top-nav{
        position:static;
        width:100%;
        justify-content:center;
        align-items:center;
        gap:15px;
        flex-wrap:wrap;
        margin:10px 0 25px;
    }

    .top-nav a{
        font-size:.8rem;
        letter-spacing:1px;
    }

    .content{
        width:100%;
        max-width:100%;
        padding:10px 0 0;
    }

    .logo{
        width:110px;
        max-width:110px;
        margin:0 auto 15px;
        opacity:.95;
        display:block;
    }

    h1{
        font-size:2.2rem;
        line-height:1.1;
    }

    .line{
        width:80%;
        margin:20px auto;
    }

    .slogan{
        font-size:1rem;
        letter-spacing:1px;
    }

    .contact{
        margin-top:20px;
    }

    .contact div{
        font-size:1.05rem;
        margin-bottom:10px;
    }

    .social{
        gap:12px;
        margin-top:25px;
        flex-wrap:wrap;
    }

    .social a{
        width:50px;
        height:50px;
        font-size:22px;
    }

    .services{
        grid-template-columns:1fr;
        padding:40px 20px;
    }

    .page-header{
        padding:70px 20px 35px;
    }

    .page-header h1{
        font-size:2.2rem;
    }

    .news{
        padding:20px 10px;
    }

    .news-item{
        padding:20px;
        margin-top:20px;
    }

    .news-content{
        flex-direction:column;
        gap:20px;
    }

    .news-image{
        justify-content:center;
    }

    .news-image img{
        width:100%;
        max-width:320px;
        height:auto;
    }

    .news-item h2{
    font-size:1.8rem;
    line-height:1.25;
    align-self: center;
    }

    .gallery{
        padding:20px;
        grid-template-columns:1fr;
    }

    .gallery img{
        height:auto;
    }

    .article-actions{
        flex-direction:column;
        align-items:center;
    }

    .share-btn,
    .follow-btn{
        width:100%;
        max-width:320px;
        justify-content:center;
    }

    footer{
        font-size:.9rem;
        padding:15px;
    }
}

/* ===== NEWS MOBILE FIX ===== */

@media (max-width:768px){

    .news-content{
        display:block;
    }

    .news-text{
        max-width:100%;
    }

    .news-poster{
        float:none;
        display:block;
        width:100%;
        max-width:340px;
        margin:25px auto;
    }

}
