/* Reset di base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Stile globale */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1d;  /* più morbido del nero puro */
  color: #f1f1f1;             /* più chiaro per maggiore leggibilità */
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  color: #ffffff;
}

a {
  color: #80d0ff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

button {
  background-color: #3b82f6;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #2563eb;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: #1f1f1f;
  padding: 20px 0;
  text-align: center;
}

.banner {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.subtitle {
  font-size: 2rem;
  color: #8ab4f8;
  margin-top: 8px;
  font-weight: 500;
}

/* Sezioni principali */
h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #bb86fc;
  border-bottom: 2px solid #bb86fc;
  padding-bottom: 5px;
}

.section-about p,
.section-contact p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Progetti */
.projects-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.project-item {
  background-color: #272727;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #3f3f3f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #6200ea;
}

.project-item h3 {
  color: #bb86fc;
  margin-bottom: 10px;
}

.project-item p {
  margin-bottom: 15px;
  color: #ccc;
}

/* Bottoni secondari */
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  background-color: transparent;
  border: 2px solid #bb86fc;
  color: #bb86fc;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #bb86fc;
  color: #121212;
}

.home-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.btn-secondary.return-home {
  margin-top: 80px;
  display: inline-block;
}

/* Contatti */
.section-contact a {
  color: #8ab4f8;
  text-decoration: underline;
}

.section-contact a:hover {
  color: #bb86fc;
}

/* Footer */
footer {
  background-color: #1f1f1f;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  color: #666;
  margin-top: 40px;
}




/* .navbar {
  background-color: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #4b0082;
}

.navbar a {
  color: #d0b3ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #fff;
} */
