@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Urbanist:wght@400;700&display=swap');

/* Palette urbana */
:root {
  --bg-dark: #1a1a1a;
  --accent: #ff3c00;
  --text-light: #f0f0f0;
  --text-muted: #999;
  --border-color: #333;
}

/* Sfondo cemento + overlay */
body {
  margin: 0;
  font-family: 'Urbanist', sans-serif;
  background-color: var(--bg-dark);
  background-image: url('images/bg-concrete.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Titoli con glow neon */
h1, h2 {
  font-family: 'Cinzel', serif;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 60, 0, 0.6);
  margin-bottom: 20px;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #000;
  border-bottom: 1px solid var(--border-color);
}

.logo {
  max-height: 70px;
  animation: fadeIn 1s ease-in-out;
}

/* Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent);
}

.lang-switch button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: 10px;
}

/* Sezioni */
section {
  padding: 60px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--text-light);
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Galleria immagini con effetto graffiti */
.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gallery img {
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 60, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 0 30px rgba(255, 60, 0, 0.6);
  filter: contrast(1.2) saturate(1.1);
}

/* Calendly */
.calendly-inline-widget {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background-color: #000;
  color: var(--text-muted);
  font-size: 0.9em;
  border-top: 1px solid var(--border-color);
}

/* Animazione logo */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .gallery img {
    max-width: 90%;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }

  section {
    padding: 40px 15px;
  }
}
.artist-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.artist-card {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 60, 0, 0.3);
  transition: transform 0.3s ease;
  text-align: left;
}

.artist-card:hover {
  transform: translateY(-5px);
}

.artist-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.artist-card h3 {
  margin: 10px 0 5px;
  color: var(--accent);
  font-family: 'Cinzel', serif;
}

.artist-card p {
  font-size: 0.95em;
  color: var(--text-light);
}

.styles {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.styles li {
  font-size: 0.9em;
  color: var(--text-light);
  margin-bottom: 5px;
}
