/* CSS Document */



ul {
  list-style-type: none;
position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333333;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #111111;
}

.fascinate-inline-regular {
  font-family: "Fascinate Inline", system-ui;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  font-family: Arial, sans-serif;
  color: white;
  overflow-x: hidden;
}

.spashsubtext {
	padding-left: 100px;
		padding-right: 100px;
	text-align: center; 
		
}






/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
}

/* === Background Border === */
.background-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('vinyl-border.jpg') repeat-y center center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

/* === Gallery Container === */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.gallery-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #f4f4f4;
}


.album-row {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}


.label {
  flex: 0 0 150px;
  background-color: #222;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label p {
  font-size: 1rem;
  color: #ccc;
}


.album-pair {
  flex: 1;
  display: flex;
  gap: 20px;
}

.album-pair img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-pair img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .album-row {
    flex-direction: column;
    align-items: flex-start;
	  align-items: center
  }

  .album-pair {
    flex-direction: column;
    width: 150%;
  }

  .album-pair img {
    max-height: 250px;
  }

  .label {
    width: 100%;
    margin-bottom: 10px;
  }
}






/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: url('images/background.jpg') repeat-y left, 
              url('images/background.jpg') repeat-y right, 
              #111 center;
  background-size: 200px auto, 200px auto;
  background-position: left top, right top;
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

.album {
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.album img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border: 2px solid #333;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  background-color: #222;
  transition: transform 0.3s ease;
}

.album:hover img {
  transform: scale(1.05);
}

/* Always-visible subheading under image */
.subheading {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s, border-bottom 0.2s;
}

.subheading:hover {
  color: #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

/* Fullscreen overlay */
.album.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.95);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  animation: fadeIn 0.4s ease-in-out;
}

.album.fullscreen img {
  width: auto;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  border: 2px solid #555;
  transform: none !important;
}

/* Hide subheading in fullscreen */
.album.fullscreen .subheading {
  display: none;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.album.fullscreen .close-btn {
  display: block;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fdfdfd;
  color: #222;
  line-height: 1.6;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header .intro {
  font-size: 1.1rem;
  color: #555;
}

.artist {
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.artist h2 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 10px;
}

.artist .bio {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.album-covers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.album {
  flex: 1 1 45%;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  padding: 15px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.album:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.album img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.album-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222;
}

.album-info p {
  font-size: 0.95rem;
  color: #555;
}

footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .album-covers {
    flex-direction: column;
  }

  .album {
    flex: 1 1 100%;
  }
}