:root {
  --gold: #d4af37;
  --silver: #cfd2d6;
  --black: #050505;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: var(--black);
  color: var(--silver);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  height: 60px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--silver);
  transition: color .3s;
}

nav a:hover {
  color: var(--gold);
}

.hero {
  text-align: center;
  padding: 120px 20px;
  background: url('../assets/bg-space.jpg') center/cover no-repeat;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
}

.section {
  padding: 80px 15%;
}

.section.dark {
  background: #0c0c0c;
}

.section h2 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.card {
  border: 1px solid var(--gold);
  padding: 40px;
  text-align: center;
  text-decoration: none;
  color: var(--silver);
  transition: all .3s;
}

.card:hover {
  background: var(--gold);
  color: var(--black);
}

footer {
  padding: 30px;
  text-align: center;
  border-top: 1px solid #222;
}









.news-card {
  background: linear-gradient(135deg, #1E6EEF83, #8b5cf6, #06bd64);
  color: #051025;
  font-weight: 500;
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}





.release-item {
  margin-bottom: 25px;
}




/* Contatti – stile elegante */

.section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.section h1,
.section h2 {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 28px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
  transition
  
  
  
  
  
  
  
distro:


.hero.small {
  padding: 80px 20px;
}

.list {
  list-style: none;
  margin-top: 30px;
}

.list li {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}











catalogo



.release-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.release-cover img {
  width: 180px;
  height: auto;
  border-radius: 6px;
}

.release-info h2 {
  margin-top: 0;
}





artisti



.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.artist-card {
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.artist-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold);
}

.artist-card h3 {
  margin-bottom: 6px;
}

.artist-card p {
  color: var(--muted);
  font-size: 0.9rem;
}





