/* Final adjustments for Dr. Jefferson Moretti's website */

/* Title styling refinements */
.hero-title {
  margin-bottom: 1rem;
}

.title-highlight {
  font-weight: 700;
  color: #f5f5f5;
  font-size: 2.75rem;
  line-height: 1.2;
}

.title-main {
  font-weight: 700;
  color: #f5f5f5;
  font-size: 2.75rem;
  line-height: 1.2;
}

/* Hero badge refinement */
.hero-badge {
  background: rgba(193, 162, 111, 0.3);
  border: 2px solid var(--primary-color);
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.hero-badge span {
  color: var(--primary-color);
}

.hero-badge i {
  color: var(--primary-color);
}

/* Subtitle refinement */
.hero-subtitle {
  font-weight: 500;
  font-size: 1.25rem;
  color: #f5f5f5;
  margin-bottom: 0.75rem;
}

/* Specialty items refinement */
.hero-specialties {
  margin-bottom: 1.5rem;
}

.specialty-item {
  background: rgba(193, 162, 111, 0.25);
  font-weight: 600;
  color: var(--primary-color);
}

/* Hero actions refinement */
.hero-actions {
  display: flex;
  gap: 15px;
}

.email-link, .phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(193, 162, 111, 0.25);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.email-link:hover, .phone-link:hover {
  background: rgba(193, 162, 111, 0.3);
  transform: translateY(-2px);
}

/* Contact form button refinement */
.contact-form #submit-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #000000;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 30px;
}

/* Mobile refinements */
@media (max-width: 991px) {
  .title-highlight, .title-main {
    font-size: 2.25rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .title-highlight, .title-main {
    font-size: 2rem;
  }
  
  .hero-badge, .hero-subtitle, .hero-specialties {
    justify-content: center;
  }
  
  .specialty-item {
    margin: 0.25rem;
  }
}

@media (max-width: 480px) {
  .title-highlight, .title-main {
    font-size: 1.75rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}