@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a:visited {
  color: white;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Calistoga", system-ui;
}

.calistoga {
  font-family: "Calistoga", system-ui;
}

button {
  background: none;
  /* Removes button background */
  border: none;
  /* Removes button border */
  padding: 0;
  /* Removes default padding */
  margin: 0;
  /* Optional: matches <p> default */
  color: inherit;
  /* Inherits text color from parent */
  font: inherit;
  /* Inherits font styles from parent */
  text-align: left;
  /* Optional: aligns text like a <p> */
  cursor: pointer;
  /* Keeps pointer cursor for interactivity */
  transition: color 0.3s ease;
  color: white;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: black;
  color: #fff;
  margin-top: 30vh;
  font-size: 14px;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: white;
  height: 60px;
  padding: 0 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-text {
  font-size: 1.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Calistoga", system-ui;
}

.header-text:hover {
  color: #dadada;
}

.title {
  font-size: 1.8rem;
  font-family: "Calistoga", system-ui;
  text-align: center;
}

.hamburger {
  position: absolute;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #000000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  z-index: 99;
}

.menu.open {
  max-height: 450px;
}

.menu ul {
  list-style: none;
  padding: 0;       /* Removed default padding */
  margin: 0;        /* Removed default margin */
  width: 100%;
}

.menu ul li {
  padding: 15px 0;  /* Changed from 15px 20px to remove horizontal padding */
  border-bottom: 1px solid #2c2c2c;
  text-align: center; /* Center text content */
  width: 100%;
}

.menu ul li:last-child {
  border-bottom: none;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  text-align: center;
}

.images {
  margin-right: 0vw;
}

.cover {
  position: relative;
  z-index: 2;
  width: 50vw;
  height: auto;
  box-shadow: 5px 0px 10px #131313;
}

.vinyl {
  position: absolute;
  z-index: 1;
  width: 50vw;
  height: auto;
  margin-left: -35vw;
}

.rotate {
  animation: rotation 10s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.album {
  display: flex;
  align-items: flex-start;
  width: 100;
  /* Example width */
  height: 200px;
  /* Example height */
  padding: 5rem;
}

.text-div {
  display: flex;
  flex-direction: column;
  /* This stacks items vertically */
  align-items: center;
  margin-bottom: 20px;
}

.link {
  padding: 5px;
  font-size: 18px;
  font-family: 'Calistoga', system-ui;
}

.banner-div {
  display: flex;
  justify-content: center;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.banner {
  position: relative;
  width: 80vw;
}

.cs-icon {
  width: 20px;
  height: 20px;
  padding-top: 5px;
  padding-right: 2px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form {
  margin-top: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-wwica {
  text-align: center;
  word-wrap: break-word;
}

.about-track p {
  font-size: 14px;
}