/* Landing page "fiche professionnelle" (cartes d'affaires / codes QR) */

.professional-page {
  min-height: 100vh;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 40px;
  font-family: "Fira Sans", sans-serif;
  color: #333;
  box-sizing: border-box;
}

.professional-page * {
  box-sizing: border-box;
}

.professional-page .professional-brand {
  margin-bottom: 18px;
}

.professional-page .professional-brand img {
  width: 150px;
  height: auto;
}

.professional-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
}

.professional-card .professional-cover {
  height: 8px;
  background: #E47927;
}

.professional-card .professional-photo-wrap {
  margin: 20px auto 0;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f4f4f4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #e9e9e9;
}

.professional-card .professional-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.professional-card .professional-photo-wrap.no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  color: #676868;
}

.professional-card .professional-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #222;
  margin: 16px 20px 4px;
  text-transform: uppercase;
}

.professional-card .professional-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #E47927;
  margin: 0 20px 4px;
  line-height: 1.4;
}

.professional-card .professional-company {
  font-size: 13px;
  color: #999;
  margin: 0 20px 18px;
}

.professional-card .professional-contacts {
  margin: 0 24px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  text-align: left;
}

.professional-card .professional-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
  font-size: 15px;
  word-break: break-word;
}

.professional-card .professional-contact-row .icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E47927;
}

.professional-card .professional-contact-row .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.professional-card .professional-contact-row .label {
  font-size: 11px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  letter-spacing: 0.03em;
}

a.professional-contact-row:hover {
  color: #E47927;
}

.professional-card .professional-actions {
  padding: 4px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.professional-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

.professional-btn:hover{
  text-decoration: none;
}

.professional-btn:active {
  transform: scale(0.98);
}

.professional-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.professional-btn-primary {
  background: #E47927;
  color: #fff;
}

.professional-btn-primary:hover {
  background: #cc6a1f;
  color: #fff;
}

.professional-btn-secondary {
  background: #fff;
  color: #0077b5;
  border-color: #0077b5;
}

.professional-btn-secondary:hover {
  background: #0077b5;
  color: #fff;
}

.professional-page .professional-footer-link {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
  text-decoration: none;
}

.professional-page .professional-footer-link:hover {
  color: #E47927;
}

@media (max-width: 400px) {
  .professional-card .professional-name {
    font-size: 21px;
  }
}
