/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #0f0f0f;
  color: #ffffff;
  min-height: 100vh;
}

/* HEADER */
.contact-header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #111, #1c1c1c);
  border-bottom: 1px solid #333;
}

.contact-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-header p {
  color: #ccc;
}

/* MAIN */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

/* INFO */
.contact-info {
  background: #161616;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #ddd;
  line-height: 1.6;
}

.info-box {
  margin-bottom: 15px;
  padding: 15px;
  background: #222;
  border-radius: 10px;
}

.info-box a {
  color: #ffffff;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

/* NOTE */
.contact-note {
  background: #141414;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #222;
}

.contact-note h3 {
  margin-bottom: 10px;
}

.contact-note p {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* FOOTER */
.contact-footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  color: #888;
  font-size: 0.9rem;
}

/* BACK BUTTON */
.back-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;        /* sfondo scuro */
  color: #fff;             /* testo bianco */
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transition: 0.2s;
  z-index: 1000;
}

.back-btn:hover {
  background: #222;
}







/* RESPONSIVE */
@media (max-width: 600px) {

  .contact-header h1 {
    font-size: 1.6rem;
  }

  .contact-container {
    padding: 30px 15px;
  }

}
