body {
  margin: 0;
  font-family: 'Arial Black', sans-serif;
  background: #f5f5f5;
  color: #111;
}

header {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

header h1 {
  font-size: 1.8rem;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  padding: 1rem;
}

.grid-item {
  border: 2px solid #000;
  position: relative;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
}

.grid-item .info {
  padding: 0.5rem;
  border-top: 2px solid #000;
}

.grid-item h2 {
  font-size: 1.2rem;
  margin: 0;
}

.grid-item p {
  font-size: 0.8rem;
  color: #555;
  margin: 0.2rem 0 0;
}

.featured {
  grid-row: span 2;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #fff;
  padding: 1rem;
  max-width: 800px;
  width: 90%;
  position: relative;
}

.modal-body {
  display: flex;
  gap: 1rem;
}

.modal-body img {
  max-width: 40%;
  border: 2px solid #000;
}

.modal-text {
  flex: 1;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .modal-body {
    flex-direction: column;
  }
  .modal-body img {
    max-width: 100%;
  }
.spotify-preview {
  border-top: 2px solid #000;
  margin: 2rem 1rem;
  padding: 1rem;
  background: #fff;
}

.spotify-preview h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}

.modal-contact h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #111;
}

/* Style ALL links inside contact */
.modal-contact a {
  display: inline-block;
  margin-top: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Email link style */
.modal-contact a[href^="mailto"] {
  color: #111;
  border-bottom: 1px dashed #111;
}

/* Instagram button */
.btn-instagram {
  padding: 8px 14px;
  border-radius: 6px;
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.6rem;
}

.btn-instagram:hover {
  opacity: 0.85;
}

}
