/* --- BASE STYLE --- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #f0f0f0;
  overflow-x: hidden;
}

h1, h2, p, a {
  margin: 0;
  text-decoration: none;
}

/* --- HEADER --- */
header {
  text-align: center;
  padding: 50px 20px;
  background: rgba(33, 33, 33, 0.9);
  border-bottom: 1px solid #333;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #00bcd4;
}

header p {
  font-size: 1.2rem;
  color: #bbb;
  margin-top: 10px;
}

/* --- NAVBAR --- */
nav {
  text-align: center;
  background: #1c1c1c;
  padding: 15px 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

nav a {
  color: #00bcd4;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #f0f0f0;
}

/* --- SEZIONI --- */
section {
  margin: 40px auto;
  padding: 20px;
  max-width: 900px;
  background: #1e1e1e;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #00bcd4;
  margin-bottom: 20px;
}

.quote {
  text-align: center;
  font-style: italic;
  color: #ccc;
}

/* --- CAROUSEL --- */
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: smooth;
}

.carousel iframe {
  min-width: 300px;
  height: 250px;
  border-radius: 10px;
  background: #000;
  border: 2px solid #333;
}

/* --- INSTAGRAM BUTTON --- */
.instagram-button {
  text-align: center;
  margin: 40px auto;
}

.instagram-button a {
  display: inline-block;
  padding: 10px 30px;
  background: #00bcd4;
  color: #fff;
  font-size: 1rem;
  border-radius: 25px;
  transition: background 0.3s, transform 0.2s;
}

.instagram-button a:hover {
  background: #008c9e;
  transform: scale(1.05);
}

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