/* style.css */

/* General Styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0040ff;
  text-align: center;
  background: #ffffff;
}

a {
  color: #0040ff;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #ff0000;
  text-decoration: underline;
}

/* Navigation Menu */
nav {
  margin-top: 15px;
  margin-bottom: 20px;
}
nav a {
  margin: 0 15px;
  font-weight: bold;
}

/* Headings */
h1 {
  color: #000000;
  font-size: 3em;
  text-transform: uppercase;
  margin-top: 20px;
}

h2 {
  margin-bottom: 0.5em;
}

/* Logo */
.logo {
  display: block;
  margin: 20px auto;
  width: 180px;
}

/* Latest News GIF */
img.latest-news {
  display: block;
  margin: 20px auto;
  width: 300px;
}

/* Highlight text */
.highlight {
  color: red;
  font-size: 2em;
  font-weight: bold;
  margin: 20px 0;
}

/* YouTube Embed */
iframe.youtube {
  display: block;
  margin: 30px auto;
  width: 80%;
  max-width: 800px;
  height: 450px;
  border: none;
}

/* Main content */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  margin-bottom: 2em;
  color: #0040ff;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0.5em 0;
  font-weight: bold;
}

/* Bandcamp Embed */
.bandcamp-embed {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.bandcamp-embed iframe {
  border: 0;
  width: 100%;
  max-width: 500px;
  height: 120px;
}

/* Buttons */
.button {
  display: inline-block;
  background-color: #0040ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ff0000;
}

/* Contact Section */
#contact img {
  margin-top: 25px;
  width: 320px;
}
.contact-note {
  margin-top: 15px;
  color: #ff2222;
  font-weight: bold;
  font-size: 1.1em;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px 0;
  background: #ffffff;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 600px) {
  iframe.youtube {
    width: 100%;
    height: 250px;
  }
  .bandcamp-embed iframe {
    height: 100px;
  }
  .logo {
    width: 140px;
  }
  img.latest-news {
    width: 200px;
  }
  #contact img {
    width: 200px;
  }
}
