/*filter.css*/
.filter-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  border-bottom: 2px solid #a6a6a6;
  padding-bottom: 10px;
  align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.filter-dropdowns-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.filter {
  background-color: white;
  font-size: 15px;
  border: 1px solid #a6a6a6;
  border-radius: 20px;
  padding: 5px 10px 5px 10px;
  height: 30px;
  width: 100%;
  max-width: 200px;
}

/*general.css*/
body {
  font-family: Lexend, Arial;
  margin: 100px auto;
  max-width: 1200px;
  padding: 0 10px;
  background-color: #fcfcfc;
}

button {
  font-family: Lexend, Arial;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid #922424;
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*header.css*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #323232;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
.header-left,
.header-right {
  min-width: 0;
}
.header-left-link {
  display: inline-block; /* or block if you want it full-width */
  text-decoration: none; /* remove underline */
}

.header-left-link .text-logo {
  color: black; /* keep your styles */
}

.header-left-link:hover .text-logo {
  color: #a6a6a6; /* hover effect */
}
.header-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.image-logo {
  width: auto;
  height: 60px;
  margin-left: 10px;
  margin-right: 10px;
}
.text-logo {
  font-size: 24px;
  font-weight: 500;
  color: black;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.text-logo:hover {
  color: #a6a6a6;
}
.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  margin-right: 10px;
}
.contact,
.support {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #a6a6a6;
  text-decoration: none;
  text-align: center;
}

.contact:hover,
.support:hover {
  color: white;
}

.header-right a + a {
  border-left: 1px solid #a6a6a6; /* vertical line */
  margin-left: 10px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .text-logo {
    display: none;
  }
}

/*search.css*/
.search-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 10px;
}

.search-box {
  position: relative;
  align-items: center;
}

.search {
  box-sizing: border-box;
  padding: 16px 16px 20px 50px;
  border-radius: 32px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #a6a6a6;
  outline: none;
  font-size: 18px;
}
.search:focus {
  border-color: #922424;
  box-shadow: 0 0 5px rgba(146, 36, 36, 0.5);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 16px;
  pointer-events: none;
}

/*track.css*/
p {
  margin-top: 0;
  margin-bottom: 0;
}

.track-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.track {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: auto;
  width: 100%;
  cursor: pointer;
  transition: box-shadow 0.1s, transform 0.1s;
}
.track.white {
  background-color: white;
}
.track.beige {
  background-color: beige;
}
.track:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.track-logo-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.track-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.track-info-container {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

.track-info-title {
  font-size: 18px;
  color: black;
  text-decoration: none;
}
.track-info-content-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}
.track-info-content-icon {
  width: 15px;
  height: 15px;
  color: #922424;
}
.track-info-content {
  font-size: 12px;
  color: rgb(100, 100, 100);
  margin-left: 3px;
  font-family: "Lexend Exa";
}

.track-image-container {
  width: 150px;
  height: 150px;
}
.track-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.track-image-big-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.track-image-big {
  width: 80%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .track-image-container {
    display: none;
  }
  .track-logo-container {
    display: none;
  }
}
