/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BODY */
body {
  background: #031200;
  color: #ffffff;
  font-family: "Courier New", monospace;
}

/* SITE CONTAINER */
.site {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* HEADER */
.header {
  margin-bottom: 40px;
}

.header h1 {
  font-size: 36px;
  border: none;
  margin: 0;
}

.tagline {
  opacity: 0.7;
  margin-top: 5px;
}

/* LAYOUT */
.layout {
  display: flex;
  gap: 40px;
}

/* MAIN CONTENT */
.content {
  flex: 2;
}

/* SIDEBAR */
.sidebar {
  flex: 1;
  text-align: center;
}

/* LOGO */
.logo {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CARDS (replaces your green boxes) */
.card {
  border: 1px solid #0D8500;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  background: rgba(13, 133, 0, 0.15);
}

.artist-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* keep using your existing .logo, but constrain it better here */
.artist-row .logo {
  width: 350px;
  height: auto;
  flex-shrink: 0;
}

/* make paragraph take remaining space */
.artist-row p {
  flex: 1;
  margin: 0;
}

/* HEADINGS */
h2 {
  margin-bottom: 10px;
}

/* LISTS */
ul {
  padding-left: 20px;
}

.buttons {
  margin: 10px 0;
  padding: 0;

  background: none;      /* removes rectangle */
  border: none;
}
.buttons a {
  color: #ffffff;        /* white text */
  text-decoration: none; /* removes underline */
  font-size: 18px;       /* bigger text */
  font-weight: bold;

  transition: opacity 0.2s ease;
}

/* hover effect (makes it feel clickable but clean) */
.buttons a:hover {
  opacity: 0.6;
}
      
/* MOBILE */
@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    margin-top: 40px;
  }
  @media (max-width: 700px) {
  .artist-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-row .logo {
    width: 70%;
  }
}
}