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

@font-face {
  font-family: 'opensans';
  src: url('OpenSans-Italic-VariableFont_wdth,wght.ttf') format('tff2'),
       url('OpenSans-VariableFont_wdth,wght.tff') format('tff2');
}

body {
    font-family: 'opensans', sans-serif;
    background: #f8f7f4;
    color: #2c2c2c;
    line-height: 1.5;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.header-logo {
    width: 480px;
    height: 140px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-switcher .lang {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: 0.2s;
}

.lang-switcher .lang:hover {
  color: #007BFF;
  transform: translateY(-2px);
}

.separator {
  color: #777;
}

/* NAVIGATION */
nav {
    background: linear-gradient(135deg, #11111b 0%, #0c2544 50%, #16213e 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav ul {
    display: grid;
    grid-template-columns: repeat(4, auto);
    list-style: none;
    padding: 0;
    margin: 0;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c99a2e 100%);
    border-bottom-color: #d4af37;
}

/* MAIN CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* SECTIONS */
section {
    background: white;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #d4af37;
}

section h2 {
    color: linear-gradient(135deg, #d4af37 0%, #c99a2e 100%);;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

section p {
    margin-bottom: 1rem;
    text-wrap: balance;
    text-align: justify;
    color: #444;
}

.wesprzyj {
    text-align: justify;
    text-wrap: wrap;
    }

/* ZESPÓŁ SECTION */
.team-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* margin-bottom: 2rem; */
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.team-short {
    line-height: 1.8;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: justify;
}

.expand-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c99a2e 100%);;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* PRZYCISKI POD YT / SPOTIFY – jak "Czytaj więcej", ale w kolorach brandów */

.player-cta {
    display: inline-block;
    border: none;
    padding: 0.8rem 2.2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    text-align: center;
    justify-content: center;
}

/* YouTube – czerwony */
.player-cta-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.player-cta-youtube:hover {
    background: linear-gradient(135deg, #ff4d4d 0%, #ff0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.4);
}

/* Spotify – zielony */
.player-cta-spotify {
    background: linear-gradient(135deg, #1DB954 0%, #159740 100%);
    box-shadow: 0 4px 10px rgba(29, 185, 84, 0.3);
}

.player-cta-spotify:hover {
    background: linear-gradient(135deg, #44c96c 0%, #1DB954 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(29, 185, 84, 0.4);
}


.team-full {
    display: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #d4af37;
    text-align: justify;
    }
    
.long {
    text-indent: 2em;
    text-wrap: wrap;
}

.team-full.active {
    display: block;
}

.team-full h3 {
    color: #d4af37;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.team-full ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.team-full li {
    margin-bottom: 0.7rem;
    color: #444;
}

/* AKTUALNOŚCI */
.news-item {
    background: #f0f0f0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid #d4af37;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.news-item img {
    width: 33%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 200px;
}


.news-content {
    width: 67%;
}

.news-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.fb-link {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 5px;
    border-left: 4px solid #d4af37;
}

.fb-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
}

.fb-link a:hover {
    color: #d4af37;
}

.fb-page {
    text-align: center;
    /* margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 5px;
    border-left: 4px solid #d4af37; */
}

/* POSŁUCHAJ NAS */
.listen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.listen-item {
    background: #f8f7f4;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.listen-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.listen-item h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.listen-item a {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.listen-item a:hover {
    background: #d4af37;
}

/* eksperymentalne posłuchaj nas */

/* POSŁUCHAJ NAS – nowy układ z playerami */
.listen-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 2rem;
    margin-top: 2rem;
}

.listen-media {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.player-block {
    background: #f8f7f4;
    padding: 1.5rem 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.player-block h3 {
    color: #d4af37;
    margin-bottom: 0.4rem;
}

.player-block p {
    margin-bottom: 0.9rem;
    color: #444;
}

.player-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.player-embed iframe {
    width: 100%;
    display: block;
}

.player-link {
    display: inline-block;
    text-decoration: none;
    color: #0f3460;
    font-weight: 600;
    border-bottom: 1px solid rgba(15,52,96,0.3);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.player-link:hover {
    color: #d4af37;
    border-color: #d4af37;
}

/* eksperymenty player */
.player-header {
    align-items: center;
    width: 100%;
    margin-bottom: 0.5rem;
    justify-content: center;
    text-align: center;
}

.player-footer {
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
    justify-content: center;
    text-align: center;
}

.brand-logo {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

.player-tagline {
    margin: 0.1rem 0 0;
    color: #666;
}

.brand-logo-link {
    display: inline-block;
    width: 100%;
}

.player-tagline {
    margin: 0;
    color: #666;
}

/* odległości wokół playera */
.player-embed {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.4rem;   /* mały, stały odstęp pod playerem */
}

.player-description {
    margin: 0.25rem 0 0.6rem;   /* mały odstęp nad tekstem */
    color: #444;
}

/* jeśli coś wcześniej nadpisywało margin, dociśnij dla Spotify osobną klasą */
.player-description-spotify {
    margin-top: 0.25rem;
}

/* przyciski zostają jak było */
.player-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    padding: 0.55rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}



/* NOWA KARTA ALBUMU CD */
.album-card {
    background: #0f0f13;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 215, 0, 0.25);
    position: relative;
}

/* złoty pasek na górze */
.album-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d4af37, #f5e29e, #d4af37);
}

.album-header {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.album-cover img {
    width: 100%;
    height: 420px;
    display: block;
    /* okładka jest pozioma – wysokość sama się ułoży */
}

.album-info {
    padding: 1.2rem 1.4rem 1.4rem;
    color: #f8f7f4;
}

.album-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e0dfdc;
}

.album-subtitle {
    margin: 0 0 0.6rem 0;
    opacity: 0.9;
    color: #f8f7f4;
}

.album-link {
    display: inline-block;
    text-decoration: none;
    color: #d4af37;
    border-bottom: 1px solid rgba(212,175,55,0.4);
    padding-bottom: 1px;
    transition: 0.2s ease;
}

.album-link:hover {
    color: #ffd86b;
    border-color: #ffd86b;
}

.album-note {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    color: #555;
    background: #f7f6ef;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    line-height: 1.5;
}



/* RESPONSIVE – telefony */
@media (max-width: 768px) {
    .listen-layout {
        grid-template-columns: 1fr;
    }

    .player-embed iframe {
        min-height: 190px;
    }

    .album-card img {
        height: 220px;
    }
}




/* WESPRZYJ NAS */
.donation-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    display: block;
}

.donation-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.donation-box p {
    color: white;
    margin-bottom: 0.7rem;
    display: inline;
}

.block-display
{
    display: block;
    margin-bottom: 1.2rem;
}

.donation-details {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 5px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.donation-details p {
    color: white;
    margin-bottom: 0.7rem;
    font-size: 1.10rem;
}

.donation-details strong {
    color: #d4af37;
}

.donate-btn {
    background: #d4af37;
    color: #2c2c2c;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.donate-btn:hover {
    background: #f4d03f;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.image-listen-us
{
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    width: 95%; 
    height: 500px; 
    object-fit: cover; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* FOOTER */
footer {
    background: #2c2c2c;
    color: white;
    padding: 1rem;
    text-align: center;
}

/* FACEBOOK BOX – pełna szerokość sekcji, w środku wtyczka 500px */
/* .fb-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 5px;
    border-left: 4px solid #d4af37;
    display: flex;
    justify-content: center;   wyśrodkowanie wtyczki
}     */

/* FACEBOOK FULL-WIDTH FIX */
/* .fb-wrapper {
    width: 100%;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f0f0f0;
    border-radius: 5px;
    border-left: 4px solid #d4af37;
    display: flex;
    justify-content: center;
}
.fb-wrapper .fb-page,
.fb-wrapper .fb-page > span,
.fb-wrapper iframe {
    width: 100% !important;
    max-width: 100% !important;
} *

.news-link {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #3b5998;
    font-size: 0.9rem;
    text-decoration: none;
    color: #3b5998;
    transition: background 0.2s ease, color 0.2s ease;
}

.news-link:hover {
    background: #3b5998;
    color: #fff;
}


/* eksperyment facebook */
.fb-header
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fb-stub
{
    height: 168px;
    width: 168px;
    border-radius: 50%;
    object-fit: cover;
}

.fb-header-container
{
    width: 90%;
    justify-content: right;
    text-align: right;
}

.fb-note
{
    color:#f8f7f4;
    text-align: left;
}

.fb-text {
    font-weight: 700;
    font-size: 2.0rem;
    color: #1877f2;     /* oficjalny kolor Facebooka */
    letter-spacing: -0.5px;
    display: flex;
    margin-top: 2rem;
}

.fb-section {
    /* margin: 30px auto; */
    padding: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    text-align: center;
}

.player-tagline {
    margin-top: 10px;
    color: rgb(204, 198, 198);
}

.fb-description {
    color: rgb(204, 198, 198);
    margin: 15px 0 25px;
    line-height: 1.6;
    text-align: center;
}



.fb-cta {
    display: inline-block;
    padding: 12px 26px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.25s ease;
}

.fb-cta:hover {
    background: linear-gradient(135deg, #45457c 0%, #1e65bd 50%, #2a3e74 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(24, 119, 242, 0.3);
}



@media (max-width: 768px) {
    .fb-promo {
        padding: 1.4rem 1.2rem;
    }

    .fb-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .fb-logo {
        width: 130px;
    }

    .fb-header
    {
        display: block;
    }

    .fb-stub
    {
        height: 168px;
        width: 168px;
        border-radius: 50%;
    }

    .donation-box p {
        display: block;
    }

    .fb-header-container
    {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .fb-stub img
    {
        width: 100%;
        object-fit: contain;
        text-align: right;
    }

    .fb-text
    {
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }

    .fb-note
    {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .donation-details p {
        color: white;
        margin-bottom: 0.7rem;
        font-size: 0.95rem;
    }

    .block-display
    {
        margin-bottom: 0rem;
    }

}


/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .header-logo {
        width: 360px;
        height: 140px;
    }

    nav {
        position: static;
        box-shadow: none;
    }

    nav ul {
        grid-template-columns: 1fr;
    }

    nav a {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    nav a:hover {
        background: rgba(255,255,255,0.1);
        border-bottom-color: transparent;
    }

    section {
        padding: 1.5rem;
    }

    section h2 {
        font-size: 1.3rem;
    }

    .listen-grid {
        grid-template-columns: 1fr;
    }

    .team-intro {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 300px;
    }

    .donation-box {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
        color: white;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        margin-top: 2rem;
    }

    .donation-details {
        padding: 0.2rem;
    }

    .news-item {
        background: #f0f0f0;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 5px;
        border-left: 4px solid #d4af37;
        display: block;
    }

    .news-item img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .news-content {
        width: 100%;
    }

    .image-listen-us
    {
        width: 95%; 
        height: 250px; 
        object-fit: cover; 
    }

    /* eksperymentalny dodatek */
    @media (max-width: 768px) {

    .player-block .player-spotify
    {
        width: 95%; 
    }

    .image-listen-us
    {
        display: none; 
    }

    /* Aktualności z Facebooka – wygląd na telefonach */

    .news-item {
        flex-direction: column;      /* zamiast obok siebie – jeden pod drugim */
        align-items: stretch;
        gap: 12px;
    }

    .news-item img {
        width: 100%;                /* obrazek na całą szerokość */
        max-height: 220px;          /* żeby nie był gigantyczny */
        object-fit: cover;
        border-radius: 10px;
    }

    .news-content {
        width: 100%;
    }

    .news-date {
        font-size: 0.85rem;
    }

    .news-link {
        display: inline-block;
        margin-top: 8px;
        font-size: 0.85rem;
    }
}

}