@charset "utf-8";

a {
  text-decoration: none;
}
a:link {
  color: #000000;
}
a:active {
  color: #000000;
}
a:visited {
  color: #000000;
  text-decoration: none;
  font-weight: normal;
}

audio {
  margin-top: 20px;
}

body {
  font-family: permian-regular;
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

p {
  text-indent: 20px;
  font-size: 2.2em;
  font-weight: normal;
  text-align: justify;
}

td {
  padding-left: 5px;
  padding-right: 5px;
  vertical-align: top;
}

/*---------- begin custom classes ---------*/

/*--
.album-track-number{
  width: 10%;
  font-size: 2em;
  text-align: right;
  padding: 10px;
  float: left;
  background: #ffffff;	
}


.album-track-title{
  width: 80%;
  font-size: 2em;
  text-align: left;
  padding: 10px;
  float: left;
  background: #ffffff;	
}
--*/

.block-info {
  min-width: 640px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.clear {
  clear: both;
}

/*--
.column {
  flex: 100%;
  white-space: nowrap;	
}
--*/

.contact {
  text-indent: 20px;
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px 0px 20px 0px;
}

.container {
  min-width: 720px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 0px;
  background-color: #fff;
  text-align: center;
}

.foot {
  text-indent: 20px;
  font-size: 1.2em;
  font-weight: normal;
  margin-bottom: 20px;
}

.img-album-art {
  max-width: 100%;
  max-height: 1500px;
  border-radius: 20px;
}

.info {
  text-indent: 20px;
  font-size: 2.2em;
  font-weight: normal;
}

.music-sites {
  margin-top: 20px;
  margin-bottom: 20px;
}

.music-sites a {
  font-size: 1.6em;
  margin: 0px 6px 0px 6px;
}

.songlist {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 640px;
  font-size: 2em;
  font-weight: normal;
}

.song-name {
  text-align: left;
}

.song-num {
  text-align: right;
}

.song-L {
  width: 0px;
}

.song-R {
  width: 0px;
}

.subtitle {
  font-size: 2.2em;
  font-weight: bold;
}

.table {
  min-width: 640px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: 0px;
}

.title {
  margin-top: 20px;
  font-size: 3em;
  font-weight: bold;
}

/*--
.row  {
}
--*/

.row-100px-spacer {
  min-height: 100px;
  background: #ffffff;
}

/*begin side by side column style*/
.sxs-album-track-number {
  width: 30%;
  font-size: 2em;
  text-align: right;
  padding: 10px;
  float: left;
  background: #ffffff;
}

.sxs-album-track-title {
  width: 60%;
  font-size: 2em;
  text-align: left;
  padding: 10px;
  float: left;
  background: #ffffff;
}

.sxs-column {
  flex: 50%;
  white-space: nowrap;
}

.sxs-row {
  display: flex;
}
/*end side by side column style*/

/*begin audio player*/

.album-player {
  max-width: 620px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 0.5em;
  padding-top: 0.25em;
  padding-left: 1em;
  padding-right: 1em;
  margin-left: auto;
  margin-right: auto;
  font-family: permian-regular;
}

.player-title {
  font-size: 2.2em;
  font-weight: 600;
}

.controls button {
  font-size: 1.1em;
  margin-right: 0.5em;
  cursor: pointer;
}

.progress {
  margin-top: 0.75em;
}

.progress-bar {
  position: relative;
  height: 6px;
  background: #ddd;
  cursor: pointer;
}

.buffered {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #bbb;
}

.progress-fill {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #222;
}

.progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 12px;
  height: 12px;
  background: #222;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.time {
  font-size: 0.85em;
  margin-top: 0.25em;
  text-align: right;
}

.playlist {
  display: block;
  list-style: none;
  padding: 0;
  /*margin-top: 0.5em;*/
  text-align: left;
  margin-left: 5px;
  font-size: 1.6em;
}

.playlist li {
  display: block;
  cursor: pointer;
  padding: 0.25em 0;
  padding-left: 10px;
}

.playlist li.active {
  display: block;
  padding-left: 10px;
  font-weight: 600;
  color: white;
  background-color: gray;
}

/*begin player buttons*/
/* Container for buttons (optional for spacing/alignment) */
.controls {
  display: flex;
  justify-content: center; /* center buttons */
  gap: 1em; /* space between buttons */
  margin-top: 0.5em;
  background-color: #dddddd; /* color stripe behind buttons */
  border-radius: 10px;
}

/* Base button style */

.controls button {
  background: none; /* transparent background */
  border: none; /* no default border */
  padding: 1em; /* small padding around SVG */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.1s,
    filter 0.2s;
}

.controls button img {
  width: 96px; /* adjust as needed */
  height: 96px;
  display: block;
}

.controls button:hover img {
  transform: scale(1.1); /* slight zoom */
  filter: brightness(1.2); /* optional glow effect */
}

.controls button:active img {
  transform: scale(0.95); /* pressed effect */
  filter: brightness(0.9);
}

/*end player buttons*/
/*end audio player*/

/*--------------------- BEGIN MEDIA QUERIRES ----------------------*/
/*--------------------- BEGIN MEDIA QUERIRES ----------------------*/
/*--------------------- BEGIN MEDIA QUERIRES ----------------------*/

@media screen and (min-width: 1082px), {
  .title {
    font-size: 2.2em;
  }
  .subtitle {
    font-size: 1.8em;
  }
  p {
    font-size: 1.4em;
  }
  /*--.album-track-number{font-size: 1.4em;}
  .album-track-title{font-size: 1.4em;}--*/
  .songlist {
    font-size: 1.2em;
  }
  .song-L {
    width: 70px;
  }
  .song-R {
    width: 70px;
  }
  .sxs-album-track-number {
    font-size: 1.4em;
  }
  .sxs-album-track-title {
    font-size: 1.4em;
  }
  .block-info {
    min-width: 440px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .img-album-art {
    max-height: 950px;
  }

  .album-player {
    max-width: 420px;
  }

  .player-title {
    font-size: 1.6em;
    font-weight: 600;
  }

  .playlist {
    font-size: 1.2em;
  }

  .controls button {
    padding: 0.5em; /* small padding around SVG */
  }

  .controls button img {
    width: 48px; /* adjust as needed */
    height: 48px;
    display: block;
  }
}

/*---------------------- END MEDIA QUERIRES -----------------------*/
/*---------------------- END MEDIA QUERIRES -----------------------*/
/*---------------------- END MEDIA QUERIRES -----------------------*/

/*----------------------------- Fonts -----------------------------*/
/*----------------------------- Fonts -----------------------------*/
/*----------------------------- Fonts -----------------------------*/
@font-face {
  font-family: "permian-regular";
  src: url("fonts/permian.eot");
  src:
    url("fonts/permian.eot?#iefix") format("embedded-opentype"),
    url("fonts/permian.woff2") format("woff2"),
    url("fonts/permian.woff") format("woff"),
    url("fonts/permian.ttf") format("truetype"),
    url("fonts/permian.svg#permian-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "permian-bold";
  src: url("fonts/permian-bold.eot");
  src:
    url("fonts/permian-bold.eot?#iefix") format("embedded-opentype"),
    url("fonts/permian-bold.woff2") format("woff2"),
    url("fonts/permian-bold.woff") format("woff"),
    url("fonts/permian-bold.ttf") format("truetype"),
    url("fonts/permian-bold.svg#permian-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*----------------------------- Fonts -----------------------------*/
/*----------------------------- Fonts -----------------------------*/
/*----------------------------- Fonts -----------------------------*/
