/*
Theme Name: Mesmerize Child
Template: mesmerize
Version: 1.0
This theme, like WordPress, is licensed under the GPL.
*/

/* Nasconde le intestazioni predefinite del tema */
.hero-title,
.header-subtitle,
.inner-header-description,
.page .entry-title,
h1.entry-title,
h1.page-title,
.page-title {
  display: none !important;
}

/* Riduce lo spazio vuoto sopra e sotto */
.page-header,
.inner-header,
.page-title-section,
.header-wrapper,
.site-content,
.page .content-area,
.page-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Stili globali */
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: #4a4a4a;
}

p {
  color: #4a4a4a;
}

h1, h2, h3, h4, h5, h6 {
  color: #005bb5;
}

a:hover,
.button.color1,
.highlight {
  color: #00aaff;
}

/* Bottoni principali azzurri */
.button,
.cta-button {
  background-color: #00aaff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover,
.cta-button:hover {
  background-color: #0088cc;
}

/* Pulsanti secondari (outline) */
.button.outline {
  background-color: transparent;
  border: 2px solid #00aaff;
  color: #00aaff;
}

.button.outline:hover {
  background-color: #00aaff;
  color: #ffffff;
}

/* Bottoni color1 uniformi */
.button.color1 {
  background-color: #00aaff;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1em;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.button.color1:hover {
  background-color: #0088cc;
  transform: translateY(-3px);
}

/* Header buttons */
.header-buttons-wrapper .button.color1 {
  background-color: #00aaff;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-buttons-wrapper .button.color1:hover {
  background-color: #0088cc;
  transform: translateY(-3px);
}

.header-buttons-wrapper .button.color-white.outline {
  display: none;
}

/* Features card */
.features-12-card-bordered .card .icon,
.features-12-card-bordered .card h5,
.features-12-card-bordered .card .icon.color2,
.features-12-card-bordered .card h5.color2 {
  color: #00aaff !important;
  border-color: #00aaff !important;
}

.features-12-card-bordered .card .icon::before {
  border-color: #00aaff;
}

/* Wow section */
.wow-section {
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  margin: 40px auto;
  max-width: 600px;
  color: white;
  font-family: 'Arial', sans-serif;
}

.wow-form-container {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 20px;
}

.wpforms-field-label {
  font-weight: bold;
  color: #fff;
}

.wpforms-field-medium,
.wpforms-submit {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wpforms-submit {
  background-color: #ffb74d;
  color: #ffffff;
}

/* Wow contact section */
.wow-contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.page .entry-content .wow-contact-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wow-contact-section {
  flex: 1 1 500px;
  background: linear-gradient(135deg, #00aaff 0%, #2575fc 100%);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-in-out;
}


.wow-contact-info {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1.2s ease-in-out;
}

.wow-contact-info h3 {
  margin-bottom: 20px;
  color: #2575fc;
  font-size: 24px;
}

.wow-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wow-contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.wow-contact-info ul li img {
  margin-right: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.wow-contact-info ul li:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.wow-contact-info ul li a {
  color: #2575fc;
  text-decoration: none;
  font-weight: 600;
}

.wow-contact-info ul li a:hover {
  text-decoration: underline;
}

/* Divider */
.wow-divider {
  width: 2px;
  background: linear-gradient(to bottom, #6a11cb, #2575fc);
  margin: 0 20px;
}

/* Animazione */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media queries */
@media (max-width: 768px) {
  .wow-contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .wow-divider {
    display: none;
  }
}

.wow-team-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #00aaff, #2575fc);
  color: white;
  animation: fadeIn 1s ease-in-out;
}

.wow-team-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.wow-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.wow-team-member {
  background: white;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.wow-team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.job-title {
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
}

.wow-team-center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .wow-team-grid {
    flex-direction: column;
    align-items: center;
  }
}
.wow-team-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #00aaff, #2575fc);
  color: white;
}

.wow-team-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.wow-team-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.wow-team-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.wow-team-member {
  background: white;
  color: #333;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.wow-team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.job-title {
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 10px;
}

.description {
  font-size: 14px;
}

@media (max-width: 768px) {
  .wow-team-row {
    flex-direction: column;
    align-items: center;
  }
}
