body {
  font-family: 'Montserrat', sans-serif;
  background-color: #0c0c0c;
  color: #f1f1f1;
}
h1,h2, h4, p {
  color: #e0e0e0;
}
a {
  text-decoration: none;
  color: inherit;
}
/* === Avatar circolare === */
.avatar {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  filter: grayscale(100%) contrast(110%);
  box-shadow: 0 0 25px rgba(255,255,255,0.15);
}

/* === Hero section === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  background: radial-gradient(circle at 50% 40%, #1b1b1b, #0c0c0c 90%);
}

.banner {
  background: linear-gradient(90deg, #fff, #888);
  color: #000;
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  border-left: 6px solid #000;
  transition: background 0.4s;
}
.banner:hover {
  background: linear-gradient(90deg, #ccc, #999);
}

.social-icons a {
  color: #aaa;
  margin: 0 12px;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #fff;
}

/* === Description === */
.description {
  max-width: 720px;
  margin: 4rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: #b5b5b5;
  line-height: 1.6;
}

/* === Gallery === */
.gallery img {
  border-radius: 8px;
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
  filter: grayscale(100%) contrast(120%);
}
.gallery img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(110%);
}

/* === Modal === */
.modal-dialog {
  max-width: 90vw;
}

.modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #000;
}

.modal-img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  margin: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.modal-backdrop.show {
  opacity: 0.95 !important;
  background-color: #000 !important;
}

/* === Mappa === */
.map-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #111;
  box-shadow: 0 0 15px rgba(255,255,255,0.08);
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(110%) brightness(90%);
  transition: filter 0.4s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(100%) brightness(100%);
}


/* === Footer === */
footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  margin-top: 3rem;
}