
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: white;
}

.logo {
    width: 80px;
    margin-top: 20px;
}

.hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero.png') no-repeat center top/cover;
        height: 50vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 0 20px;
    }

.cta {
    background-color: #0077ff;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 1rem;
    display: inline-block;
}

.plans {
    display: flex;
    justify-content: space-around;
    background-color: #1a1a1a;
    padding: 2rem;
    flex-wrap: wrap;
}

.plan {
    width: 30%;
    margin-bottom: 2rem;
    text-align: center;
}

.plan img {
    width: 100%;
    border-radius: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
}

.price {
    color: #0077ff;
    font-weight: bold;
    margin-left: 10px;
}

.transformations {
    padding: 2rem;
    text-align: center;
}

.carousel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.carousel img {
    max-width: 300px;
    border-radius: 10px;
}

.bio {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.bio-pic {
    width: 300px;
    border-radius: 15px;
}

.bio-text {
    max-width: 600px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #111;
    color: #aaa;
}

footer .socials a {
    color: #0077ff;
    margin: 0 10px;
    text-decoration: none;
}

.large-logo {
    width: 100px;
}

.plan img {
    width: 80%;
    max-width: 250px;
    border-radius: 15px;
    margin: auto;
}

.center-bio {
    text-align: center;
}

.small-bio {
    width: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bio-cente#0077ff {
    margin: auto;
    max-width: 800px;
    padding: 0 20px;
}

.plan {
    width: 28%;
    margin-bottom: 1rem;
}

.plan ul {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0 10px;
}

.center-bio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.bio-pic {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.plan ul {
    list-style-type: none; /* Tolgo i puntini dagli elenchi */
    padding-left: 0;
}

.plans {
    gap: 10px; /* Riduzione dello spazio tra pacchetti */
    justify-content: center;
}

.plan {
    width: 26%; /* Ulteriore riduzione per avvicinare i pacchetti */
    padding: 10px;
}



/* Navbar */
.navbar {
  background-color: #000;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.navbar-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.navbar-logo {
  height: 40px;
  object-fit: contain;
}
.hamburger {
  position: absolute;
  left: 20px;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.navbar-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
}
.navbar-menu.open {
  display: flex;
}
.navbar-menu a {
  color: white;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
}
body {
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
}



.plan-subtitle {
  font-size: 14px;
  color: #888;
  font-weight: 400;
  margin-top: 5px;
}



/* Contatti */
.contact-section {
  background-color: #111;
  color: white;
  padding: 40px 20px;
  text-align: center;
}
.contact-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-section form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-section input,
.contact-section textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
.contact-section .form-group {
  display: flex;
  gap: 10px;
}
.contact-section .form-group input {
  flex: 1;
}
.contact-section textarea {
  resize: vertical;
  min-height: 100px;
}
.whatsapp-button {
  background-color: #25d366;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.whatsapp-button:hover {
  background-color: #1ebe57;
}


/* Nuove card pacchetti */
.new-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.new-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
.new-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.new-card h3 {
    font-size: 1.2em;
    margin: 10px 0;
}
.new-card .price {
    font-size: 1.4em;
    color: #0077ff;
    font-weight: bold;
}


h1, h2, h3, h4, h5, h6 {
    color: #0077ff;
}
