/* Estilos generales y reset */
body {
  font-family: "Venacti", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #bbbbbb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Estilos específicos de la tarjeta */
.card {
  width: 400px;
  background-color: white;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}
.image-container {
  position: relative;
  width: 100%;
}

.background-image {
  display: block;
  width: 100%;
  z-index: 0;
}

.profile-pic {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  position: absolute;
  left: 30px;
  bottom: -10px;
  border: 3px solid white;
  z-index: 1;
}



.header {
  background-color: #e4e4e4;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  justify-content: space-evenly;
  padding: 15px 0px;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.name {
  color: #bc2226;
  font-size: 24px;
  font-weight: 700;
}

.description {
  color: #514949;
  font-size: 14px;
  width: 166px;
}

.separator {
  width: 80%;
  border: 1px #968c8c solid;
  transform: rotate(90deg);
  transform-origin: 0 0;
}

.contact-info {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 7px;
  align-self: stretch;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon {
  width: 13px;
  height: 13px;
  margin-right: 5px;
}

/* Aquí puedes agregar estilos específicos para cada icono (website-icon, email-icon, phone-icon) */

.social-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0px;
  width: 100%;
  align-items: center;
}

.icon {
  fill: #FFFFFF !important;
}


.social-btn {
  background-color: #bc2226;
  color: white;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  display: flex;
  width: 340px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Aquí puedes agregar estilos específicos para cada botón de redes sociales (schedule-btn, yelp-btn, etc.) */

.footer {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #514949;
}

.disclaimer{
    color: #514949;
    font-family: sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}