@charset 'utf-8';

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;0,800;1,300;1,800&display=swap');
@import url('bootstrap.min.css');

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-flow: column;
    align-items: center;
    overflow-x: hidden;
}

.cover-site {
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    background: url('../img/bg_site.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    transition: background-image 1s;
    background-attachment: fixed;
}

/* FONDO DESENFOQUE */
#bgCover {
    height: 100%;
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
    -webkit-filter: blur(20px);
    filter: blur(20px);
    transition: all .5s linear;
    transform: scale(2.2); 
    z-index: 1;
}

.bg-mask {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.0);
    z-index: 2;
}

main {
    flex: 1 0 auto;
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-player {
    color: #fefefe;
    padding: 5px;
    position: relative;
    margin-top: 25px;
}

.cover-album {
    max-width: 80%;
    margin: auto;
    background: url('../img/cover.png') no-repeat;
    background-size: cover;
    border: 2px solid #fefefe;
    box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.4);
    transition: background-image 1s;
    border-radius: 10px;
    margin-bottom: 15px;
}

#currentCoverArt {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    transition: background-image 1s;
}

.info-current-song {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.info-current-song h2 {
    font-size: 38px;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.info-current-song h3 {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.play-pause {
    font-size: 65px;
}

.btn-play {
    background-color: white;
    border: none;
    color: black;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 20px;
    transition: transform .2s;
    box-shadow: 1px 3px #30303022;
}

.btn-play:hover {
    transform: scale(1.1);
}

.volume-control {
    display: none;
    margin-top: 10px;
}

.volume-icon {
    font-size: 28px;
    color: white;
}

.volume-slide {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

input[type=range] {
    appearance: none;
    background: transparent;
    width: 100%;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #fefefe;
}

input[type=range]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fefefe;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

.fiksni-red {
    white-space: nowrap !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.social-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 10px 0;
    z-index: 10;
    position: relative;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid white;
    border-radius: 50%;
    color: white !important;
    text-decoration: none !important;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    background: white;
    color: black !important;
}

/* --- TVOJ NOVI POTPIS --- */
.copyright-text {
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 300; /* Tanji font */
    padding-bottom: 25px;
    position: relative;
    z-index: 10;
}

.copyright-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.copyright-text a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* MEDIA QUERIES */
@media(max-width: 480px) {
    .fiksni-red { font-size: 11px !important; }
    .copyright-text { font-size: 11px; padding-bottom: 20px; }
}

@media(min-width: 576px) {
    .volume-control { display: flex; }
}

@media(min-width: 768px) {
    body { align-items: center; }
    .web-player { margin-top: 0; }
    .cover-album { min-width: 320px; height: 320px; }
    .info-current-song { text-align: left; }
}