.spotify-black-bg {
  background: #000;
  border-radius: 50%;
  padding: 4px;
}
/* Solmane Band Website Styles */
:root {
  --primary: #1a1a1a;
  --accent: #fff;
  --text: #f2f2f2;
  --bg: #181818;
  --card: #232323;
  --shadow: 0 4px 32px rgba(0,0,0,0.7);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3vw 0 3vw;
  background: var(--primary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  height: 48px;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.logo-symbol {
  height: 48px;
  width: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.logo-text {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 2px #0008);
}
nav {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
nav .burger {
  display: none;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
}
nav .burger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
@media (max-width: 700px) {
  nav ul {
    flex-direction: column;
    background: var(--primary);
    position: fixed;
    top: 0;
    left: -220px;
    width: 200px;
    height: 100vh;
    gap: 1.5rem;
    padding-top: 5rem;
    box-shadow: 2px 0 16px #0008;
    transition: left 0.3s cubic-bezier(.77,0,.18,1);
    z-index: 15;
  }
  nav ul.open {
    left: 0;
  }
  nav .burger {
    display: flex;
    top: 1rem;
    transform: none;
  }
  nav {
    justify-content: flex-start;
  }
}
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a:hover {
  color: var(--accent);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(120deg, #1a1a1a 60%, #fff 100%);
  text-align: center;
  padding: 4rem 2vw 2rem 2vw;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.05em;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.socials {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s, filter 0.2s;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.bandcamp-icon {
  background: #000;
  padding: 4px;
}
.socials a:hover .social-icon {
  transform: scale(1.1) rotate(-5deg);
  filter: brightness(1.2) drop-shadow(0 0 6px #fff8);
}
section {
  padding: 3rem 2vw;
  max-width: 1100px;
  margin: 0 auto;

.music-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.music-item {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  min-width: 280px;
  max-width: 400px;
}
.music-item img {
  width: 90px;
  height: 90px;
  border-radius: 0.5rem;
  object-fit: cover;
}
.music-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
  background: #222;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  max-width: 400px;
  margin: 0 auto;
}
form input, form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: #181818;
  color: var(--text);
  resize: none;
}
form button {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.9rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover {
  background: #b30059;
}
#form-message {
  margin-top: 0.5rem;
  min-height: 1.2em;
  font-size: 1rem;
}
footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #aaa;
  background: var(--primary);
  margin-top: 3rem;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .music-list {
    flex-direction: column;
    align-items: center;
  }
  header {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  section {
    padding: 2rem 1vw;
  }
}

/* Mobile responsive mailing list */
@media (max-width: 600px) {
  #contact-form > div {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  #contact-form input[type="email"] {
    width: 100% !important;
  }
  
  #contact-form button[type="submit"] {
    width: 100% !important;
    padding: 1.2rem 1.5rem !important;
  }
}

/* Burger menu styles */
.burger-menu {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation dropdown when burger is active */
#nav-list.open {
  display: flex !important;
  flex-direction: column !important;
  position: fixed !important;
  top: 70px !important;
  left: 2rem !important;
  background: #111 !important;
  padding: 1.5rem 2rem !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.8) !important;
  gap: 1.5rem !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  animation: slideDown 0.3s ease-out;
}

#nav-list.open li {
  text-align: left;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  h1, h2, h3 {
    text-align: center;
  }
  
  div[style*="text-align:center"] {
    width: 100%;
  }
  
  /* Center hero content */
  #home {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #home > div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  /* Center flexbox items */
  div[style*="display:flex"] {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
  
  /* Reduce heading sizes on mobile */
  h1 {
    font-size: 2.5rem !important;
  }
  
  h2 {
    font-size: 1.8rem !important;
  }
  
  /* Center buttons and links */
  a[style*="display:inline"], button {
    display: block !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1rem !important;
  }
  
  /* Logo responsive sizing */
  #home img {
    max-width: 80% !important;
    width: 300px !important;
  }
}

/* Gallery styles */
#gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

#gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

#gallery-grid > div {
  transition: transform 0.3s;
}

#gallery-grid > div:hover {
  transform: translateY(-5px);
}
