body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #111;
  color: #fff;
  text-align: center;
}

.imag {
  margin-top: 20px;
}

.imagee {
  width: 100%;
  max-height: 300px;
  object-fit: cover;/* fills and crops */
  /* or object-fit: contain; for full image with blank space */
}

.red-glow {
  color: #ff4444;
  text-shadow: 0 0 10px #ff4444, 0 0 20px #ff4444;
}

.page-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
}

.description {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-bar input,
.filter-bar select {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  width: 180px;
}

.list-container {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.item h3 {
  margin-bottom: 10px;
}

.item button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 16px;
  background: red;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Front Page */
..homepage {
  padding: 40px 20px;
}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.main-button {
  background-color: #ff4444;
  color: white;
  padding: 20px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  width: 80%;
  max-width: 500px;
  transition: background-color 0.3s ease;
}

.main-button:hover {
  background: darkred;
}

/* License Boxes */
.license-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  font-style: italic;
}

.license-column {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
}

.license-column h3 {
  text-align: center;
  color: red;
}

.license-column ul {
  list-style: none;
  padding: 0;
}

.license-column li {
  padding: 6px 0;
  border-bottom: 1px solid #444;
}

.license-section2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  font-style: italic;
}

.license-column2 {
  background: #222;
  padding: 40px;
  border-radius: 12px;
  width: 300px;
}

.license-column2 h3 {
  text-align: center;
  color: red;
}

.license-column2 ul {
  list-style: none;
  padding: 0;
}

.license-column2 li {
  padding: 6px;
  border-bottom: 1px solid #444;
}


/* the list of the buttons*/
.wav-button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 16px;
  background: #4444ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.wav-button:hover {
  background: #0000cc;
}

.unlimited-button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 16px;
  background: #4444ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.unlimited-button:hover {
  background: #0000cc;
}
  
}

.buylicence-button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 16px;
  background: #4444ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.buylicence-button:hover {
  background: #0000cc;
}

audio {
  width: 100%;
  margin: 10px 0;
}
  
/*art covers of the beats*/
  .image-wrapper {
  display: flex;
  justify-content: center; /* or center if you want it centered */
  width: 100%;
  margin: 10px 0;
}

.sample-image {
  max-width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 1px;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 1rem;
  position: sticky;  /* Make it stick */
  top: 0;            /* Stick to the top */
  z-index: 1000;     /* Keep it above other elements */
}

.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: white;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 1rem;
  background-color: #222;
  position: absolute;
  top: 60px;
  right: 1rem;
  padding: 1rem;
  border-radius: 5px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.nav-links.show {
  display: flex;
}


.contact-container {
  justify-content: center
  width: 100%;
  padding: 20px;
  background: #1e1e1e;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-container h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-container p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-links a {
  display: flex;
  align-items: center;
  background: #292929;
  color: white;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  transition: background 0.3s;
  gap: 10px;
}

.contact-links a:hover {
  background: #3f3f3f;
}

.contact-links img {
  width: 60px;
  height: 60px;
}

.tandc h1 {
  font-size: 24px;
  color: white;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-top: 40px;
}

.tandc p {
  font-size: 16px;
  margin: 20px 0;
}