/* style.css - FastReview Stylesheet */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #1A3143;
  color: gold;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

header {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.banner {
  width: 500px;
  height: 185px;
  object-fit: cover; /* opzionale, per evitare deformazioni */
}

h1 {
  all: unset; /* Rimuove tutti gli stili predefiniti */
  font-size: 24px !important;
  color: white !important;
  margin-bottom: 10px !important;
  font-weight: bold;
  text-align: center;
}

h2 {
  all: unset; /* Rimuove tutti gli stili predefiniti */
  font-size: 20px; !important;
  color: white !important;
  margin-top: 30px;
  margin-bottom: 10px; !important;
  font-weight: bold;
  text-align: center;
}

p,
li {
  font-size: 15px;
  margin-bottom: 15px;
  color: #ccc;
}

ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.highlight {
  color: #00ffff;
  font-weight: bold;
}

.button-container {
  text-align: center;
  margin-top: 40px;
}

.form-button {
  display: inline-block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.form-button:hover {
  background-color: #ddd;
}

.pricing-button {
  display: inline-block;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: bold;
  color: black;
  background-color: #ffd700;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pricing-button:hover {
  background-color: #ffcc00;
  transform: scale(1.03);
}

.testimonial-section {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid gold;
}

.testimonial-box {
  background-color: #111;
  border-left: 4px solid gold;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-box p:last-child {
  margin-top: 10px;
  color: #aaa;
}

.contact-section {
  max-width: 600px;
  margin: 50px auto 30px auto;
  padding: 20px;
  background-color: #111;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 16px;
}

.contact-item i {
  width: 30px;
  text-align: center;
  color: #00ffff;
  font-size: 20px;
  margin-right: 10px;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-top: 40px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 18px;
  }
  p,
  li {
    font-size: 14px;
  }
}

.home-button {
  position: center;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: inline-block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: gold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: #ffcc00;
}

.nav-btn {
  text-align: center;
}

.navbar {
  width: 100%;
  background-color: #111;
  padding: 10px 0;
  text-align: fixed;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  width: 90px;
  height: 20;
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  justify-content: center;
}

.nav-list li a:hover {
  color: #ffcc00;
  justify-content: center;
}
/* Tabella Prezzi */
table {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #222;
  color: white;
  font-family: Arial, sans-serif;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

thead {
  background-color: #00ffff;
  color: black;
}

.price-row {
  background-color: #2a2a2a;
}

.price-row:nth-child(even) {
  background-color: #1e1e1e;
}

/* Navbar Buttons */
.nav-buttons li {
  margin: 0;
  padding: 0;
}

.nav-btn {
  display: inline-block;
  padding: 10px 22px;
  margin: 0 3px;
  font-size: 15px;
  font-weight: bold;
  color: black;
  background-color: gold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.15);
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.nav-btn:hover,
.nav-btn.active {
  background-color: #00ffff;
  color: #111;
  transform: scale(1.04);
}

<!-- Stile uniforme al sito principale -->
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background-color: #1A3143;
      color: gold;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      padding: 20px;
    }

    /* Header con banner */
    header {
      text-align: center;
      padding: 20px;
      border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    }

    .banner {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 8px;
    }

    h1 {
      font-size: 24px;
      color: white;
      margin-bottom: 10px;
    }

    /* Navigation Tabs */
    .nav-tabs {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin: 20px auto;
      text-align: center;
      font-size: 16px;
    }

    .nav-tabs a {
      color: gold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-tabs a:hover {
      color: #00ffff;
    }

    h2 {
      font-size: 20px;
      color: #00ffff;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    p, li {
      font-size: 15px;
      margin-bottom: 15px;
      color: #ccc;
    }

    ul {
      margin-left: 20px;
      margin-bottom: 15px;
    }

    .highlight {
      color: #00ffff;
      font-weight: bold;
    }

    .faq-section {
      max-width: 800px;
      margin: auto;
      padding: 20px;
    }

    .faq-item {
      margin-bottom: 30px;
    }

    .faq-question {
      font-size: 17px;
      color: #00ffff;
      cursor: pointer;
      user-select: none;
      margin-bottom: 10px;
    }

    .faq-answer {
      display: none;
      color: #aaa;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .faq-answer.show {
      display: block;
    }

    .button-container {
      text-align: center;
      margin: 40px auto;
    }

    .form-button, .pricing-button {
      display: inline-block;
      padding: 14px 24px;
      font-size: 16px;
      font-weight: bold;
      color: black;
      background-color: white;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .form-button:hover, .pricing-button:hover {
      background-color: #ddd;
    }

    .pricing-button {
      background-color: #ffd700;
      box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
    }

    .pricing-button:hover {
      background-color: #ffcc00;
      transform: scale(1.03);
    }

    .contact-section {
      max-width: 600px;
      margin: 50px auto 30px auto;
      padding: 20px;
      background-color: #111;
      border-radius: 10px;
      text-align: center;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      color: #ccc;
      font-size: 16px;
    }

    .contact-item i {
      width: 30px;
      text-align: center;
      color: #00ffff;
      font-size: 20px;
      margin-right: 10px;
    }

    footer {
      text-align: center;
      font-size: 12px;
      color: #555;
      margin-top: 40px;
    }

    .footer-links {
      margin-top: 10px;
    }

    .footer-links a {
      color: gold;
      text-decoration: none;
      margin: 0 10px;
    }

    .footer-links a:hover {
      color: #00ffff;
    }

    /* Stili per il footer social */
    .social-footer {
      background-color: #111;
      border-radius: 10px;
      padding: 25px 20px;
      margin-top: 50px;
      border: 1px solid rgba(255, 215, 0, 0.2);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      text-align: center;
    }

    .social-footer h2 {
      margin-top: 0;
      margin-bottom: 20px;
      color: #00ffff;
      font-size: 20px;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .social-icon {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .social-icon:hover {
      transform: translateY(-5px);
    }

    .social-icon i {
      font-size: 28px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      color: #1A3143;
      background-color: gold;
      border-radius: 50%;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    .social-icon:hover i {
      background-color: white;
    }

    .social-icon span {
      font-size: 12px;
      color: #ccc;
      font-weight: bold;
    }

    .social-icon:hover span {
      color: gold;
    }

    @media (max-width: 480px) {
      .social-icons {
        gap: 15px;
      }
      .social-icon i {
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px;
      }
    }

    .home-button {
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 1000;
      display: inline-block;
      padding: 10px 16px;
      font-size: 16px;
      font-weight: bold;
      color: black;
      background-color: gold;
      border-radius: 6px;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
      transition: background-color 0.3s ease;
    }

    .home-button:hover {
      background-color: #ffcc00;
    }

.contact-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1a3143;
  color: gold;
  margin-bottom: 30px;
}

.contact-table tr td:first-child {
  font-weight: bold;
  padding-right: 15px;
  vertical-align: top;
  width: 120px;
}

.contact-table input,
.contact-table textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background-color: #222;
  color: gold;
  font-size: 15px;
}

.contact-table label {
  display: block;
  margin-bottom: 8px;
}

.contact-table textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-table .submit-button {
  width: 100%;
}

/* Container per il form */
.form-container {
  background-color: #1a3143;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: auto;
  margin-top: 40px;
}

/* Tabella form stilizzata */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.styled-table td {
  padding: 10px 0;
  vertical-align: middle;
}

.styled-table label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: gold;
}

.styled-table input,
.styled-table textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  background-color: #222;
  color: gold;
  resize: vertical;
}

.styled-table input:focus,
.styled-table textarea:focus {
  outline: none;
  border: 1px solid #00ffff;
  background-color: #333;
}

/* Bottone Submit migliorato */
.submit-button {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  background-color: gold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.3);
}

.submit-button:hover {
  background-color: #ffcc00;
  transform: scale(1.02);
}

/* Messaggi successo/errore */
.success-message,
.error-message {
  display: none;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  font-size: 16px;
}

.success-message {
  color: #00ff99;
}

.error-message {
  color: #ff6b6b;
}

<!-- css blog -->
/* Stili per il blog */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  background-color: #111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post h2 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #00ffff;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: gold;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ffcc00;
}
/* Fine Stili per il blog */

/* Stili per il blog */
.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  background-color: #111;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.blog-post h2 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-meta {
  color: #00ffff;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: gold;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #ffcc00;
}

.admin-form .form-group {
  margin-bottom: 20px;
}

.admin-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  background-color: #222;
  color: gold;
}

.admin-form button {
  background-color: gold;
  color: #1A3143;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-form button:hover {
  background-color: #ffcc00;
}

{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  color-scheme: light;
}

/* Immagine promozionale */
.promotion-section {
  text-align: center;
  margin-bottom: 24px;
}

.promotion-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Testo principale */
.highlight {
  color: #ffcc00;
  font-weight: bold;
}