:root {
  /* --black: #04080Aff; */
  --dark-slate-gray: #374D51ff;
  --secondary: #123F81;
  --accent: #82908Bff;
  --tertiary: #617474ff;
  --primary: #F1BA36; /* Yellow */


  /* CSS HSL */
  /* --black: hsla(200, 43%, 3%, 1); */
  --dark-slate-gray: hsla(189, 19%, 27%, 1);
  --secondary: hsla(215, 75%, 29%); 
  --accent: hsla(159, 6%, 54%, 1);
  --tertiary: hsla(180, 9%, 42%, 1);
  --primary: hsla(41, 87%, 58%); /* HSL for #F1BA36 */
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* background-color: #111; */
    background: linear-gradient(
    135deg,
    var(--primary) 17%,  /* Primary color takes up 10% */
    var(--secondary) 30%, /* Transition to secondary starts early */
    var(--accent) 60%,    /* Accent dominates the middle */
    var(--tertiary) 100%  /* Tertiary fills the rest */
);
    color: #fff;
    line-height: 1.5;
}


section {
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #333;
    background-color: rgba(0, 0, 0, 0.83); /* Black with 50% opacity */
}

.mock1 {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.mock1 .left, .mock1 .right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mock1 .album-cover {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.mock1 .right {
    flex-direction: column;
    text-align: center;
}

.mock1 .album-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.mock1 .album-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.mock1 .buy-button {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
}

.mock1 .buy-button:hover {
    background-color: var(--tertiary);
}

.mock1 .more-info {
    color: var(--primary);
    text-decoration: none;
    font-size: 1em;
}

.mock1 .more-info:hover {
    color: var(--tertiary);
}

.mock2 .section {
    margin-bottom: 65px; /* Dodano większy odstęp między sekcjami */
}

.mock2 h2 {
    font-size: 1.5em;
    margin-bottom: 20px; /* Odstęp między tytułem sekcji a jej zawartością */
}

.mock2 .streaming-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: var(--tertiary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.track-list {
    list-style: none;
    padding: 0;
}

.track-item {
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid var(--tertiary);
    margin: 5px 0;
    transition: background-color 0.3s;
}

.track-item:hover {
    background-color: var(--dark-slate-gray);
}

#track-details {
    background-color:  var(--dark-slate-gray);
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hidden {
    display: none;
}

audio {
    width: 100%;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: var(--tertiary);
}

.mock3 h2, .mock3 p {
    margin: 20px 0;
}

.about-section {
    padding-block: 20px; /* Space above and below the text */
    padding-inline: 15px; /* Default padding for smaller screens */
    line-height: 1.6; /* Improve readability */
    font-size: 1rem; /* Standard font size */
    max-width: 800px; /* Limit text width on larger screens */
    margin: 0 auto; /* Center the block */
}


.mock4 .band-photo {
    max-width: 58%;
    border-radius: 10px;
}

.mock4 .social-links {
    display: flex;
    justify-content: center;
    gap: 15px; /* Odstęp między przyciskami na większych ekranach */
    flex-wrap: wrap; /* Pozwala przenosić przyciski do kolejnych linii */
    margin-top: 20px;
}

.mock4 .social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.mock4 .social-link:hover {
    background-color: var(--tertiary);
}

#concerts {
    padding: 20px 20px;
    
}

.concert-list {
    list-style: none;
    padding: 0;
    padding-bottom: 28px; /* Padding at the bottom for better spacing */
}
.concert-list > li {
    list-style: none;
    margin: 10px 0;
    transition: background-color 0.3s;
    border-bottom: 1px solid var(--tertiary);
}
.concert-item:hover {
    background-color: var(--tertiary);
}

@media (min-width: 1200px) {
    .oalbumie {
        padding-inline: 80px;
    }
}

/* Responsywność */
@media (max-width: 768px) {
    body{
        background: linear-gradient(
            135deg,
            var(--primary) 2%,  /* Primary color takes up 10% */
            var(--secondary) 30%, /* Transition to secondary starts early */
            var(--accent) 60%,    /* Accent dominates the middle */
            var(--tertiary) 100%  /* Tertiary fills the rest */
        );
    }
    .mock1 {
        flex-direction: column;
        height: auto;
    }

    .mock1 .left, .mock1 .right {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .mock1 .album-title {
        font-size: 2em;
    }

    .mock1 .album-description {
        font-size: 1em;
    }

    .mock1 .buy-button {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .mock1 .more-info {
        font-size: 0.9em;
    }
    .oalbumie{
        padding-inline: 1vb;
    }
    .mock4 .band-photo {
        max-width: 70%; /* Zwiększenie proporcjonalności na mniejszych ekranach */
    }

    .mock4 .social-links {
        flex-direction: column; /* Ustaw przyciski w pionie */
        gap: 10px; /* Mniejszy odstęp między przyciskami */
    }

    .mock4 .social-link {
        padding: 8px 15px; /* Zmniejsz rozmiar przycisków na mniejszych ekranach */
        font-size: 0.9em;
    }


.youtube-premiere {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.youtube-premiere iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
}

@media (max-width: 480px) {
    .mock1 .album-title {
        font-size: 1.8em;
    }

    .mock1 .album-description {
        font-size: 0.9em;
    }

    .mock1 .buy-button {
        font-size: 0.8em;
    }

    .mock4 .band-photo {
        max-width: 98%; /* Zdjęcie zajmuje całą szerokość ekranu */
        height: auto; /* Zachowanie proporcji */
    }


.youtube-premiere {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.youtube-premiere iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
}
