/* Czcionki */

@font-face {
    font-family: 'Roboto';
    src: url('/font/RobotoCondensed-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700; /* Zakres wag od 100 do 700 */
    font-style: normal;
}

/* Scrollbar całkowity */
::-webkit-scrollbar {
    width: 10px; /* Szerokość paska przewijania */
    height: 10px; /* Wysokość paska przewijania */
}
  
/* Track (ślad paska przewijania) */
::-webkit-scrollbar-track {
    background: #000; /* Kolor tła */
    border-radius: 0; /* Zaokrąglenie rogów */
}
  
/* Thumb (uchwyt paska przewijania) */
::-webkit-scrollbar-thumb {
    background: #444; /* Kolor uchwytu */
    border-radius: 0; /* Zaokrąglenie rogów */
}
  
/* Thumb (uchwyt paska przewijania) przy hoverze */
::-webkit-scrollbar-thumb:hover {
    background: #333; /* Kolor uchwytu przy hoverze */
}


:root {
    --color: #F1FC00;
    --height: 300px;
}


html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #000 url('/css/background.jpg') center center;
    background-size: cover;
    color: #fff;
    font-family: Roboto;
    font-size: 16px;
    overflow-x:hidden;
    background-color: #000;
}

.head {
    padding: 0 20px;
}
.logo {
    height: 20px;
}
.album_title {
    text-align:center;
    font-family: Roboto;
    font-weight: 700;
    color: var(--color);
    font-size: 48px;
}
.album_genre {
    text-align:center;
    text-transform: lowercase;
    color: #ddd;
    font-size: 16px;
}
.album_artist {
    text-align: center;
    font-weight: 100;
    font-size: 32px;
    color: #ddd;
}
.info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.detail {
    display: flex;
}
.detail_title {
    color: var(--color);
    background: #000;
    font-weight: 400;
    font-size: 14px;
    padding: 3px 5px;
}
.detail_text {
    color: #000;
    background: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 3px 5px;
}

.parent {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 60px auto 1fr auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
min-height: 100vh;
}

.head { grid-area: 1 / 1 / 2 / 2; }
.title { grid-area: 2 / 1 / 3 / 2; }
.slider { grid-area: 3 / 1 / 4 / 2; }
.details { grid-area: 4 / 1 / 5 / 2; }
.details {
    padding-bottom: 40px;
}
/* Stylizacja kontenera Swiper */
.swiper {
    width: 100%;
    min-height: 100% !important; /* Wysokość Swipera */
}

/* Stylizacja każdego slajdu */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    /* background: #009688;
    color: white;
    font-size: 0; */
    cursor: pointer;
}
.swiper-slide-active {
    cursor: default;
}
.cover {
    width: 100%;
    aspect-ratio: 1/1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: var(--height);
    height: var(--height);
}

.fb {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url('/css/fb.svg') center center no-repeat;
    background-size: 100%;
    font-size: 0;
}

@media (max-width: 575.98px) { 
    .album_title {
        font-size: 24px;
    }
    .album_genre {
        font-size: 12px;
    }
    .album_artist {
        font-size: 24px;
    }
    .info {
        gap: 10px;
    }
}

@media (min-width: 576px) { 
    .album_title {
        font-size: 28px;
    }
    .album_genre {
        font-size: 14px;
    }
    .album_artist {
        font-size: 24px;
    }
    .info {
        gap: 20px;
    }
}

@media (min-width: 768px) { 
    .album_title {
        font-size: 34px;
    }
    .album_genre {
        font-size: 16px;
    }
    .album_artist {
        font-size: 28px;
    }
    .info {
        gap: 30px;
    }
}

@media (min-width: 992px) { 
    :root {
        --height: 300px;
    }
}

@media (min-width: 1200px) { 
    :root {
        --height: 350px;
    }
}

@media (min-width: 1400px) { 
    :root {
        --height: 400px;
    }
    .parent {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 100px) 1fr 200px;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        min-height: 100vh;
    }
    .album_title {
        font-size: 56px;
    }

    .head {
        padding: 0 40px;
    }
    .fb {
        right: 40px;
    }
}