
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
        font-family: 'Name of Music';
        src: url('./fontsForWebsite/Montserrat/Montserrat-Regular.ttf') format('truetype');
    }

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@font-face {
        font-family: 'Artist of Music';
        src: url('./fontsForWebsite/Quicksand/Quicksand-Regular.ttf') format('truetype');
    }


/*
 Theme Name:   Lyretail Child
 Theme URI:    http://wordpress.com/themes/lyretail
 Description:  Child theme for Lyretail
 Author:       Automattic
 Author URI:   http://automattic.com/
 Template:     minnow
 Version:      1.0.5-wpcom
*/

/*
.grid-container{
    display:grid !important;
    width: 600px !important;
    grid-template-columns:180px 180px 180px !important;
    grid-gap:20px !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    background-color: #e3f6f5 !important;
    justify-content: space-around !important;
}

.grid-container > div{
    background-color: #272343 !important;
    border-radius: 3% !important;
}

.grid-container > div > p{
    line-height: 20px !important;
    margin-left: 20px !important;
    margin-bottom: 8px !important;
}



.p_header{
    font-family: "Name of Music", sans-serif !important;
    font-weight: 700 !important;
    color: white !important;
    line-height: 20px !important;
    margin-left: 20px !important;
    margin-bottom: 8px !important;
}

.p_artist{
    font-family: "Artist of Music", sans-serif !important;
    color:gainsboro !important;
    line-height: 20px !important;
    margin-left: 20px !important;
    margin-bottom: 8px !important;
}

.p_time_music{
    font-family: "Artist of Music", sans-serif !important;
    color:gainsboro !important;
    line-height: 20px !important;
    margin-left: 20px !important;
    margin-bottom: 8px !important;
}

.img_music{
    height: 167px !important;
    width: 100% !important;
    object-fit: cover;
}

.grid-container > div > img{
    height: 167px !important;
    width: 100% !important;
    object-fit: cover;

}
*/


*{
    box-sizing: border-box;
}

html.page-id-422, body.page-id-422 {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  color: white;
}


body.page-id-422 #primary,
body.page-id-422 .site-main,
body.page-id-422 .entry-content,
body.page-id-422 .post,
body.page-id-422 .page,
body.page-id-422 .container,
body.page-id-422 .site,
body.page-id-422 .site-content,
body.page-id-422 .content-area,
body.page-id-422 .wrap {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


#post-422{
  height: 100%;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  /*background: radial-gradient(circle at top left, #120a8f 0%, #191414 100%);*/
  font-family: 'Poppins', sans-serif;
  color: white;
}

/* Main Grid Layout */
.app-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  /*width: 100%;*/

  min-height: 100dvh;
  width: 100vw;
  position: relative;
}

/* Sidebar */
.sidebar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.sidebar h2 {
  font-size: 1.5rem;
  color: #1db954;
  text-align: center;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.sidebar a:hover {
  color: #1db954;
}

/*  Main Content */
.main-content {
  padding: 40px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  text-align: left;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  color: #cfcfcf;
}

/*  Music Cards Grid */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/*  Reuse your existing music-card style */
.music-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease-out;
}

/**/
.card-header {
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.controls i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.controls i:hover {
    color: white;
    transform: scale(1.1);
}

/* Play Pause button states*/
.play-pause {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1DB954;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Pause state - when music is playing*/
.play-pause.playing{
    background-color: #15b1d8;
}

.play-pause.playing .fa-play::before{
    content: "\f04c"; /* FontAwesome pause icon*/
}

.play-pause:active{
    transform: scale(0.95);
}

.play-pause:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 20px rgba(29, 185, 84, 0.6);
}

.play-pause i {
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

/* Animation for the play button */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(29, 185, 84, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 185, 84, 0); }
}

.playing .play-pause {
    animation: pulse 2s infinite;
}

/**/

.music-card:hover {
  transform: scale(1.03);
}

/* 🎵 Card Elements */
.album-cover img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.music-info h3 {
  font-family:Arial, Helvetica, sans-serif !important;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color:white !important;
}

.music-info p {
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
  margin: 4px 0 15px;
  font-size: 0.9rem;
  color: snow !important;
}

.progress {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar {
  width: 45%;
  height: 100%;
  background: #1db954;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.25s;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/*
.play {
  font-size: 1.4rem;
  background: #1db954;
  box-shadow: 0 0 10px #1db95480;
}
*/

/* 📱 Responsive */
@media (max-width: 768px) {
  .app-container {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-content {
    padding: 20px;
  }
}