:root {
  --bg: #11131a;
  --card: #1d2230;
  --text: #f3f5ff;
  --muted: #b9bfd4;
  --accent: #9f7bff;
  --accent-hover: #bda7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(160deg, #0d1018, #171d2a 45%, #11131a);
  color: var(--text);
  line-height: 1.5;
}

.hero,
main,
footer {
  width: min(960px, 92vw);
  margin: 0 auto;
}



h1,
h2 {
  margin: 0 0 0.5rem;
}

.albums p,
.more-content p {
  color: var(--muted);
  margin-top: 0;
}

.hero p {
  color: darkblue;
}

.hero {
  background-image: url("../images/logo-removebg-preview.png");
  background-size: contain;   /* show the full image */
  background-position: center;
  background-repeat: no-repeat;

  min-height: 240px;          /* gives the image room to display */
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

section,
footer {
  background: rgba(29, 34, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}



.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--accent-hover);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

.icon-grid a {
  background: #101521;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  padding: 0.9rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.icon-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--accent-hover);
}

.icon-grid img {
  width: 42px;
  height: 42px;
}

.albums ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* space between album covers */
  flex-wrap: wrap; /* lets them wrap on smaller screens */
}

.albums li {
  display: block;
}

.albums a,
.poetry-link {
  color: var(--accent);
}

.albums a:hover,
.poetry-link:hover {
  color: var(--accent-hover);
}

footer {
  margin-bottom: 2rem;
}

.album-cover {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-right: 0.75rem;
  display: block;
}

.menu-wrapper {
  position: relative;
}

.menu-toggle {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--accent);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--text);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}
