/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #222;
  color: #fff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

nav ul li a:hover {
  color: red;
}

section {
  padding: 80px 20px 40px; /* top padding increased for fixed header */
}

section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro {
  text-align: center;
}

.intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.intro p {
  font-size: 18px;
  margin-bottom: 20px;
}

.intro img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.beat-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.beat {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.beat img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.beat h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin: 10px 0;
}

.beat audio {
  width: 100%;
  margin: 10px 0;
}

form {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
  display: block;
  margin-bottom: 5px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
}

form button:hover {
  background: #444;
}

footer {
  background: #222;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
a {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: red;
  border: grey solid px;
  text-decoration: none;
  margin-left: 10px
}
