/*
Theme Name: RocolaTheme
Theme URI: https://radiorocola1037fm.com/
Author: Javier Rivera
Author URI: 
Description: Tema personalizado para Radio Rocola 103.7 FM El Salvador.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mi-tema
*/

body {   
  align-items: center;
  background: #121212;
  color: #fff;
  display: flex;
  font-family: Arial, sans-serif;
  height: 96vh;
  justify-content: center;
  margin: 0;
  width: 100%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero{
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 400px;
  padding: 10px;
}

.aboutTitle{
  font-size: 1.8rem;
  width: fit-content;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
  color: #e9e9e9;
}

.aboutInfo{
  font-size: 1rem;
  margin: 0;
  color: #b6b6b6;
}

.player {
  border-radius: 15px;
  box-shadow: -2px 8px 12px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  position: relative;
  text-align: center;
  min-width: 240px;
  width: 300px;
  margin-top: 60px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}
.playerState {
  animation: gradientShift 25s ease infinite;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    270deg,
    #eca100,
    #003bc5,
    #d80036
  );
  background-size: 1000% 1000%;
}

.player::before {
  background: inherit;
  overflow: hidden;
  content: "";
  filter: blur(1px) saturate(300%);
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
  transition: all 0.5s ease-in-out;
}

.player::after {
  background-color: #121212d3;
  border-radius: 15px;
  box-shadow: -1px 3px 12px rgba(0, 0, 0, 0.4);
  content: "";
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.player h2 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.player h3 {
  color: #ffd982;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.nowPlaying {
  display: flex;
  flex-direction: row;
  height: 92px;
  margin-bottom: 40px;
}
.imgCover {
  background-color: #565656;
  background-image: url("wp-content/uploads/2025/08/rocolaImg.webp"); 
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 12px;
  box-shadow: -1px 3px 12px rgba(0, 0, 0, 0.5);
  height: 92px;
  margin-right: 25px;
  width: 92px;
}

.infoPlay {
  text-align: left;
  white-space: nowrap;
  width: 135px;
  overflow: hidden;
}

.playTitle {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  transition: all 0.3s;
  width: 135px;
  opacity: 1;
}

.mover {
  animation: mover 12s linear infinite;
}

@keyframes mover {
 0% {
    transform: translateX(0%);
    opacity: 1;
  }
  80% {
    transform: translateX(-110%);
    opacity: 1;
	}81%{
		transform: translateX(-110%);
		opacity: 0;
	}
  83% {
    transform: translateX(0%); 
		opacity: 0;
	}89%{
		opacity:1;
	}
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.fadeInText {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fadeInText.show {
  opacity: 1;
}

.play-btn {
  background: #b6b6b6;
  border: none;
  border-radius: 15px;
  color: #343434;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  padding: 10px 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
  width: 160px;
}
.play-btn:hover {
  background: #f2f2f2;
  color: #050505;
}


@media (min-width: 600px){
    #rocolaBody{
        transform: scale(1.1);
    }
}


















