/* PLESH RELEASE-BRIELLA STYLESHEET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 0.625em;
}

body {
    min-height: 100vh;
    display: block;
    background-image: url(../../images/background.png); 
    background-color: rgb(246, 235, 229);
}

@font-face {
    font-family: sitefont;
    src: url(../../fonts/LibreFranklin-ExtraBoldItalic.ttf);
}

/* 
h1 = Release Title
h2 = Nav Buttons
h3 = Video Titles
h4 = 
h5 = Release Date
h6 = Call To Action
p = Article Text
li = Footer Text / Links, Tracklist
*/

h1 {
    color: rgb(0, 0, 0);
    font-family: sitefont;
    text-transform: uppercase;
    font-size: 7rem;
    text-shadow: 4px 4px white;
}

h2 {
    color: rgb(255, 255, 255);
    font-family: sitefont;
    text-transform: uppercase;
    font-size: 2.4rem;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

a:hover {
    color: blue;
}
            
h3 {
    color: rgb(0, 0, 0);
    font-family: sitefont;
    text-transform: uppercase;
    font-size: 2.3rem;
}
            
h4 {
    color: rgb(0, 0, 0);
    font-family: sitefont;
    text-transform: uppercase;
    font-size: 3rem;
}

h5 {
    color: rgb(0, 0, 0);
    font-family: sitefont;
    text-transform: uppercase;
    font-size: 1.7rem;
}

h6 {
    color: rgb(255, 255, 255);
    font-family: Arial;
    font-size: 2rem;
}
            
p {
    color: rgb(255, 255, 255);
    font: 2rem Calibri, sans-serif;
}

li {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font: 1.7rem Arial, sans-serif;
}

.all-content {
    max-width: 1440px; 
    margin: 0 auto;
}

article {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    background-color: rgba(0, 0, 255, 0.5);
    width: 100%;
    justify-content: space-evenly;
    border-right: solid black 5px;
    border-bottom: solid black 5px;
}

.artwork {
    margin: 1em 1em;
    border: solid black 5px;
    background: black;
}

.line {
    height: 450px;
    width: 5px;
    background-color: black;
    margin-top: auto;
    margin-bottom: auto;
}

.textcentering {
    width: 706px;
}

article ol li {
    color: black;
    text-align: left;
    list-style-type: decimal;
    margin-left: 1em;
    margin-top: 1em;
}

.mediabuttons {
    display: flex;
    justify-content: space-around;
    background-color: black;
    border: solid black 5px;
    margin-left: 50%;
    padding: 3px 3px;
}

.allmedialinks {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}

.soundcloudembed {
    border: solid black 10px;
    background-color: black;
}

.relatedvideostext {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 2em;
    margin-left: 17%;
}


/* VIDEO GALLERY */

.videoGallery {
    display: flex;
    background-color: rgba(243, 243, 243, 0.5);
    margin-top: 3rem;
}
  
.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: auto;
    width: auto;
}
  
.thumbnail-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between image and text */
    box-shadow: 7px 7px 5px black;
    cursor: pointer;
    background-color: rgba(0, 0, 255, 0.2);
    background-image: url(../../images/icons/play01.webp);
    background-color: rgba(#ffffff43);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 10%;
    width: 120%;
    border-radius: 0% 15px 15px 0%;
}
  
.thumbnail-item img {
    opacity: 0.8; 
    cursor: pointer;
    width: 125px;
    height: 80px;
    border-radius: 8px;
}
  
.thumbnail-item:hover {
    opacity: 1;
    transform: scale(1.05);
    background-image: url(../../images/icons/play02.webp);
}
  
.video-container {
    flex: 1; /* Takes up the remaining space */
    max-width: 800px; /* Max width for larger screens */
    text-align: center;
    padding: 3em 0em 0em 3em;
    border-top: solid black 5px;
    border-right: solid black 5px;
}
  
iframe {
    border: none;
    border-radius: 8px;
}

/* IMAGE GALLERY */

.imageGalleryWrapper {
    background-color: rgba(0, 0, 255, 0.2);
    margin-top: 3rem;
}

.imageGallery {
    align-content: center;
    margin: auto;
    width: 75%;
    padding: 1em;
    border-bottom: solid black 5px;
    border-left: solid black 5px;
}

.container {
	text-align: center;
    font-size: 2em;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: rgb(0, 0, 0);
}

.row {
	display: flex;
    margin: 1% 3% 1% 3%;
}

.column {
	text-align: center;
}

.column img {
  opacity: 0.8; 
  cursor: pointer;
  padding-right: 5%;
}

.column img:hover {
  opacity: 1;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* video section 2 */

.Videosection {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    background-color: rgb(255, 255, 255);
    padding: 1em;
    margin-top: 1%;
}

.video1, .video2 {
    border: solid white 5px;
    background-color: rgba(0, 180, 0, 0.7);
    border-radius: 2%;
    text-align: center;
    box-shadow: 5px 5px black;
}

/* FOOTER */
.MiscBox {
    max-width: 1440px;
    margin: auto;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
}
            
footer {
    background-color: rgb(0, 0, 0); 
    padding: 30px; 
    display: flex;
    justify-content: space-around; 
    width: 1440px;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    list-style: none; 
    letter-spacing: 2px; 
    line-height: 1.3;
}

footer li:hover {
    background-color: white;
    color: black;
}

ol li {
    list-style-type: none; 
    color: rgb(255, 255, 255); 
    text-align: right; 
    vertical-align: middle;
}

.footerlogo {
    width: 275px; 
    opacity: 0.2;
}

.footerlogo:hover {
    filter: brightness(175%);
}

footer p {
    font-size: 15px;
}

.sitemaplists {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
    margin-bottom: 1em;
}