/* Reset base e font */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #b26dd4, #fca13d);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Wrapper */
.container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

/* Card */
.profile-card {
  background: linear-gradient(to bottom, #fbb03b, #f54ea2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Copertina e logo */
.cover {
  position: relative;
  height: 200px;
  background-image: url('cover.jpg');
  background-size: cover;
  background-position: center;
}
.cover .logo {
  position: absolute;
  top: 0px;
  left: 15px;
  width: 100px;
  height: 100px;
}

/* Immagine profilo */
.profile-img {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #fff;
  object-fit: cover;
  background-color: #fff;
}

/* Contenuto interno */
.content {
  padding: 70px 20px 30px;
  text-align: center;
}
.content h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

/* Bottone base */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  margin: 8px auto;
  padding: 12px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}

/* Icona dentro al btn */
.btn i {
  font-size: 1.2rem;
}

/* Colori social */
.youtube {
  background-color: #FF0000;
}
.tiktok {
  background-color: #000;
}
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.facebook {
  background-color: #1877F2;
}
.contact {
  background-color: #333;
}