/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Courier+Prime:wght@400;700&display=swap');

/* Light mode (default) */
body {
  margin: 0;
  padding: 0;
  background: white;
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  text-transform: uppercase; /* make all text uppercase by default */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;    /* tighter letters */
}

.header-left span {
  display: inline-block;
}

/* Header right icons */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-right .social-icons {
  display: flex;
  align-items: center; /* vertically centers icons */
  gap: 0.5rem;
}

.header-right .social-icons a {
  display: inline-flex;   /* allows vertical centering of img/svg */
  align-items: center;
  justify-content: center;
  margin: 0 0.2rem;
}

.header-right .social-icons img,
.header-right .social-icons svg {
  width: 14px;  /* adjust size as needed */
  height: 14px; 
  display: block; /* vertical-align not needed */
  transition: opacity 0.3s, transform 0.3s;
}

.header-right .social-icons a:hover img,
.header-right .social-icons a:hover svg {
  opacity: 0.7;
  transform: scale(1.2);
}

/* Navigation at top */
nav {
  display: flex;
  justify-content: flex-start;
  padding: 0.5rem 2rem;
  gap: 2rem;
  border-bottom: 1px solid #ccc;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a {
  text-decoration: none;
  color: black;
  transition: color 0.2s;
  text-transform: uppercase;
}

/* Prevent links from changing color when visited */
a, a:link, a:visited {
  color: black;
  text-transform: uppercase;
}

a:hover, nav a:hover {
  text-decoration: underline;
  color: #555;
}

/* Main content */
main {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: inherit;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

/* Italic home intro text - keeps original capitalization and centered */
.home-intro p {
  font-style: italic;
  font-size: inherit;
  text-align: center;      /* centers the text */
  text-transform: none;    /* respects original HTML casing */
}

/* Gigs / releases lists */
.gigs-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gigs-container li {
  margin-bottom: 0.5rem;
  font-size: inherit;
  text-transform: uppercase;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: inherit;
  color: #555;
  text-transform: uppercase;
  letter-spacing: -1px;
}

footer a, footer a:link, footer a:visited {
  color: #555;
  text-transform: uppercase;
}

footer .social-icons a {
  margin: 0 0.3rem;
}

footer .social-icons img {
  width: 24px;
  height: 24px;
}

/* Circle image in header (optional) */
.top-right-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .top-right-img {
    width: 30px;
    height: 30px;
  }

  .header-right .social-icons img {
    width: 16px;
    height: 16px;
  }
}

/* Home page press image */
.home-press-img {
  display: block;
  margin: 2rem auto;
  max-width: 90%;
  height: auto;
  border: none;
}

.bandcamp-player {
  border: 0;
  width: 300px;      /* adjust width as needed */
  height: 42px;      /* keeps the small player height */
  display: block;
  overflow: hidden;  /* removes extra white space at the bottom */
}

/* Make Instagram logo slightly smaller */
.header-right .social-icons a:first-child img {
  width: 13px;  /* smaller than the default 14px */
  height: 13px;
}


